summaryrefslogtreecommitdiff
path: root/test/2-perf.ts
blob: 98e06688d165934b03bf95c3c88a18497482826a (plain)
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 { testSuites, workers, bClone, TestHandler } from './util';
import { writeFileSync } from 'fs';
import { join } from 'path';

const preprocessors = {
  inflate: workers.zlib.deflate,
  gunzip: workers.zlib.gzip,
  unzlib: workers.zlib.zlib
};

const cache: Record<string, Record<string, Buffer>> = {
  deflate: {},
  inflate: {},
  gzip: {},
  gunzip: {},
  zlib: {},
  unzlib: {}
};

const flattenedWorkers: Record<string, TestHandler> = {};
for (const k in workers) {
  for (const l in workers[k]) {
    if (l == 'zip' || l == 'unzip') continue;
    flattenedWorkers[k + '.' + l] = async (file, name, resetTimer) => {
      const fileClone = bClone(file);
      let buf = fileClone;
      if (preprocessors[l]) {
        buf = bClone(cache[l][name] ||= Buffer.from(
          await preprocessors[l as keyof typeof preprocessors](buf, [buf.buffer])
        ));
        resetTimer();
      }
      const opt2 = preprocessors[l]
        ? k === 'tinyInflate'
          ? new Uint8Array(file.length)
          : null
        : { level: 1 };
      await workers[k][l]([buf, opt2], opt2 instanceof Uint8Array
        ? [buf.buffer, opt2.buffer]
        : [buf.buffer]);
    }
  }
}

testSuites(flattenedWorkers).then(perf => {
  writeFileSync(join(__dirname, 'results', 'timings.json'), JSON.stringify(perf, null, 2));
});