Skip to content

Commit 73c7d2b

Browse files
author
Shreyas Minocha
committed
Add benchmarks
Issue #31
1 parent dd25514 commit 73c7d2b

File tree

5 files changed

+389
-25
lines changed

5 files changed

+389
-25
lines changed

.eslintrc

+6-4
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,18 @@
88
"max-len": [2, 255, 4],
99
"no-param-reassign": 0,
1010
"spaced-comment": [2, "always", { "markers": ["/", "!"] }],
11-
"no-plusplus": 0
11+
"no-plusplus": 0,
12+
"no-console": 0,
13+
"import/no-extraneous-dependencies": [2, { "devDependencies": true }],
1214
},
1315
"env": {
1416
"amd": true,
1517
"node": true,
1618
"commonjs": true,
1719
"es6": true,
18-
"browser": true
20+
"browser": true,
1921
},
2022
"globals": {
21-
"VerEx": true
22-
}
23+
"VerEx": true,
24+
},
2325
}

README.md

+28
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,34 @@ npm test
4848
npm run test:verbose
4949
```
5050

51+
## Running Benchmarks
52+
53+
```sh
54+
npm run bench
55+
```
56+
57+
With around 15 benchmarks, running takes approximately 2 minutes.
58+
59+
Example output:
60+
61+
```sh
62+
$ npm run bench
63+
64+
> [email protected] bench /Users/shreyasminocha/dev/forks/JSVerbalExpressions
65+
> node benchmark/run.js
66+
67+
╔═════════════════════╤═══════╤═════════════╗
68+
║ Description │ Time │ Uncertainty ║
69+
╟─────────────────────┼───────┼─────────────╢
70+
║ VerEx constructor │ 0ms │ ±0.00% ║
71+
║ RegExp constructor │ 132ns │ ±12.29% ║
72+
╟─────────────────────┼───────┼─────────────╢
73+
║ ... │ ... │ ... ║
74+
╚═════════════════════╧═══════╧═════════════╝
75+
```
76+
77+
The uncertainty column is a measure of how accurate the time in the `Time` column is.
78+
5179
## Creating a minified version
5280

5381
```sh

benchmark/run.js

