-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtestBookIn.js
392 lines (364 loc) · 10.8 KB
/
testBookIn.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
const _ = require('../lib/utils/under-dash.js');
const HrStopwatch = require('./utils/hr-stopwatch');
const Excel = require('../excel');
const filename = process.argv[2];
const wb = new Excel.Workbook();
const fonts = {
arialBlackUI14: {
name: 'Arial Black',
family: 2,
size: 14,
underline: true,
italic: true,
},
comicSansUdB16: {
name: 'Comic Sans MS',
family: 4,
size: 16,
underline: 'double',
bold: true,
},
};
const alignments = [
{text: 'Top Left', alignment: {horizontal: 'left', vertical: 'top'}},
{
text: 'Middle Centre',
alignment: {horizontal: 'center', vertical: 'middle'},
},
{
text: 'Bottom Right',
alignment: {horizontal: 'right', vertical: 'bottom'},
},
{
text: 'Wrap Text - Wrapping Wrapping Wrappity Wrap Wrap Wrap',
alignment: {wrapText: true},
},
{text: 'Indent 1', alignment: {indent: 1}},
{text: 'Indent 2', alignment: {indent: 2}},
{
text: 'Rotate 15',
alignment: {horizontal: 'right', vertical: 'bottom', textRotation: 15},
},
{
text: 'Rotate 30',
alignment: {horizontal: 'right', vertical: 'bottom', textRotation: 30},
},
{
text: 'Rotate 45',
alignment: {horizontal: 'right', vertical: 'bottom', textRotation: 45},
},
{
text: 'Rotate 60',
alignment: {horizontal: 'right', vertical: 'bottom', textRotation: 60},
},
{
text: 'Rotate 75',
alignment: {horizontal: 'right', vertical: 'bottom', textRotation: 75},
},
{
text: 'Rotate 90',
alignment: {horizontal: 'right', vertical: 'bottom', textRotation: 90},
},
{
text: 'Rotate -15',
alignment: {horizontal: 'right', vertical: 'bottom', textRotation: -55},
},
{
text: 'Rotate -30',
alignment: {horizontal: 'right', vertical: 'bottom', textRotation: -30},
},
{
text: 'Rotate -45',
alignment: {horizontal: 'right', vertical: 'bottom', textRotation: -45},
},
{
text: 'Rotate -60',
alignment: {horizontal: 'right', vertical: 'bottom', textRotation: -60},
},
{
text: 'Rotate -75',
alignment: {horizontal: 'right', vertical: 'bottom', textRotation: -75},
},
{
text: 'Rotate -90',
alignment: {horizontal: 'right', vertical: 'bottom', textRotation: -90},
},
{
text: 'Vertical Text',
alignment: {
horizontal: 'right',
vertical: 'bottom',
textRotation: 'vertical',
},
},
];
const borders = {
thin: {
top: {style: 'thin'},
left: {style: 'thin'},
bottom: {style: 'thin'},
right: {style: 'thin'},
},
doubleRed: {
top: {style: 'double', color: {argb: 'FFFF0000'}},
left: {style: 'double', color: {argb: 'FFFF0000'}},
bottom: {style: 'double', color: {argb: 'FFFF0000'}},
right: {style: 'double', color: {argb: 'FFFF0000'}},
},
thickRainbow: {
top: {style: 'double', color: {argb: 'FFFF00FF'}},
left: {style: 'double', color: {argb: 'FF00FFFF'}},
bottom: {style: 'double', color: {argb: 'FF00FF00'}},
right: {style: 'double', color: {argb: 'FFFF00FF'}},
diagonal: {
style: 'double',
color: {argb: 'FFFFFF00'},
up: true,
down: true,
},
},
};
const fills = {
redDarkVertical: {
type: 'pattern',
pattern: 'darkVertical',
fgColor: {argb: 'FFFF0000'},
},
redGreenDarkTrellis: {
type: 'pattern',
pattern: 'darkTrellis',
fgColor: {argb: 'FFFF0000'},
bgColor: {argb: 'FF00FF00'},
},
blueWhiteHGrad: {
type: 'gradient',
gradient: 'angle',
degree: 0,
stops: [
{position: 0, color: {argb: 'FF0000FF'}},
{position: 1, color: {argb: 'FFFFFFFF'}},
],
},
rgbPathGrad: {
type: 'gradient',
gradient: 'path',
center: {left: 0.5, top: 0.5},
stops: [
{position: 0, color: {argb: 'FFFF0000'}},
{position: 0.5, color: {argb: 'FF00FF00'}},
{position: 1, color: {argb: 'FF0000FF'}},
],
},
};
let passed = true;
const assert = function(value, failMessage, passMessage) {
if (!value) {
if (failMessage) {
console.log(failMessage);
}
passed = false;
} else if (passMessage) {
console.log(passMessage);
}
};
const assertFont = function(value, expected, address) {
// console.log('assertFont', address, JSON.stringify(value), JSON.stringify(expected));
assert(value, `Expected to find font object at ${address}`);
_.each(expected, (item, name) => {
assert(
value[name] === expected[name],
`Expected ${address}.font[${name}] to be ${expected[name]}, but was ${value[name]}`
);
});
_.each(value, (item, name) => {
assert(
expected[name],
`Found unexpected ${address}.font[${name}] = ${value[name]}`
);
});
};
const assertEqual = function(address, name, value, expected) {
assert(
_.isEqual(value, expected),
`Expected Cell[${address}] ${name} to be ${JSON.stringify(
expected
)}, was ${JSON.stringify(value)}`
);
};
const stopwatch = new HrStopwatch();
stopwatch.start();
// assuming file created by testBookOut
wb.xlsx.readFile(filename).then(() => {
const micros = stopwatch.microseconds;
console.log('Loaded', filename);
console.log('Time taken:', micros);
const ws = wb.getWorksheet('blort');
assert(ws, 'Expected to find a worksheet called blort');
const column1 = ws.getColumn(1);
assert(
column1 && column1.width === 25,
`Expected column width of col 1 to be 25, was ${column1.width}`
);
const column9 = ws.getColumn(9);
assert(
column9 && column9.hidden,
`Expected column 9 to be hidden: \n${JSON.stringify(
column9.defn,
null,
' '
)}`
);
const row16 = ws.getRow(16);
assert(row16 && row16.hidden, 'Expected row 16 to be hidden');
assert(ws.getCell('A2').value === 7, 'Expected A2 == 7');
assert(
ws.getCell('B2').value === 'Hello, World!',
`Expected B2 == "Hello, World!", was "${ws.getCell('B2').value}"`
);
assertFont(ws.getCell('B2').font, fonts.comicSansUdB16, 'B2');
assertEqual('B2', 'border', ws.getCell('B2').border, borders.thin);
assert(
Math.abs(ws.getCell('C2').value + 5.55) < 0.000001,
`Expected C2 == -5.55, was${ws.getCell('C2').value}`
);
assert(
ws.getCell('C2').numFmt === '"£"#,##0.00;[Red]-"£"#,##0.00',
`Expected C2 numFmt to be "£"#,##0.00;[Red]-"£"#,##0.00, was ${
ws.getCell('C2').numFmt
}`
);
assertFont(ws.getCell('C2').font, fonts.arialBlackUI14, 'C2');
assert(
ws.getCell('D2').value instanceof Date,
`expected D2 to be a Date, was ${ws.getCell('D2').value}`
);
assertEqual('D2', 'border', ws.getCell('D2').border, borders.doubleRed);
assert(ws.getCell('F2').value === true, 'Expected F2 to be true');
assert(ws.getCell('G2').value.error === '#N/A', 'Expected G2 to be #N/A');
assert(
ws.getCell('H2').value.error === '#VALUE!',
'Expected H2 to be #VALUE!'
);
assert(
ws.getCell('C5').value.formula,
`Expected C5 to be a formula, was ${JSON.stringify(ws.getCell('C5').value)}`
);
assertEqual('C6', 'border', ws.getCell('C6').border, borders.thickRainbow);
assert(
ws.getCell('A9').numFmt === '# ?/?',
`Expected A9 numFmt to be "# ?/?", was ${ws.getCell('A9').numFmt}`
);
assert(
ws.getCell('B9').numFmt === 'h:mm:ss',
`Expected B9 numFmt to be "h:mm:ss", was ${ws.getCell('B9').numFmt}`
);
assert(
ws.getCell('C9').numFmt === '0.00%',
`Expected C9 numFmt to be "0.00%", was ${ws.getCell('C9').numFmt}`
);
assert(
ws.getCell('D9').numFmt === '[Green]#,##0 ;[Red](#,##0)',
`Expected D9 numFmt to be "[Green]#,##0 ;[Red](#,##0)", was ${
ws.getCell('D9').numFmt
}`
);
assert(
ws.getCell('E9').numFmt === '#0.000',
`Expected E9 numFmt to be "#0.000", was ${ws.getCell('E9').numFmt}`
);
assert(
ws.getCell('F9').numFmt === '# ?/?%',
`Expected F9 numFmt to be "# ?/?%", was ${ws.getCell('F9').numFmt}`
);
assert(
ws.getCell('A10').value === '<',
`Expected A10 to be "<", was "${ws.getCell('A10').value}"`
);
assert(
ws.getCell('B10').value === '>',
`Expected A10 to be ">", was "${ws.getCell('B10').value}"`
);
assert(
ws.getCell('C10').value === '<a>',
`Expected A10 to be "<a>", was "${ws.getCell('C10').value}"`
);
assert(
ws.getCell('D10').value === '><',
`Expected A10 to be "><", was "${ws.getCell('D10').value}"`
);
assert(
ws.getRow(11).height === 40,
`Expected Row 11 to be height 40, was ${ws.getRow(11).height}`
);
_.each(alignments, (alignment, index) => {
const rowNumber = 11;
const colNumber = index + 1;
const cell = ws.getCell(rowNumber, colNumber);
assert(
cell.value === alignment.text,
`Expected Cell[${rowNumber},${colNumber}] to be ${alignment.text}, was ${cell.value}`
);
assert(
_.isEqual(cell.alignment, alignment.alignment),
`Expected Cell[${rowNumber},${colNumber}] alignment to be ${JSON.stringify(
alignment.alignment
)}, was ${JSON.stringify(cell.alignment)}`
);
});
const row12 = ws.getRow(12);
assert(
row12.height === 40,
`Expected Row 12 to be height 40, was ${row12.height}`
);
assert(
_.isEqual(row12.getCell(1).fill, fills.blueWhiteHGrad),
`Expected [12,1] fill to be ${JSON.stringify(
fills.blueWhiteHGrad
)}, was ${JSON.stringify(row12.getCell(1).fill)}`
);
assert(
_.isEqual(row12.getCell(2).fill, fills.redDarkVertical),
`Expected [12,2] fill to be ${JSON.stringify(
fills.redDarkVertical
)}, was ${JSON.stringify(row12.getCell(2).fill)}`
);
assert(
_.isEqual(row12.getCell(3).fill, fills.redGreenDarkTrellis),
`Expected [12,3] fill to be ${JSON.stringify(
fills.redGreenDarkTrellis
)}, was ${JSON.stringify(row12.getCell(3).fill)}`
);
assert(
_.isEqual(row12.getCell(4).fill, fills.rgbPathGrad),
`Expected [12,4] fill to be ${JSON.stringify(
fills.rgbPathGrad
)}, was ${JSON.stringify(row12.getCell(4).fill)}`
);
assertFont(ws.getRow(13).font, fonts.arialBlackUI14, 'Row 13');
assertFont(ws.getCell('H12').font, fonts.comicSansUdB16, 'H12');
assertFont(ws.getCell('G13').font, fonts.arialBlackUI14, 'G13');
assertFont(ws.getCell('H13').font, fonts.arialBlackUI14, 'H13');
assertFont(ws.getCell('I13').font, fonts.arialBlackUI14, 'I13');
assertFont(ws.getCell('H14').font, fonts.comicSansUdB16, 'H14');
assert(
ws.getCell('H12').value === 'Foo',
`Expected H12 to be "Foo", was "${ws.getCell('H12').value}"`
);
assert(
ws.getCell('G13').value === 'Foo',
`Expected G13 to be "Foo", was "${ws.getCell('G13').value}"`
);
assert(
ws.getCell('H13').value === 'Bar',
`Expected H13 to be "Bar", was "${ws.getCell('H13').value}"`
);
assert(
ws.getCell('I13').value === 'Baz',
`Expected I13 to be "Baz", was "${ws.getCell('I13').value}"`
);
assert(
ws.getCell('H14').value === 'Baz',
`Expected H14 to be "Baz", was "${ws.getCell('H14').value}"`
);
assert(passed, 'Something went wrong', 'All tests passed!');
});