-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtest-protection-spinCount.js
58 lines (46 loc) · 1.35 KB
/
test-protection-spinCount.js
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
48
49
50
51
52
53
54
55
56
57
58
const Excel = require('../lib/exceljs.nodejs.js');
const HrStopwatch = require('./utils/hr-stopwatch');
const [, , filename, password] = process.argv;
const wb = new Excel.Workbook();
const ws = wb.addWorksheet('Foo');
ws.getCell('A1').value = 'Bar';
async function save() {
const stopwatch = new HrStopwatch();
stopwatch.start();
await ws.protect(password); // default 100000
console.log('Protection Time [spinCount default]:', stopwatch.microseconds);
await wb.xlsx.writeFile(`${0}-${filename}`);
// options defined but spinCount not
stopwatch.start();
await ws.protect(password, {insertRows: true}); // default 100000
console.log('Protection Time [spinCount default]:', stopwatch.microseconds);
await wb.xlsx.writeFile(`${1}-${filename}`);
const values = [
100000,
10000,
1,
0,
-1,
undefined,
null,
NaN,
Infinity,
-Infinity,
31415.9265,
];
/*eslint-disable no-await-in-loop*/
for (let index = 0; index < values.length; index += 1) {
const value = values[index];
stopwatch.start();
await ws.protect(password, {spinCount: value});
console.log(
`Protection Time [spinCount ${value}]:`,
stopwatch.microseconds
);
await wb.xlsx.writeFile(`${index + 2}-${filename}`);
}
/*eslint-enable no-await-in-loop*/
}
save().catch(error => {
console.log(error.message);
});