272 lines
		
	
	
		
			9.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			272 lines
		
	
	
		
			9.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /**
 | |
|  * @license
 | |
|  * Copyright Google Inc. All Rights Reserved.
 | |
|  *
 | |
|  * Use of this source code is governed by an MIT-style license that can be
 | |
|  * found in the LICENSE file at https://angular.io/license
 | |
|  */
 | |
| 
 | |
| import {AsyncTestCompleter, describe, expect, inject, it} from '@angular/core/testing/testing_internal';
 | |
| 
 | |
| import {MeasureValues, Metric, Options, ReflectiveInjector, Reporter, Sampler, Validator, WebDriverAdapter} from '../index';
 | |
| import {isBlank, isPresent} from '../src/facade/lang';
 | |
| 
 | |
| export function main() {
 | |
|   var EMPTY_EXECUTE = () => {};
 | |
| 
 | |
|   describe('sampler', () => {
 | |
|     var sampler: Sampler;
 | |
| 
 | |
|     function createSampler({driver, metric, reporter, validator, prepare, execute}: {
 | |
|       driver?: any,
 | |
|       metric?: Metric,
 | |
|       reporter?: Reporter,
 | |
|       validator?: Validator,
 | |
|       prepare?: any,
 | |
|       execute?: any
 | |
|     } = {}) {
 | |
|       var time = 1000;
 | |
|       if (!metric) {
 | |
|         metric = new MockMetric([]);
 | |
|       }
 | |
|       if (!reporter) {
 | |
|         reporter = new MockReporter([]);
 | |
|       }
 | |
|       if (isBlank(driver)) {
 | |
|         driver = new MockDriverAdapter([]);
 | |
|       }
 | |
|       var providers = [
 | |
|         Options.DEFAULT_PROVIDERS, Sampler.PROVIDERS, {provide: Metric, useValue: metric},
 | |
|         {provide: Reporter, useValue: reporter}, {provide: WebDriverAdapter, useValue: driver},
 | |
|         {provide: Options.EXECUTE, useValue: execute}, {provide: Validator, useValue: validator},
 | |
|         {provide: Options.NOW, useValue: () => new Date(time++)}
 | |
|       ];
 | |
|       if (isPresent(prepare)) {
 | |
|         providers.push({provide: Options.PREPARE, useValue: prepare});
 | |
|       }
 | |
| 
 | |
|       sampler = ReflectiveInjector.resolveAndCreate(providers).get(Sampler);
 | |
|     }
 | |
| 
 | |
|     it('should call the prepare and execute callbacks using WebDriverAdapter.waitFor',
 | |
|        inject([AsyncTestCompleter], (async: AsyncTestCompleter) => {
 | |
|          var log: any[] = [];
 | |
|          var count = 0;
 | |
|          var driver = new MockDriverAdapter([], (callback: Function) => {
 | |
|            var result = callback();
 | |
|            log.push(result);
 | |
|            return Promise.resolve(result);
 | |
|          });
 | |
|          createSampler({
 | |
|            driver: driver,
 | |
|            validator: createCountingValidator(2),
 | |
|            prepare: () => count++,
 | |
|            execute: () => count++,
 | |
|          });
 | |
|          sampler.sample().then((_) => {
 | |
|            expect(count).toBe(4);
 | |
|            expect(log).toEqual([0, 1, 2, 3]);
 | |
|            async.done();
 | |
|          });
 | |
| 
 | |
|        }));
 | |
| 
 | |
|     it('should call prepare, beginMeasure, execute, endMeasure for every iteration',
 | |
|        inject([AsyncTestCompleter], (async: AsyncTestCompleter) => {
 | |
|          var workCount = 0;
 | |
|          var log: any[] = [];
 | |
|          createSampler({
 | |
|            metric: createCountingMetric(log),
 | |
|            validator: createCountingValidator(2),
 | |
|            prepare: () => { log.push(`p${workCount++}`); },
 | |
|            execute: () => { log.push(`w${workCount++}`); }
 | |
|          });
 | |
|          sampler.sample().then((_) => {
 | |
|            expect(log).toEqual([
 | |
|              'p0',
 | |
|              ['beginMeasure'],
 | |
|              'w1',
 | |
|              ['endMeasure', false, {'script': 0}],
 | |
|              'p2',
 | |
|              ['beginMeasure'],
 | |
|              'w3',
 | |
|              ['endMeasure', false, {'script': 1}],
 | |
|            ]);
 | |
|            async.done();
 | |
|          });
 | |
|        }));
 | |
| 
 | |
|     it('should call execute, endMeasure for every iteration if there is no prepare callback',
 | |
|        inject([AsyncTestCompleter], (async: AsyncTestCompleter) => {
 | |
|          var log: any[] = [];
 | |
|          var workCount = 0;
 | |
|          createSampler({
 | |
|            metric: createCountingMetric(log),
 | |
|            validator: createCountingValidator(2),
 | |
|            execute: () => { log.push(`w${workCount++}`); },
 | |
|            prepare: null
 | |
|          });
 | |
|          sampler.sample().then((_) => {
 | |
|            expect(log).toEqual([
 | |
|              ['beginMeasure'],
 | |
|              'w0',
 | |
|              ['endMeasure', true, {'script': 0}],
 | |
|              'w1',
 | |
|              ['endMeasure', true, {'script': 1}],
 | |
|            ]);
 | |
|            async.done();
 | |
|          });
 | |
|        }));
 | |
| 
 | |
|     it('should only collect metrics for execute and ignore metrics from prepare',
 | |
|        inject([AsyncTestCompleter], (async: AsyncTestCompleter) => {
 | |
|          var scriptTime = 0;
 | |
|          var iterationCount = 1;
 | |
|          createSampler({
 | |
|            validator: createCountingValidator(2),
 | |
|            metric: new MockMetric(
 | |
|                [],
 | |
|                () => {
 | |
|                  var result = Promise.resolve({'script': scriptTime});
 | |
|                  scriptTime = 0;
 | |
|                  return result;
 | |
|                }),
 | |
|            prepare: () => { scriptTime = 1 * iterationCount; },
 | |
|            execute: () => {
 | |
|              scriptTime = 10 * iterationCount;
 | |
|              iterationCount++;
 | |
|            }
 | |
|          });
 | |
|          sampler.sample().then((state) => {
 | |
|            expect(state.completeSample.length).toBe(2);
 | |
|            expect(state.completeSample[0]).toEqual(mv(0, 1000, {'script': 10}));
 | |
|            expect(state.completeSample[1]).toEqual(mv(1, 1001, {'script': 20}));
 | |
|            async.done();
 | |
|          });
 | |
|        }));
 | |
| 
 | |
|     it('should call the validator for every execution and store the valid sample',
 | |
|        inject([AsyncTestCompleter], (async: AsyncTestCompleter) => {
 | |
|          var log: any[] = [];
 | |
|          var validSample = [mv(null, null, {})];
 | |
| 
 | |
|          createSampler({
 | |
|            metric: createCountingMetric(),
 | |
|            validator: createCountingValidator(2, validSample, log),
 | |
|            execute: EMPTY_EXECUTE
 | |
|          });
 | |
|          sampler.sample().then((state) => {
 | |
|            expect(state.validSample).toBe(validSample);
 | |
|            // TODO(tbosch): Why does this fail??
 | |
|            // expect(log).toEqual([
 | |
|            //   ['validate', [{'script': 0}], null],
 | |
|            //   ['validate', [{'script': 0}, {'script': 1}], validSample]
 | |
|            // ]);
 | |
| 
 | |
|            expect(log.length).toBe(2);
 | |
|            expect(log[0]).toEqual(['validate', [mv(0, 1000, {'script': 0})], null]);
 | |
|            expect(log[1]).toEqual(
 | |
|                ['validate', [mv(0, 1000, {'script': 0}), mv(1, 1001, {'script': 1})], validSample]);
 | |
| 
 | |
|            async.done();
 | |
|          });
 | |
|        }));
 | |
| 
 | |
|     it('should report the metric values',
 | |
|        inject([AsyncTestCompleter], (async: AsyncTestCompleter) => {
 | |
|          var log: any[] = [];
 | |
|          var validSample = [mv(null, null, {})];
 | |
|          createSampler({
 | |
|            validator: createCountingValidator(2, validSample),
 | |
|            metric: createCountingMetric(),
 | |
|            reporter: new MockReporter(log),
 | |
|            execute: EMPTY_EXECUTE
 | |
|          });
 | |
|          sampler.sample().then((_) => {
 | |
|            // TODO(tbosch): Why does this fail??
 | |
|            // expect(log).toEqual([
 | |
|            //   ['reportMeasureValues', 0, {'script': 0}],
 | |
|            //   ['reportMeasureValues', 1, {'script': 1}],
 | |
|            //   ['reportSample', [{'script': 0}, {'script': 1}], validSample]
 | |
|            // ]);
 | |
|            expect(log.length).toBe(3);
 | |
|            expect(log[0]).toEqual(['reportMeasureValues', mv(0, 1000, {'script': 0})]);
 | |
|            expect(log[1]).toEqual(['reportMeasureValues', mv(1, 1001, {'script': 1})]);
 | |
|            expect(log[2]).toEqual([
 | |
|              'reportSample', [mv(0, 1000, {'script': 0}), mv(1, 1001, {'script': 1})], validSample
 | |
|            ]);
 | |
| 
 | |
|            async.done();
 | |
|          });
 | |
|        }));
 | |
| 
 | |
|   });
 | |
| }
 | |
