@ -1,5 +1,5 @@
|
||||
import {bind, Binding, Injector, OpaqueToken} from 'angular2/src/core/di';
|
||||
import {ListWrapper, StringMapWrapper} from 'angular2/src/core/facade/collection';
|
||||
import {StringMapWrapper} from 'angular2/src/core/facade/collection';
|
||||
import {Promise, PromiseWrapper} from 'angular2/src/core/facade/async';
|
||||
|
||||
import {Metric} from '../metric';
|
||||
@ -42,11 +42,10 @@ export class MultiMetric extends Metric {
|
||||
}
|
||||
}
|
||||
|
||||
function mergeStringMaps(maps): Object {
|
||||
function mergeStringMaps(maps: any[]): Object {
|
||||
var result = {};
|
||||
ListWrapper.forEach(maps, (map) => {
|
||||
StringMapWrapper.forEach(map, (value, prop) => { result[prop] = value; });
|
||||
});
|
||||
maps.forEach(
|
||||
map => { StringMapWrapper.forEach(map, (value, prop) => { result[prop] = value; }); });
|
||||
return result;
|
||||
}
|
||||
|
||||
|
@ -142,9 +142,9 @@ export class PerflogMetric extends Metric {
|
||||
});
|
||||
}
|
||||
|
||||
_addEvents(events) {
|
||||
_addEvents(events: any[]) {
|
||||
var needSort = false;
|
||||
ListWrapper.forEach(events, (event) => {
|
||||
events.forEach(event => {
|
||||
if (StringWrapper.equals(event['ph'], 'X')) {
|
||||
needSort = true;
|
||||
var startEvent = {};
|
||||
|
@ -1,4 +1,4 @@
|
||||
import {StringMapWrapper, ListWrapper} from 'angular2/src/core/facade/collection';
|
||||
import {StringMapWrapper} from 'angular2/src/core/facade/collection';
|
||||
import {bind, Binding, OpaqueToken} from 'angular2/src/core/di';
|
||||
import {Validator} from './validator';
|
||||
import {Metric} from './metric';
|
||||
@ -15,7 +15,7 @@ export class SampleDescription {
|
||||
constructor(public id: string, descriptions: Array<{[key: string]: any}>,
|
||||
public metrics: {[key: string]: any}) {
|
||||
this.description = {};
|
||||
ListWrapper.forEach(descriptions, (description) => {
|
||||
descriptions.forEach(description => {
|
||||
StringMapWrapper.forEach(description, (value, prop) => this.description[prop] = value);
|
||||
});
|
||||
}
|
||||
|
@ -1,21 +1,22 @@
|
||||
import {Math} from 'angular2/src/core/facade/math';
|
||||
import {ListWrapper} from 'angular2/src/core/facade/collection';
|
||||
|
||||
export class Statistic {
|
||||
static calculateCoefficientOfVariation(sample, mean) {
|
||||
return Statistic.calculateStandardDeviation(sample, mean) / mean * 100;
|
||||
}
|
||||
|
||||
static calculateMean(sample) {
|
||||
static calculateMean(samples: any[]) {
|
||||
var total = 0;
|
||||
ListWrapper.forEach(sample, (x) => {total += x});
|
||||
return total / sample.length;
|
||||
// TODO: use reduce
|
||||
samples.forEach(x => total += x);
|
||||
return total / samples.length;
|
||||
}
|
||||
|
||||
static calculateStandardDeviation(sample, mean) {
|
||||
static calculateStandardDeviation(samples: any[], mean) {
|
||||
var deviation = 0;
|
||||
ListWrapper.forEach(sample, (x) => { deviation += Math.pow(x - mean, 2); });
|
||||
deviation = deviation / (sample.length);
|
||||
// TODO: use reduce
|
||||
samples.forEach(x => deviation += Math.pow(x - mean, 2));
|
||||
deviation = deviation / (samples.length);
|
||||
deviation = Math.sqrt(deviation);
|
||||
return deviation;
|
||||
}
|
||||
|
@ -3,7 +3,6 @@ import {bind, Binding, Injector, OpaqueToken} from 'angular2/src/core/di';
|
||||
import {isBlank, isPresent} from 'angular2/src/core/facade/lang';
|
||||
import {BaseException, WrappedException} from 'angular2/src/core/facade/exceptions';
|
||||
import {Promise, PromiseWrapper} from 'angular2/src/core/facade/async';
|
||||
import {ListWrapper} from 'angular2/src/core/facade/collection';
|
||||
|
||||
import {Options} from './common_options';
|
||||
|
||||
@ -20,9 +19,9 @@ export abstract class WebDriverExtension {
|
||||
[Injector]),
|
||||
bind(WebDriverExtension)
|
||||
.toFactory(
|
||||
(children, capabilities) => {
|
||||
(children: WebDriverExtension[], capabilities) => {
|
||||
var delegate;
|
||||
ListWrapper.forEach(children, (extension) => {
|
||||
children.forEach(extension => {
|
||||
if (extension.supports(capabilities)) {
|
||||
delegate = extension;
|
||||
}
|
||||
|
@ -71,7 +71,7 @@ export class ChromeDriverExtension extends WebDriverExtension {
|
||||
.then((_) => this._driver.logs('performance'))
|
||||
.then((entries) => {
|
||||
var events = [];
|
||||
ListWrapper.forEach(entries, function(entry) {
|
||||
entries.forEach(entry => {
|
||||
var message = Json.parse(entry['message'])['message'];
|
||||
if (StringWrapper.equals(message['method'], 'Tracing.dataCollected')) {
|
||||
events.push(message['params']);
|
||||
|
@ -1,5 +1,4 @@
|
||||
import {bind, Binding} from 'angular2/src/core/di';
|
||||
import {ListWrapper} from 'angular2/src/core/facade/collection';
|
||||
import {
|
||||
Json,
|
||||
isPresent,
|
||||
@ -41,7 +40,7 @@ export class IOsDriverExtension extends WebDriverExtension {
|
||||
.then((_) => this._driver.logs('performance'))
|
||||
.then((entries) => {
|
||||
var records = [];
|
||||
ListWrapper.forEach(entries, function(entry) {
|
||||
entries.forEach(entry => {
|
||||
var message = Json.parse(entry['message'])['message'];
|
||||
if (StringWrapper.equals(message['method'], 'Timeline.eventRecorded')) {
|
||||
records.push(message['params']['record']);
|
||||
|
@ -11,7 +11,7 @@ import {
|
||||
xit,
|
||||
} from 'angular2/test_lib';
|
||||
|
||||
import {ListWrapper, StringMapWrapper} from 'angular2/src/core/facade/collection';
|
||||
import {StringMapWrapper} from 'angular2/src/core/facade/collection';
|
||||
import {PromiseWrapper, Promise} from 'angular2/src/core/facade/async';
|
||||
import {isPresent, isBlank} from 'angular2/src/core/facade/lang';
|
||||
|
||||
@ -325,7 +325,7 @@ export function main() {
|
||||
describe('aggregation', () => {
|
||||
|
||||
function aggregate(events: any[], microMetrics = null, captureFrames = null) {
|
||||
ListWrapper.insert(events, 0, eventFactory.markStart('benchpress0', 0));
|
||||
events.unshift(eventFactory.markStart('benchpress0', 0));
|
||||
events.push(eventFactory.markEnd('benchpress0', 10));
|
||||
var metric = createMetric([events], microMetrics, null, null, captureFrames);
|
||||
return metric.beginMeasure().then((_) => metric.endMeasure(false));
|
||||
@ -662,7 +662,7 @@ class MockDriverExtension extends WebDriverExtension {
|
||||
this._commandLog.push('readPerfLog');
|
||||
if (this._perfLogs.length > 0) {
|
||||
var next = this._perfLogs[0];
|
||||
ListWrapper.removeAt(this._perfLogs, 0);
|
||||
this._perfLogs.shift();
|
||||
return PromiseWrapper.resolve(next);
|
||||
} else {
|
||||
return PromiseWrapper.resolve([]);
|
||||
|
Reference in New Issue
Block a user