2018-10-19 19:45:24 -07: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
|
|
|
|
*/
|
|
|
|
|
2019-02-06 18:03:58 +01:00
|
|
|
import {$} from 'protractor';
|
2020-01-13 18:57:06 +01:00
|
|
|
import {runTreeBenchmark} from './test_utils';
|
2018-10-19 19:45:24 -07:00
|
|
|
|
2020-01-13 18:57:06 +01:00
|
|
|
describe('tree benchmark perf', () => {
|
2018-10-19 19:45:24 -07:00
|
|
|
it('should work for createOnly', done => {
|
|
|
|
runTreeBenchmark({
|
2019-02-06 18:03:58 +01:00
|
|
|
// This cannot be called "createOnly" because the actual destroy benchmark
|
|
|
|
// has the "createOnly" id already. See: https://github.com/angular/angular/pull/21503
|
|
|
|
id: 'createOnlyForReal',
|
2018-10-19 19:45:24 -07:00
|
|
|
prepare: () => $('#destroyDom').click(),
|
|
|
|
work: () => $('#createDom').click()
|
|
|
|
}).then(done, done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should work for destroy', done => {
|
|
|
|
runTreeBenchmark({
|
2019-02-06 18:03:58 +01:00
|
|
|
// This is actually a benchmark for destroying the dom, but it has been accidentally
|
|
|
|
// named "createOnly". See https://github.com/angular/angular/pull/21503.
|
2018-10-19 19:45:24 -07:00
|
|
|
id: 'createOnly',
|
|
|
|
prepare: () => $('#createDom').click(),
|
|
|
|
work: () => $('#destroyDom').click()
|
|
|
|
}).then(done, done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should work for createDestroy', done => {
|
|
|
|
runTreeBenchmark({
|
|
|
|
id: 'createDestroy',
|
|
|
|
work: () => {
|
|
|
|
$('#destroyDom').click();
|
|
|
|
$('#createDom').click();
|
|
|
|
}
|
|
|
|
}).then(done, done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should work for update', done => {
|
|
|
|
runTreeBenchmark({id: 'update', work: () => $('#createDom').click()}).then(done, done.fail);
|
|
|
|
});
|
|
|
|
});
|