-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathperformance-test.spec.ts
47 lines (41 loc) · 1.61 KB
/
performance-test.spec.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import testCases from './test-cases';
import { performance } from 'perf_hooks';
import * as chalk from 'chalk';
// SKIPPED -
// describe.only('parse queries', () => {
describe.skip('parse queries', () => {
it('should run performance tests', async () => {
const numIterations = 1000;
console.log(chalk.whiteBright(`Importing SOQL Parser library.`));
const startImport = performance.now();
const { parseQuery } = await import('../src');
const endImport = performance.now();
const importDuration = endImport - startImport;
console.log(chalk.whiteBright(`Duration: ${chalk.greenBright(Number(importDuration).toFixed(4))} milliseconds`));
console.log(
chalk.whiteBright(`Parser testing: ${testCases.length} X ${numIterations} = ${testCases.length * numIterations} iterations.`),
);
const start = performance.now();
for (let i = 0; i < numIterations; i++) {
testCases.forEach(testCase => {
try {
parseQuery(testCase.soql, { allowApexBindVariables: true, logErrors: true, ...testCase.options });
} catch (ex) {
console.log('Exception on TC', testCase.testCase, testCase.soql);
console.log(ex);
throw ex;
}
});
}
const end = performance.now();
const duration = end - start;
console.log(chalk.whiteBright(`Duration: ${chalk.greenBright(Number(duration / 1000).toFixed(4))} seconds`));
console.log(
chalk.whiteBright(
`Average of ${chalk.greenBright(Number(duration / (testCases.length * numIterations)).toFixed(4))} milliseconds per query`,
),
);
return;
});
});
export {};