Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions benchmark/test_runner/hooks.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
'use strict';

const common = require('../common');
const { finished } = require('node:stream/promises');
const reporter = require('../fixtures/empty-test-reporter');
const {
after,
afterEach,
before,
beforeEach,
describe,
it,
} = require('node:test');

const bench = common.createBenchmark(main, {
n: [1000],
hook: ['before', 'after', 'beforeEach', 'afterEach'],
}, {
// We don't want to test the reporter here.
flags: ['--test-reporter=./benchmark/fixtures/empty-test-reporter.js'],
});

const hookList = {
before: before,
after: after,
beforeEach: beforeEach,
afterEach: afterEach,
};

const noop = () => {};

function run(loopAmount, hookFn) {
for (let i = 0; i < loopAmount; i++) {
describe(`${i}`, () => {
hookFn(noop);
it(`${i}`, noop);
});
}

return finished(reporter);
}

function main(params) {
const hookFn = hookList[params.hook];

bench.start();

run(params.n, hookFn).then(() => {
bench.end(params.n);
});
}
114 changes: 114 additions & 0 deletions benchmark/test_runner/test-options.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
'use strict';

const common = require('../common');
const { finished } = require('node:stream/promises');
const reporter = require('../fixtures/empty-test-reporter');
const { it } = require('node:test');

const bench = common.createBenchmark(main, {
n: [10000],
option: [
'none',
'skip',
'skip-with-message',
'skip-method',
'skip-method-with-message',
'todo',
'todo-with-message',
'todo-method',
'todo-method-with-message',
],
}, {
// We don't want to test the reporter here.
flags: ['--test-reporter=./benchmark/fixtures/empty-test-reporter.js'],
});

const noop = () => {};

const allTests = {
'none': (loopAmount) => {
for (let i = 0; i < loopAmount; i++) {
it(`${i}`, noop);
}

return finished(reporter);
},
'skip': (loopAmount) => {
for (let i = 0; i < loopAmount; i++) {
it(`${i}`, { skip: true }, () => {
throw new Error('This test should not run.');
});
}

return finished(reporter);
},
'skip-with-message': (loopAmount) => {
for (let i = 0; i < loopAmount; i++) {
it(`${i}`, { skip: 'skip reason' }, () => {
throw new Error('This test should not run.');
});
}

return finished(reporter);
},
'skip-method': (loopAmount) => {
for (let i = 0; i < loopAmount; i++) {
it(`${i}`, (t) => {
t.skip();
});
}

return finished(reporter);
},
'skip-method-with-message': (loopAmount) => {
for (let i = 0; i < loopAmount; i++) {
it(`${i}`, (t) => {
t.skip('skip reason');
});
}

return finished(reporter);
},
'todo': (loopAmount) => {
for (let i = 0; i < loopAmount; i++) {
it(`${i}`, { todo: true }, noop);
}

return finished(reporter);
},
'todo-with-message': (loopAmount) => {
for (let i = 0; i < loopAmount; i++) {
it(`${i}`, { todo: 'todo reason' }, noop);
}

return finished(reporter);
},
'todo-method': (loopAmount) => {
for (let i = 0; i < loopAmount; i++) {
it(`${i}`, (t) => {
t.todo();
});
}

return finished(reporter);
},
'todo-method-with-message': (loopAmount) => {
for (let i = 0; i < loopAmount; i++) {
it(`${i}`, (t) => {
t.todo('todo reason');
});
}

return finished(reporter);
},
};

function main({ n, option }) {
const runOption = allTests[option];

bench.start();

runOption(n).then(() => {
bench.end(n);
});
}
Loading