| 
 | |
| function mv(runIndex: number, time: number, values: {[key: string]: number}) {
 | |
|   return new MeasureValues(runIndex, new Date(time), values);
 | |
| }
 | |
| 
 | |
| function createCountingValidator(
 | |
|     count: number, validSample: MeasureValues[] = null, log: any[] = []) {
 | |
|   return new MockValidator(log, (completeSample: MeasureValues[]) => {
 | |
|     count--;
 | |
|     if (count === 0) {
 | |
|       return validSample || completeSample;
 | |
|     } else {
 | |
|       return null;
 | |
|     }
 | |
|   });
 | |
| }
 | |
| 
 | |
| function createCountingMetric(log: any[] = []) {
 | |
|   var scriptTime = 0;
 | |
|   return new MockMetric(log, () => ({'script': scriptTime++}));
 | |
| }
 | |
| 
 | |
| class MockDriverAdapter extends WebDriverAdapter {
 | |
|   constructor(private _log: any[] = [], private _waitFor: Function = null) { super(); }
 | |
|   waitFor(callback: Function): Promise<any> {
 | |
|     if (isPresent(this._waitFor)) {
 | |
|       return this._waitFor(callback);
 | |
|     } else {
 | |
|       return Promise.resolve(callback());
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 | |
| 
 | |
| class MockValidator extends Validator {
 | |
|   constructor(private _log: any[] = [], private _validate: Function = null) { super(); }
 | |
|   validate(completeSample: MeasureValues[]): MeasureValues[] {
 | |
|     var stableSample = isPresent(this._validate) ? this._validate(completeSample) : completeSample;
 | |
|     this._log.push(['validate', completeSample, stableSample]);
 | |
|     return stableSample;
 | |
|   }
 | |
| }
 | |
| 
 | |
| class MockMetric extends Metric {
 | |
|   constructor(private _log: any[] = [], private _endMeasure: Function = null) { super(); }
 | |
|   beginMeasure() {
 | |
|     this._log.push(['beginMeasure']);
 | |
|     return Promise.resolve(null);
 | |
|   }
 | |
|   endMeasure(restart: boolean) {
 | |
|     var measureValues = isPresent(this._endMeasure) ? this._endMeasure() : {};
 | |
|     this._log.push(['endMeasure', restart, measureValues]);
 | |
|     return Promise.resolve(measureValues);
 | |
|   }
 | |
| }
 | |
| 
 | |
| class MockReporter extends Reporter {
 | |
|   constructor(private _log: any[] = []) { super(); }
 | |
|   reportMeasureValues(values: MeasureValues): Promise<any> {
 | |
|     this._log.push(['reportMeasureValues', values]);
 | |
|     return Promise.resolve(null);
 | |
|   }
 | |
|   reportSample(completeSample: MeasureValues[], validSample: MeasureValues[]): Promise<any> {
 | |
|     this._log.push(['reportSample', completeSample, validSample]);
 | |
|     return Promise.resolve(null);
 | |
|   }
 | |
| }
 |