forked from tealeg/xlsx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lib_test.go
481 lines (459 loc) · 13.4 KB
/
lib_test.go
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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
package xlsx
import (
"bytes"
"encoding/xml"
"strconv"
"strings"
"testing"
)
// Test we can correctly open a XSLX file and return a xlsx.File
// struct.
func TestOpenFile(t *testing.T) {
var xlsxFile *File
var error error
xlsxFile, error = OpenFile("testfile.xlsx")
if error != nil {
t.Error(error.Error())
return
}
if xlsxFile == nil {
t.Error("OpenFile returned nil FileInterface without generating an os.Error")
return
}
}
// Test that when we open a real XLSX file we create xlsx.Sheet
// objects for the sheets inside the file and that these sheets are
// themselves correct.
func TestCreateSheet(t *testing.T) {
var xlsxFile *File
var error error
var sheet *Sheet
var row *Row
xlsxFile, error = OpenFile("testfile.xlsx")
if error != nil {
t.Error(error.Error())
return
}
if xlsxFile == nil {
t.Error("OpenFile returned a nil File pointer but did not generate an error.")
return
}
sheetLen := len(xlsxFile.Sheets)
if sheetLen == 0 {
t.Error("Expected len(xlsxFile.Sheets) > 0, but got ", sheetLen)
return
}
sheet = xlsxFile.Sheets[0]
rowLen := len(sheet.Rows)
if rowLen != 2 {
t.Error("Expected len(sheet.Rows) == 2, but got ", rowLen)
return
}
row = sheet.Rows[0]
if len(row.Cells) != 2 {
t.Error("Expected len(row.Cells) == 2")
return
}
cell := row.Cells[0]
cellstring := cell.String()
if cellstring != "Foo" {
t.Error("Expected cell.String() == 'Foo', got ", cellstring)
}
}
// Test that we can correctly extract a reference table from the
// sharedStrings.xml file embedded in the XLSX file and return a
// reference table of string values from it.
func TestReadSharedStringsFromZipFile(t *testing.T) {
var xlsxFile *File
var error error
xlsxFile, error = OpenFile("testfile.xlsx")
if error != nil {
t.Error(error.Error())
return
}
if xlsxFile.referenceTable == nil {
t.Error("expected non nil xlsxFile.referenceTable")
return
}
}
func TestLettersToNumeric(t *testing.T) {
var input string
var output int
input = "A"
output = lettersToNumeric(input)
if output != 0 {
t.Error("Expected output 'A' == 0, but got ", strconv.Itoa(output))
}
input = "z"
output = lettersToNumeric(input)
if output != 25 {
t.Error("Expected output 'z' == 25, but got ", strconv.Itoa(output))
}
input = "AA"
output = lettersToNumeric(input)
if output != 26 {
t.Error("Expected output 'AA' == 26, but got ", strconv.Itoa(output))
}
input = "Az"
output = lettersToNumeric(input)
if output != 51 {
t.Error("Expected output 'Az' == 51, but got ", strconv.Itoa(output))
}
input = "BA"
output = lettersToNumeric(input)
if output != 52 {
t.Error("Expected output 'BA' == 52, but got ", strconv.Itoa(output))
}
input = "Bz"
output = lettersToNumeric(input)
if output != 77 {
t.Error("Expected output 'Bz' == 77, but got ", strconv.Itoa(output))
}
input = "AAA"
output = lettersToNumeric(input)
if output != 676 {
t.Error("Expected output 'AAA' == 676, but got ", strconv.Itoa(output))
}
}
func TestPositionalLetterMultiplier(t *testing.T) {
var output int
output = positionalLetterMultiplier(1, 0)
if output != 1 {
t.Error("Expected positionalLetterMultiplier(1, 0) == 1, got ", output)
}
output = positionalLetterMultiplier(2, 0)
if output != 26 {
t.Error("Expected positionalLetterMultiplier(2, 0) == 26, got ", output)
}
output = positionalLetterMultiplier(2, 1)
if output != 1 {
t.Error("Expected positionalLetterMultiplier(2, 1) == 1, got ", output)
}
output = positionalLetterMultiplier(3, 0)
if output != 676 {
t.Error("Expected positionalLetterMultiplier(3, 0) == 676, got ", output)
}
output = positionalLetterMultiplier(3, 1)
if output != 26 {
t.Error("Expected positionalLetterMultiplier(3, 1) == 26, got ", output)
}
output = positionalLetterMultiplier(3, 2)
if output != 1 {
t.Error("Expected positionalLetterMultiplier(3, 2) == 1, got ", output)
}
}
func TestLetterOnlyMapFunction(t *testing.T) {
var input string = "ABC123"
var output string = strings.Map(letterOnlyMapF, input)
if output != "ABC" {
t.Error("Expected output == 'ABC' but got ", output)
}
input = "abc123"
output = strings.Map(letterOnlyMapF, input)
if output != "ABC" {
t.Error("Expected output == 'ABC' but got ", output)
}
}
func TestIntOnlyMapFunction(t *testing.T) {
var input string = "ABC123"
var output string = strings.Map(intOnlyMapF, input)
if output != "123" {
t.Error("Expected output == '123' but got ", output)
}
}
func TestGetCoordsFromCellIDString(t *testing.T) {
var cellIDString string = "A3"
var x, y int
var error error
x, y, error = getCoordsFromCellIDString(cellIDString)
if error != nil {
t.Error(error)
}
if x != 0 {
t.Error("Expected x == 0, but got ", strconv.Itoa(x))
}
if y != 2 {
t.Error("Expected y == 2, but got ", strconv.Itoa(y))
}
}
func TestGetRangeFromString(t *testing.T) {
var rangeString string
var lower, upper int
var error error
rangeString = "1:3"
lower, upper, error = getRangeFromString(rangeString)
if error != nil {
t.Error(error)
}
if lower != 1 {
t.Error("Expected lower bound == 1, but got ", strconv.Itoa(lower))
}
if upper != 3 {
t.Error("Expected upper bound == 3, but got ", strconv.Itoa(upper))
}
}
func TestMakeRowFromSpan(t *testing.T) {
var rangeString string
var row *Row
var length int
rangeString = "1:3"
row = makeRowFromSpan(rangeString)
length = len(row.Cells)
if length != 3 {
t.Error("Expected a row with 3 cells, but got ", strconv.Itoa(length))
}
rangeString = "5:7" // Note - we ignore lower bound!
row = makeRowFromSpan(rangeString)
length = len(row.Cells)
if length != 7 {
t.Error("Expected a row with 7 cells, but got ", strconv.Itoa(length))
}
rangeString = "1:1"
row = makeRowFromSpan(rangeString)
length = len(row.Cells)
if length != 1 {
t.Error("Expected a row with 1 cells, but got ", strconv.Itoa(length))
}
}
func TestReadRowsFromSheet(t *testing.T) {
var sharedstringsXML = bytes.NewBufferString(`
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<sst xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" count="4" uniqueCount="4">
<si>
<t>Foo</t>
</si>
<si>
<t>Bar</t>
</si>
<si>
<t xml:space="preserve">Baz </t>
</si>
<si>
<t>Quuk</t>
</si>
</sst>`)
var sheetxml = bytes.NewBufferString(`
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main"
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships">
<dimension ref="A1:B2"/>
<sheetViews>
<sheetView tabSelected="1" workbookViewId="0">
<selection activeCell="C2" sqref="C2"/>
</sheetView>
</sheetViews>
<sheetFormatPr baseColWidth="10" defaultRowHeight="15"/>
<sheetData>
<row r="1" spans="1:2">
<c r="A1" t="s">
<v>0</v>
</c>
<c r="B1" t="s">
<v>1</v>
</c>
</row>
<row r="2" spans="1:2">
<c r="A2" t="s">
<v>2</v>
</c>
<c r="B2" t="s">
<v>3</v>
</c>
</row>
</sheetData>
<pageMargins left="0.7" right="0.7"
top="0.78740157499999996"
bottom="0.78740157499999996"
header="0.3"
footer="0.3"/>
</worksheet>`)
worksheet := new(xlsxWorksheet)
error := xml.NewDecoder(sheetxml).Decode(worksheet)
if error != nil {
t.Error(error.Error())
return
}
sst := new(xlsxSST)
error = xml.NewDecoder(sharedstringsXML).Decode(sst)
if error != nil {
t.Error(error.Error())
return
}
reftable := MakeSharedStringRefTable(sst)
rows := readRowsFromSheet(worksheet, reftable)
if len(rows) != 2 {
t.Error("Expected len(rows) == 2")
}
row := rows[0]
if len(row.Cells) != 2 {
t.Error("Expected len(row.Cells) == 2, got ", strconv.Itoa(len(row.Cells)))
}
cell1 := row.Cells[0]
if cell1.String() != "Foo" {
t.Error("Expected cell1.String() == 'Foo', got ", cell1.String())
}
cell2 := row.Cells[1]
if cell2.String() != "Bar" {
t.Error("Expected cell2.String() == 'Bar', got ", cell2.String())
}
}
func TestReadRowsFromSheetWithEmptyCells(t *testing.T) {
var sharedstringsXML = bytes.NewBufferString(`
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<sst xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" count="8" uniqueCount="5"><si><t>Bob</t></si><si><t>Alice</t></si><si><t>Sue</t></si><si><t>Yes</t></si><si><t>No</t></si></sst>`)
var sheetxml = bytes.NewBufferString(`
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"><dimension ref="A1:C3"/><sheetViews><sheetView tabSelected="1" workbookViewId="0"><selection activeCell="D3" sqref="D3"/></sheetView></sheetViews><sheetFormatPr baseColWidth="10" defaultRowHeight="15"/>
<sheetData>
<row r="1" spans="1:3">
<c r="A1" t="s">
<v>
0
</v>
</c>
<c r="B1" t="s">
<v>
1
</v>
</c>
<c r="C1" t="s">
<v>
2
</v>
</c>
</row>
<row r="2" spans="1:3">
<c r="A2" t="s">
<v>
3
</v>
</c>
<c r="B2" t="s">
<v>
4
</v>
</c>
<c r="C2" t="s">
<v>
3
</v>
</c>
</row>
<row r="3" spans="1:3">
<c r="A3" t="s">
<v>
4
</v>
</c>
<c r="C3" t="s">
<v>
3
</v>
</c>
</row>
</sheetData>
<pageMargins left="0.7" right="0.7" top="0.78740157499999996" bottom="0.78740157499999996" header="0.3" footer="0.3"/>
</worksheet>
`)
worksheet := new(xlsxWorksheet)
error := xml.NewDecoder(sheetxml).Decode(worksheet)
if error != nil {
t.Error(error.Error())
return
}
sst := new(xlsxSST)
error = xml.NewDecoder(sharedstringsXML).Decode(sst)
if error != nil {
t.Error(error.Error())
return
}
reftable := MakeSharedStringRefTable(sst)
rows := readRowsFromSheet(worksheet, reftable)
if len(rows) != 3 {
t.Error("Expected len(rows) == 3, got ", strconv.Itoa(len(rows)))
}
row := rows[2]
if len(row.Cells) != 3 {
t.Error("Expected len(row.Cells) == 3, got ", strconv.Itoa(len(row.Cells)))
}
cell1 := row.Cells[0]
if cell1.String() != "No" {
t.Error("Expected cell1.String() == 'No', got ", cell1.String())
}
cell2 := row.Cells[1]
if cell2.String() != "" {
t.Error("Expected cell2.String() == '', got ", cell2.String())
}
cell3 := row.Cells[2]
if cell3.String() != "Yes" {
t.Error("Expected cell3.String() == 'Yes', got ", cell3.String())
}
}
func TestReadRowsFromSheetWithTrailingEmptyCells(t *testing.T) {
var row *Row
var cell1, cell2, cell3, cell4 *Cell
var sharedstringsXML = bytes.NewBufferString(`
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<sst xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" count="4" uniqueCount="4"><si><t>A</t></si><si><t>B</t></si><si><t>C</t></si><si><t>D</t></si></sst>`)
var sheetxml = bytes.NewBufferString(`
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"><dimension ref="A1:D8"/><sheetViews><sheetView tabSelected="1" workbookViewId="0"><selection activeCell="A7" sqref="A7"/></sheetView></sheetViews><sheetFormatPr baseColWidth="10" defaultRowHeight="15"/><sheetData><row r="1" spans="1:4"><c r="A1" t="s"><v>0</v></c><c r="B1" t="s"><v>1</v></c><c r="C1" t="s"><v>2</v></c><c r="D1" t="s"><v>3</v></c></row><row r="2" spans="1:4"><c r="A2"><v>1</v></c></row><row r="3" spans="1:4"><c r="B3"><v>1</v></c></row><row r="4" spans="1:4"><c r="C4"><v>1</v></c></row><row r="5" spans="1:4"><c r="D5"><v>1</v></c></row><row r="6" spans="1:4"><c r="C6"><v>1</v></c></row><row r="7" spans="1:4"><c r="B7"><v>1</v></c></row><row r="8" spans="1:4"><c r="A8"><v>1</v></c></row></sheetData><pageMargins left="0.7" right="0.7" top="0.78740157499999996" bottom="0.78740157499999996" header="0.3" footer="0.3"/></worksheet>
`)
worksheet := new(xlsxWorksheet)
error := xml.NewDecoder(sheetxml).Decode(worksheet)
if error != nil {
t.Error(error.Error())
return
}
sst := new(xlsxSST)
error = xml.NewDecoder(sharedstringsXML).Decode(sst)
if error != nil {
t.Error(error.Error())
return
}
reftable := MakeSharedStringRefTable(sst)
rows := readRowsFromSheet(worksheet, reftable)
if len(rows) != 8 {
t.Error("Expected len(rows) == 8, got ", strconv.Itoa(len(rows)))
}
row = rows[0]
if len(row.Cells) != 4 {
t.Error("Expected len(row.Cells) == 4, got ", strconv.Itoa(len(row.Cells)))
}
cell1 = row.Cells[0]
if cell1.String() != "A" {
t.Error("Expected cell1.String() == 'A', got ", cell1.String())
}
cell2 = row.Cells[1]
if cell2.String() != "B" {
t.Error("Expected cell2.String() == 'B', got ", cell2.String())
}
cell3 = row.Cells[2]
if cell3.String() != "C" {
t.Error("Expected cell3.String() == 'C', got ", cell3.String())
}
cell4 = row.Cells[3]
if cell4.String() != "D" {
t.Error("Expected cell4.String() == 'D', got ", cell4.String())
}
row = rows[1]
if len(row.Cells) != 4 {
t.Error("Expected len(row.Cells) == 4, got ", strconv.Itoa(len(row.Cells)))
}
cell1 = row.Cells[0]
if cell1.String() != "1" {
t.Error("Expected cell1.String() == '1', got ", cell1.String())
}
cell2 = row.Cells[1]
if cell2.String() != "" {
t.Error("Expected cell2.String() == '', got ", cell2.String())
}
cell3 = row.Cells[2]
if cell3.String() != "" {
t.Error("Expected cell3.String() == '', got ", cell3.String())
}
cell4 = row.Cells[3]
if cell4.String() != "" {
t.Error("Expected cell4.String() == '', got ", cell4.String())
}
}