2015-03-02 17:01:02 -05:00
|
|
|
var perfUtil = require('angular2/src/test_lib/perf_util');
|
2014-12-22 20:50:10 -05:00
|
|
|
|
|
|
|
describe('ng2 di benchmark', function () {
|
|
|
|
|
2015-02-02 19:25:34 -05:00
|
|
|
var URL = 'benchmarks/src/di/di_benchmark.html';
|
2014-12-22 20:50:10 -05:00
|
|
|
|
2015-01-09 21:00:04 -05:00
|
|
|
afterEach(perfUtil.verifyNoBrowserErrors);
|
2014-12-22 20:50:10 -05:00
|
|
|
|
2015-02-11 13:13:49 -05:00
|
|
|
it('should log the stats for getByToken', function(done) {
|
2015-01-09 21:00:04 -05:00
|
|
|
perfUtil.runClickBenchmark({
|
|
|
|
url: URL,
|
2014-12-22 20:50:10 -05:00
|
|
|
buttons: ['#getByToken'],
|
2015-01-09 21:00:04 -05:00
|
|
|
id: 'ng2.di.getByToken',
|
|
|
|
params: [{
|
2015-01-15 18:14:54 -05:00
|
|
|
name: 'iterations', value: 20000, scale: 'linear'
|
2015-03-03 14:31:35 -05:00
|
|
|
}],
|
|
|
|
microIterations: 20000
|
2015-02-11 13:13:49 -05:00
|
|
|
}).then(done, done.fail);
|
2014-12-22 20:50:10 -05:00
|
|
|
});
|
|
|
|
|
2015-02-11 13:13:49 -05:00
|
|
|
it('should log the stats for getByKey', function(done) {
|
2015-01-09 21:00:04 -05:00
|
|
|
perfUtil.runClickBenchmark({
|
|
|
|
url: URL,
|
2014-12-22 20:50:10 -05:00
|
|
|
buttons: ['#getByKey'],
|
2015-01-09 21:00:04 -05:00
|
|
|
id: 'ng2.di.getByKey',
|
2015-03-03 14:31:35 -05:00
|
|
|
microIterations: 20000
|
2015-02-11 13:13:49 -05:00
|
|
|
}).then(done, done.fail);
|
2014-12-22 20:50:10 -05:00
|
|
|
});
|
|
|
|
|
2015-02-11 13:13:49 -05:00
|
|
|
it('should log the stats for getChild', function(done) {
|
2015-01-09 21:00:04 -05:00
|
|
|
perfUtil.runClickBenchmark({
|
|
|
|
url: URL,
|
2014-12-22 20:50:10 -05:00
|
|
|
buttons: ['#getChild'],
|
2015-01-09 21:00:04 -05:00
|
|
|
id: 'ng2.di.getChild',
|
2015-03-03 14:31:35 -05:00
|
|
|
microIterations: 20000
|
2015-02-11 13:13:49 -05:00
|
|
|
}).then(done, done.fail);
|
2014-12-22 20:50:10 -05:00
|
|
|
});
|
|
|
|
|
2015-02-11 13:13:49 -05:00
|
|
|
it('should log the stats for instantiate', function(done) {
|
2015-01-09 21:00:04 -05:00
|
|
|
perfUtil.runClickBenchmark({
|
|
|
|
url: URL,
|
2014-12-22 20:50:10 -05:00
|
|
|
buttons: ['#instantiate'],
|
2015-01-09 21:00:04 -05:00
|
|
|
id: 'ng2.di.instantiate',
|
2015-03-03 14:31:35 -05:00
|
|
|
microIterations: 10000
|
2015-02-11 13:13:49 -05:00
|
|
|
}).then(done, done.fail);
|
2014-12-22 20:50:10 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|