2015-02-11 13:13:49 -05:00
|
|
|
import {describe, ddescribe, it, iit, xit, expect, beforeEach, afterEach} from 'angular2/test_lib';
|
|
|
|
|
2015-02-17 17:30:24 -05:00
|
|
|
import { isBlank, isPresent, Date, DateWrapper } from 'angular2/src/facade/lang';
|
2015-02-11 13:13:49 -05:00
|
|
|
import { List, ListWrapper } from 'angular2/src/facade/collection';
|
|
|
|
|
|
|
|
import {
|
|
|
|
SampleState, Reporter, bind, Injector,
|
2015-02-17 17:30:24 -05:00
|
|
|
ConsoleReporter, SampleDescription, MeasureValues
|
2015-03-02 12:23:09 -05:00
|
|
|
} from 'benchpress/common';
|
2015-02-11 13:13:49 -05:00
|
|
|
|
|
|
|
export function main() {
|
|
|
|
describe('console reporter', () => {
|
|
|
|
var reporter;
|
|
|
|
var log;
|
|
|
|
|
|
|
|
function createReporter({columnWidth, sampleId, descriptions, metrics}) {
|
|
|
|
log = [];
|
|
|
|
if (isBlank(descriptions)) {
|
|
|
|
descriptions = [];
|
|
|
|
}
|
|
|
|
if (isBlank(sampleId)) {
|
|
|
|
sampleId = 'null';
|
|
|
|
}
|
|
|
|
var bindings = [
|
|
|
|
ConsoleReporter.BINDINGS,
|
|
|
|
bind(SampleDescription).toValue(new SampleDescription(sampleId, descriptions, metrics)),
|
|
|
|
bind(ConsoleReporter.PRINT).toValue((line) => ListWrapper.push(log, line))
|
|
|
|
];
|
|
|
|
if (isPresent(columnWidth)) {
|
|
|
|
ListWrapper.push(bindings, bind(ConsoleReporter.COLUMN_WIDTH).toValue(columnWidth));
|
|
|
|
}
|
2015-02-20 16:32:54 -05:00
|
|
|
reporter = new Injector(bindings).get(ConsoleReporter);
|
2015-02-11 13:13:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
it('should print the sample id, description and table header', () => {
|
|
|
|
createReporter({
|
|
|
|
columnWidth: 8,
|
|
|
|
sampleId: 'someSample',
|
|
|
|
descriptions: [{
|
|
|
|
'a': 1,
|
|
|
|
'b': 2
|
|
|
|
}],
|
|
|
|
metrics: {
|
|
|
|
'm1': 'some desc',
|
|
|
|
'm2': 'some other desc'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
expect(log).toEqual([
|
|
|
|
'BENCHMARK someSample',
|
|
|
|
'Description:',
|
|
|
|
'- a: 1',
|
|
|
|
'- b: 2',
|
|
|
|
'Metrics:',
|
|
|
|
'- m1: some desc',
|
|
|
|
'- m2: some other desc',
|
|
|
|
'',
|
|
|
|
' m1 | m2',
|
|
|
|
'-------- | --------',
|
|
|
|
]);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should print a table row', () => {
|
|
|
|
createReporter({
|
|
|
|
columnWidth: 8,
|
|
|
|
metrics: {
|
|
|
|
'a': '',
|
|
|
|
'b': ''
|
|
|
|
}
|
|
|
|
});
|
|
|
|
log = [];
|
2015-02-17 17:30:24 -05:00
|
|
|
reporter.reportMeasureValues(mv(0, 0, {
|
2015-02-11 13:13:49 -05:00
|
|
|
'a': 1.23, 'b': 2
|
2015-02-17 17:30:24 -05:00
|
|
|
}));
|
2015-02-11 13:13:49 -05:00
|
|
|
expect(log).toEqual([
|
|
|
|
' 1.23 | 2.00'
|
|
|
|
]);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should print the table footer and stats when there is a valid sample', () => {
|
|
|
|
createReporter({
|
|
|
|
columnWidth: 8,
|
|
|
|
metrics: {
|
|
|
|
'a': '',
|
|
|
|
'b': ''
|
|
|
|
}
|
|
|
|
});
|
|
|
|
log = [];
|
2015-02-17 17:30:24 -05:00
|
|
|
reporter.reportSample([], [mv(0,0,{
|
2015-02-11 13:13:49 -05:00
|
|
|
'a': 3, 'b': 6
|
2015-02-17 17:30:24 -05:00
|
|
|
}), mv(1,1,{
|
2015-02-11 13:13:49 -05:00
|
|
|
'a': 5, 'b': 9
|
2015-02-17 17:30:24 -05:00
|
|
|
})]);
|
2015-02-11 13:13:49 -05:00
|
|
|
expect(log).toEqual([
|
|
|
|
'======== | ========',
|
2015-02-26 15:54:57 -05:00
|
|
|
'4.00+-25% | 7.50+-20%'
|
2015-02-11 13:13:49 -05:00
|
|
|
]);
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2015-02-17 17:30:24 -05:00
|
|
|
function mv(runIndex, time, values) {
|
|
|
|
return new MeasureValues(runIndex, DateWrapper.fromMillis(time), values);
|
|
|
|
}
|