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';
|
2020-01-16 08:34:03 -05:00
|
|
|
import {openBrowser} from './e2e_util';
|
2016-08-30 12:29:39 -04:00
|
|
|
|
2020-01-16 08:34:03 -05:00
|
|
|
// Note: Keep the `modules/benchmarks/README.md` file in sync with the supported options.
|
|
|
|
const globalOptions = {
|
|
|
|
sampleSize: process.env.PERF_SAMPLE_SIZE || 20,
|
|
|
|
forceGc: process.env.PERF_FORCE_GC === 'true',
|
|
|
|
dryRun: process.env.PERF_DRYRUN === 'true',
|
|
|
|
};
|
2015-05-30 11:17:27 -04:00
|
|
|
|
2020-01-16 08:34:03 -05:00
|
|
|
const 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();
|
|
|
|
}
|
2020-01-16 08:34:03 -05:00
|
|
|
const description: {[key: string]: any} = {};
|
|
|
|
config.params.forEach((param) => description[param.name] = param.value);
|
2016-08-30 12:29:39 -04:00
|
|
|
return runner.sample({
|
|
|
|
id: config.id,
|
|
|
|
execute: config.work,
|
|
|
|
prepare: config.prepare,
|
|
|
|
microMetrics: config.microMetrics,
|
2020-01-16 08:34:03 -05:00
|
|
|
providers: [{provide: Options.SAMPLE_DESCRIPTION, useValue: {}}]
|
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,
|
2020-01-16 08:34:03 -05:00
|
|
|
{provide: Options.FORCE_GC, useValue: globalOptions.forceGc},
|
2016-08-30 12:29:39 -04:00
|
|
|
{provide: Options.DEFAULT_DESCRIPTION, useValue: {'runId': runId}}, JsonFileReporter.PROVIDERS,
|
|
|
|
{provide: JsonFileReporter.PATH, useValue: resultsFolder}
|
|
|
|
];
|
2020-01-16 08:34:03 -05:00
|
|
|
if (!globalOptions.dryRun) {
|
2016-08-30 12:29:39 -04:00
|
|
|
providers.push({provide: Validator, useExisting: RegressionSlopeValidator});
|
|
|
|
providers.push(
|
2020-01-16 08:34:03 -05:00
|
|
|
{provide: RegressionSlopeValidator.SAMPLE_SIZE, useValue: globalOptions.sampleSize});
|
2016-08-30 12:29:39 -04:00
|
|
|
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
|
|
|
}
|