+218
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,218 @@
1+
const { Suite } = require('benchmark');
2+
const { table } = require('table');
3+
const prettyMs = require('pretty-ms');
4+
const { bold } = require('chalk');
5+
6+
const VerEx = require('../dist/verbalexpressions');
7+
8+
const benchmarks = {};
9+
const todo = {};
10+
11+
benchmarks.constructor = {
12+
VerEx: () => { VerEx(); },
13+
RegExp: () => { RegExp(); },
14+
};
15+
16+
benchmarks.startOfLine = {
17+
VerEx: () => { VerEx().startOfLine('a').test('alpha'); },
18+
RegExp: () => { /^a/gm.test('alpha'); },
19+
};
20+
21+
benchmarks.endOfLine = {
22+
VerEx: () => { VerEx().endOfLine('a').test('alpha'); },
23+
RegExp: () => { /a$/gm.test('alpha'); },
24+
};
25+
26+
benchmarks['then|find'] = {
27+
VerEx: () => { VerEx().find('alpha').test('alpha'); },
28+
RegExp: () => { /alpha/gm.test('alpha'); },
29+
};
30+
31+
benchmarks.maybe = {
32+
VerEx: () => {
33+
const expr = VerEx().maybe('a');
34+
expr.test('a'); expr.test('');
35+
},
36+
RegExp: () => {
37+
const expr = /a?/gm;
38+
expr.test('a'); expr.test('');
39+
},
40+
};
41+
42+
benchmarks.anything = {
43+
VerEx: () => { VerEx().anything().test('alpha'); },
44+
RegExp: () => { /.*/gm.test('alpha'); },
45+
};
46+
47+
benchmarks.anythingBut = {
48+
VerEx: () => {
49+
const expr = VerEx().anythingBut('a');
50+
expr.test('a'); expr.test('e');
51+
},
52+
RegExp: () => {
53+
const expr = /.*/gm;
54+
expr.test('a'); expr.test('e');
55+
},
56+
};
57+
58+
benchmarks.something = {
59+
VerEx: () => {
60+
const expr = VerEx().something();
61+
expr.test('a'); expr.test('');
62+
},
63+
RegExp: () => {
64+
const expr = /.+/gm;
65+
expr.test('a'); expr.test('');
66+
},
67+
};
68+
69+
benchmarks.somethingBut = {
70+
VerEx: () => {
71+
const expr = VerEx().somethingBut('a');
72+
expr.test('a'); expr.test('e'); expr.test('');
73+
},
74+
RegExp: () => {
75+
const expr = /.+/gm;
76+
expr.test('a'); expr.test('e'); expr.test('');
77+
},
78+
};
79+
80+
benchmarks['anyOf|any'] = {
81+
VerEx: () => {
82+
const expr = VerEx().anyOf(['a', 'b', 'c']);
83+
expr.test('b'); expr.test('f');
84+
},
85+
RegExp: () => {
86+
const expr = /[abc]/gm;
87+
expr.test('b'); expr.test('f');
88+
},
89+
};
90+
91+
benchmarks.not = {
92+
VerEx: () => {
93+
const expr = VerEx().not('foo');
94+
expr.test('foo'); expr.test('bar');
95+
},
96+
RegExp: () => {
97+
const expr = /(!=foo)/gm;
98+
expr.test('foo'); expr.test('bar');
99+
},
100+
};
101+
102+
benchmarks.range = {
103+
VerEx: () => {
104+
const expr = VerEx().range(0, 9, 'a', 'f');
105+
expr.test('d'); expr.test('g');
106+
},
107+
RegExp: () => {
108+
const expr = /[0-9a-f]/gm;
109+
expr.test('d'); expr.test('g');
110+
},
111+
};
112+
113+
benchmarks['lineBreak|br'] = {
114+
VerEx: () => {
115+
const expr = VerEx().lineBreak();
116+
expr.test('\n'); expr.test('lf');
117+
},
118+
RegExp: () => {
119+
const expr = /\r\n|\r|\n/gm;
120+
expr.test('\n'); expr.test('lf');
121+
},
122+
};
123+
124+
benchmarks.tab = {
125+
VerEx: () => {
126+
const expr = VerEx().tab();
127+
expr.test('\t'); expr.test('tab');
128+
},
129+
RegExp: () => {
130+
const expr = /\t/gm;
131+
expr.test('\t'); expr.test('tab');
132+
},
133+
};
134+
135+
benchmarks.word = {
136+
VerEx: () => {
137+
const expr = VerEx().word();
138+
expr.test('word_1'); expr.test('@#!$');
139+
},
140+
RegExp: () => {
141+
const expr = /\w+/gm;
142+
expr.test('word_1'); expr.test('@#!$');
143+
},
144+
};
145+
146+
benchmarks.digit = {
147+
VerEx: () => {
148+
const expr = VerEx().digit();
149+
expr.test('3'); expr.test('a');
150+
},
151+
RegExp: () => {
152+
const expr = /\w+/gm;
153+
expr.test('3'); expr.test('a');
154+
},
155+
};
156+
157+
benchmarks.whitespace = {
158+
VerEx: () => {
159+
const expr = VerEx().whitespace();
160+
expr.test(' '); expr.test('w');
161+
},
162+
RegExp: () => {
163+
const expr = /\s/gm;
164+
expr.test(' '); expr.test('w');
165+
},
166+
};
167+
168+
todo.addModifier = { VerEx: () => {}, RegExp: () => {} };
169+
todo.removeModifier = { VerEx: () => {}, RegExp: () => {} };
170+
todo.withAnyCase = { VerEx: () => {}, RegExp: () => {} };
171+
todo.stopAtFirst = { VerEx: () => {}, RegExp: () => {} };
172+
todo.searchOneLine = { VerEx: () => {}, RegExp: () => {} };
173+
todo.repeatPrevious = { VerEx: () => {}, RegExp: () => {} };
174+
todo.oneOrMore = { VerEx: () => {}, RegExp: () => {} };
175+
todo.multiple = { VerEx: () => {}, RegExp: () => {} };
176+
todo.capture = { VerEx: () => {}, RegExp: () => {} };
177+
todo.replace = { VerEx: () => {}, RegExp: () => {} };
178+
179+
benchmarks.toRegExp = {
180+
VerEx: () => { const expr = VerEx.find('foo').toRegExp(); },
181+
RegExp: () => { const expr = /foo/gm; },
182+
};
183+
184+
const suite = new Suite();
185+
186+
for (const [name, bench] of Object.entries(benchmarks)) {
187+
const VerExRun = bench.VerEx;
188+
const RegExpRun = bench.RegExp;
189+
190+
suite
191+
.add(`VerEx ${name}`, VerExRun)
192+
.add(`RegExp ${name}`, RegExpRun);
193+
}
194+
195+
const tableData = [];
196+
197+
tableData.push([
198+
bold('Description'), bold('Time'), bold('Uncertainty'),
199+
]);
200+
201+
suite.on('cycle', (event) => {
202+
const { name, stats } = event.target;
203+
204+
tableData.push([
205+
name,
206+
prettyMs(stats.mean * 1000, { formatSubMs: true }),
207+
${stats.rme.toFixed(2)}%`,
208+
]);
209+
});
210+
211+
suite.run();
212+
213+
const tableConfig = {
214+
// Draw a line for the 0-th index and every odd index
215+
drawHorizontalLine: index => index === 0 || index % 2 !== 0,
216+
};
217+
218+
console.log(table(tableData, tableConfig));

0 commit comments

Comments
 (0)