
Runs the styling benchmarks that have been added with 2e0b237646863562e336f370372b4b7f9e52d818 in benchpress. The goal is that these benchmarks can be wired up in Latency Lab. PR Close #34664
75 lines
2.4 KiB
TypeScript
75 lines
2.4 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 {$, by, element} from 'protractor';
|
|
import {openBrowser, verifyNoBrowserErrors} from '../../../e2e_util/e2e_util';
|
|
import {runBenchmark} from '../../../e2e_util/perf_util';
|
|
|
|
/** List of possible scenarios that should be tested. */
|
|
const SCENARIOS = [
|
|
{optionIndex: 0, id: 'no_styling_involved'}, {optionIndex: 1, id: 'static_class'},
|
|
{optionIndex: 2, id: 'static_class_with_interpolation'}, {optionIndex: 3, id: 'class_binding'},
|
|
{optionIndex: 4, id: 'static_class_and_class_binding'},
|
|
{optionIndex: 5, id: 'static_class_and_ngclass_binding'},
|
|
{optionIndex: 6, id: 'static_class_and_ngstyle_binding_and_style_binding'}
|
|
];
|
|
|
|
describe('styling benchmark spec', () => {
|
|
afterEach(verifyNoBrowserErrors);
|
|
|
|
it('should render and interact to change detection', () => {
|
|
openBrowser({url: '/', ignoreBrowserSynchronization: true});
|
|
create();
|
|
const items = element.all(by.css('styling-bindings button'));
|
|
expect(items.count()).toBe(2000);
|
|
expect(items.first().getAttribute('title')).toBe('bar');
|
|
detectChanges();
|
|
expect(items.first().getAttribute('title')).toBe('baz');
|
|
});
|
|
|
|
// Create benchmarks for each possible test scenario.
|
|
SCENARIOS.forEach(({optionIndex, id}) => {
|
|
describe(id, () => {
|
|
it('should run detect_changes benchmark', done => {
|
|
runStylingBenchmark(`styling.${id}.detect_changes`, {
|
|
work: () => detectChanges(),
|
|
prepare: () => {
|
|
// Switch to the current scenario by clicking the corresponding option.
|
|
element.all(by.tagName('option')).get(optionIndex).click();
|
|
// Create the elements with styling.
|
|
create();
|
|
},
|
|
}).then(done, done.fail);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
function create() {
|
|
$('#create').click();
|
|
}
|
|
|
|
function detectChanges() {
|
|
$('#detectChanges').click();
|
|
}
|
|
|
|
/**
|
|
* Runs the styling benchmark with the given id and worker. The worker describes
|
|
* the actions that should run for preparation and measurement.
|
|
*/
|
|
function runStylingBenchmark(id: string, worker: {prepare: () => void, work: () => void}) {
|
|
return runBenchmark({
|
|
id,
|
|
url: '/',
|
|
params: [],
|
|
ignoreBrowserSynchronization: true,
|
|
prepare: worker.prepare,
|
|
work: worker.work
|
|
});
|
|
}
|