2016-06-23 12:47:54 -04:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
2015-06-01 20:33:51 -04:00
|
|
|
export {verifyNoBrowserErrors} from './e2e_util';
|
2015-05-30 11:17:27 -04:00
|
|
|
|
2016-08-30 12:29:39 -04:00
|
|
|
const nodeUuid = require('node-uuid');
|
|
|
|
import * as fs from 'fs-extra';
|
2015-05-30 11:17:27 -04:00
|
|
|
|
perf: switch angular to use StaticInjector instead of ReflectiveInjector
This change allows ReflectiveInjector to be tree shaken resulting
in not needed Reflect polyfil and smaller bundles.
Code savings for HelloWorld using Closure:
Reflective: bundle.js: 105,864(34,190 gzip)
Static: bundle.js: 154,889(33,555 gzip)
645( 2%)
BREAKING CHANGE:
`platformXXXX()` no longer accepts providers which depend on reflection.
Specifically the method signature when from `Provider[]` to
`StaticProvider[]`.
Example:
Before:
```
[
MyClass,
{provide: ClassA, useClass: SubClassA}
]
```
After:
```
[
{provide: MyClass, deps: [Dep1,...]},
{provide: ClassA, useClass: SubClassA, deps: [Dep1,...]}
]
```
NOTE: This only applies to platform creation and providers for the JIT
compiler. It does not apply to `@Compotent` or `@NgModule` provides
declarations.
Benchpress note: Previously Benchpress also supported reflective
provides, which now require static providers.
DEPRECATION:
- `ReflectiveInjector` is now deprecated as it will be remove. Use
`Injector.create` as a replacement.
closes #18496
2017-08-03 15:33:29 -04:00
|
|
|
import {SeleniumWebDriverAdapter, Options, JsonFileReporter, Validator, RegressionSlopeValidator, ConsoleReporter, SizeValidator, MultiReporter, MultiMetric, Runner, StaticProvider} from '@angular/benchpress';
|
2016-08-30 12:29:39 -04:00
|
|
|
import {readCommandLine as readE2eCommandLine, openBrowser} from './e2e_util';
|
|
|
|
|
|
|
|
let cmdArgs: {'sample-size': number, 'force-gc': boolean, 'dryrun': boolean, 'bundles': boolean};
|
|
|
|
let runner: Runner;
|
2015-05-30 11:17:27 -04:00
|
|
|
|
2016-08-30 12:29:39 -04:00
|
|
|
export function readCommandLine() {
|
|
|
|
cmdArgs = <any>readE2eCommandLine({
|
|
|
|
'sample-size': {describe: 'Used for perf: sample size.', default: 20},
|
|
|
|
'force-gc': {describe: 'Used for perf: force gc.', default: false, type: 'boolean'},
|
|
|
|
'dryrun': {describe: 'If true, only run performance benchmarks once.', default: false},
|
|
|
|
'bundles': {describe: 'Whether to use the angular bundles or not.', default: false}
|
2016-06-08 19:38:52 -04:00
|
|
|
});
|
2016-08-30 12:29:39 -04:00
|
|
|
runner = createBenchpressRunner();
|
2015-05-30 11:17:27 -04:00
|
|
|
}
|
|
|
|
|
2016-08-30 12:29:39 -04:00
|
|
|
export function runBenchmark(config: {
|
|
|
|
id: string,
|
|
|
|
url: string,
|
|
|
|
params: {name: string, value: any}[],
|
|
|
|
ignoreBrowserSynchronization?: boolean,
|
|
|
|
microMetrics?: {[key: string]: string},
|
|
|
|
work?: () => void,
|
|
|
|
prepare?: () => void,
|
2016-12-28 18:26:49 -05:00
|
|
|
setup?: () => void
|
2016-08-30 12:29:39 -04:00
|
|
|
}): Promise<any> {
|
|
|
|
openBrowser(config);
|
2016-12-28 18:26:49 -05:00
|
|
|
if (config.setup) {
|
|
|
|
config.setup();
|
|
|
|
}
|
2016-11-12 08:08:58 -05:00
|
|
|
const description: {[key: string]: any} = {'bundles': cmdArgs.bundles};
|
2016-08-30 12:29:39 -04:00
|
|
|
config.params.forEach((param) => { description[param.name] = param.value; });
|
|
|
|
return runner.sample({
|
|
|
|
id: config.id,
|
|
|
|
execute: config.work,
|
|
|
|
prepare: config.prepare,
|
|
|
|
microMetrics: config.microMetrics,
|
|
|
|
providers: [{provide: Options.SAMPLE_DESCRIPTION, useValue: description}]
|
2016-06-08 19:38:52 -04:00
|
|
|
});
|
2015-05-30 11:17:27 -04:00
|
|
|
}
|
|
|
|
|
2016-08-30 12:29:39 -04:00
|
|
|
function createBenchpressRunner(): Runner {
|
|
|
|
let runId = nodeUuid.v1();
|
|
|
|
if (process.env.GIT_SHA) {
|
|
|
|
runId = process.env.GIT_SHA + ' ' + runId;
|
|
|
|
}
|
|
|
|
const resultsFolder = './dist/benchmark_results';
|
|
|
|
fs.ensureDirSync(resultsFolder);
|
perf: switch angular to use StaticInjector instead of ReflectiveInjector
This change allows ReflectiveInjector to be tree shaken resulting
in not needed Reflect polyfil and smaller bundles.
Code savings for HelloWorld using Closure:
Reflective: bundle.js: 105,864(34,190 gzip)
Static: bundle.js: 154,889(33,555 gzip)
645( 2%)
BREAKING CHANGE:
`platformXXXX()` no longer accepts providers which depend on reflection.
Specifically the method signature when from `Provider[]` to
`StaticProvider[]`.
Example:
Before:
```
[
MyClass,
{provide: ClassA, useClass: SubClassA}
]
```
After:
```
[
{provide: MyClass, deps: [Dep1,...]},
{provide: ClassA, useClass: SubClassA, deps: [Dep1,...]}
]
```
NOTE: This only applies to platform creation and providers for the JIT
compiler. It does not apply to `@Compotent` or `@NgModule` provides
declarations.
Benchpress note: Previously Benchpress also supported reflective
provides, which now require static providers.
DEPRECATION:
- `ReflectiveInjector` is now deprecated as it will be remove. Use
`Injector.create` as a replacement.
closes #18496
2017-08-03 15:33:29 -04:00
|
|
|
const providers: StaticProvider[] = [
|
2016-08-30 12:29:39 -04:00
|
|
|
SeleniumWebDriverAdapter.PROTRACTOR_PROVIDERS,
|
|
|
|
{provide: Options.FORCE_GC, useValue: cmdArgs['force-gc']},
|
|
|
|
{provide: Options.DEFAULT_DESCRIPTION, useValue: {'runId': runId}}, JsonFileReporter.PROVIDERS,
|
|
|
|
{provide: JsonFileReporter.PATH, useValue: resultsFolder}
|
|
|
|
];
|
|
|
|
if (!cmdArgs['dryrun']) {
|
|
|
|
providers.push({provide: Validator, useExisting: RegressionSlopeValidator});
|
|
|
|
providers.push(
|
|
|
|
{provide: RegressionSlopeValidator.SAMPLE_SIZE, useValue: cmdArgs['sample-size']});
|
|
|
|
providers.push(MultiReporter.provideWith([ConsoleReporter, JsonFileReporter]));
|
2015-05-30 11:17:27 -04:00
|
|
|
} else {
|
2016-08-30 12:29:39 -04:00
|
|
|
providers.push({provide: Validator, useExisting: SizeValidator});
|
|
|
|
providers.push({provide: SizeValidator.SAMPLE_SIZE, useValue: 1});
|
|
|
|
providers.push(MultiReporter.provideWith([]));
|
|
|
|
providers.push(MultiMetric.provideWith([]));
|
2015-05-30 11:17:27 -04:00
|
|
|
}
|
2016-08-30 12:29:39 -04:00
|
|
|
return new Runner(providers);
|
2015-05-30 11:17:27 -04:00
|
|
|
}
|