-
Notifications
You must be signed in to change notification settings - Fork 819
/
write_test.go
342 lines (298 loc) · 8.97 KB
/
write_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
package xlsx
import (
"database/sql"
"math"
"path/filepath"
"testing"
"time"
qt "github.com/frankban/quicktest"
"github.com/pkg/profile"
)
type testStringerImpl struct {
Value string
}
func (this testStringerImpl) String() string {
return this.Value
}
func TestWrite(t *testing.T) {
c := qt.New(t)
// Test if we can write a struct to a row
csRunO(c, "TestWriteStruct", func(c *qt.C, option FileOption) {
var f *File
f = NewFile(option)
sheet, _ := f.AddSheet("Test1")
row := sheet.AddRow()
type e struct {
FirstName string
Age int
GPA float64
LikesPHP bool
Stringer testStringerImpl
StringerPtr *testStringerImpl
Time time.Time
LastName sql.NullString
HasPhd sql.NullBool
GithubStars sql.NullInt64
Raiting sql.NullFloat64
NullLastName sql.NullString
NullHasPhd sql.NullBool
NullGithubStars sql.NullInt32
NullRaiting sql.NullFloat64
}
testStruct := e{
"Eric",
20,
3.94,
false,
testStringerImpl{"Stringer"},
&testStringerImpl{"Pointer to Stringer"},
time.Unix(0, 0),
sql.NullString{String: `Smith`, Valid: true},
sql.NullBool{Bool: false, Valid: true},
sql.NullInt64{Int64: 100, Valid: true},
sql.NullFloat64{Float64: 0.123, Valid: true},
sql.NullString{String: `What ever`, Valid: false},
sql.NullBool{Bool: true, Valid: false},
sql.NullInt32{Int32: 100, Valid: false},
sql.NullFloat64{Float64: 0.123, Valid: false},
}
cnt := row.WriteStruct(&testStruct, -1)
c.Assert(cnt, qt.Equals, 15)
c.Assert(row, qt.Not(qt.IsNil))
var (
c0, c4, c5, c7, c11, c12, c13, c14 string
err error
c6 float64
)
if c0, err = row.GetCell(0).FormattedValue(); err != nil {
c.Error(err)
}
c1, e1 := row.GetCell(1).Int()
c2, e2 := row.GetCell(2).Float()
c3 := row.GetCell(3).Bool()
if c4, err = row.GetCell(4).FormattedValue(); err != nil {
c.Error(err)
}
if c5, err = row.GetCell(5).FormattedValue(); err != nil {
c.Error(err)
}
if c6, err = row.GetCell(6).Float(); err != nil {
c.Error(err)
}
if c7, err = row.GetCell(7).FormattedValue(); err != nil {
c.Error(err)
}
c8 := row.GetCell(8).Bool()
c9, e9 := row.GetCell(9).Int()
c10, e10 := row.GetCell(10).Float()
if c11, err = row.GetCell(11).FormattedValue(); err != nil {
c.Error(err)
}
if c12, err = row.GetCell(12).FormattedValue(); err != nil {
c.Error(err)
}
if c13, err = row.GetCell(13).FormattedValue(); err != nil {
c.Error(err)
}
if c14, err = row.GetCell(14).FormattedValue(); err != nil {
c.Error(err)
}
c.Assert(c0, qt.Equals, "Eric")
c.Assert(c1, qt.Equals, 20)
c.Assert(c2, qt.Equals, 3.94)
c.Assert(c3, qt.Equals, false)
c.Assert(c4, qt.Equals, "Stringer")
c.Assert(c5, qt.Equals, "Pointer to Stringer")
c.Assert(math.Floor(c6), qt.Equals, 25569.0)
c.Assert(c7, qt.Equals, `Smith`)
c.Assert(c8, qt.Equals, false)
c.Assert(c9, qt.Equals, 100)
c.Assert(c10, qt.Equals, 0.123)
c.Assert(c11, qt.Equals, ``)
c.Assert(c12, qt.Equals, ``)
c.Assert(c13, qt.Equals, ``)
c.Assert(c14, qt.Equals, ``)
c.Assert(e1, qt.Equals, nil)
c.Assert(e2, qt.Equals, nil)
c.Assert(e9, qt.Equals, nil)
c.Assert(e10, qt.Equals, nil)
})
// Test if we can write a slice to a row
csRunO(c, "TestWriteSlice", func(c *qt.C, option FileOption) {
var f *File
f = NewFile(option)
sheet, _ := f.AddSheet("Test1")
type strA []string
type intA []int
type floatA []float64
type boolA []bool
type interfaceA []interface{}
type stringerA []testStringerImpl
type stringerPtrA []*testStringerImpl
type nullStringA []sql.NullString
type nullBoolA []sql.NullBool
type nullFloatA []sql.NullFloat64
type nullIntA []sql.NullInt64
s0 := strA{"Eric"}
row0 := sheet.AddRow()
row0.WriteSlice(&s0, -1)
c.Assert(row0, qt.Not(qt.IsNil))
if val, err := row0.GetCell(0).FormattedValue(); err != nil {
c.Error(err)
} else {
c.Assert(val, qt.Equals, "Eric")
}
s1 := intA{10}
row1 := sheet.AddRow()
row1.WriteSlice(&s1, -1)
c.Assert(row1, qt.Not(qt.IsNil))
c1, e1 := row1.GetCell(0).Int()
c.Assert(e1, qt.Equals, nil)
c.Assert(c1, qt.Equals, 10)
s2 := floatA{3.94}
row2 := sheet.AddRow()
row2.WriteSlice(&s2, -1)
c.Assert(row2, qt.Not(qt.IsNil))
c2, e2 := row2.GetCell(0).Float()
c.Assert(e2, qt.Equals, nil)
c.Assert(c2, qt.Equals, 3.94)
s3 := boolA{true}
row3 := sheet.AddRow()
row3.WriteSlice(&s3, -1)
c.Assert(row3, qt.Not(qt.IsNil))
c3 := row3.GetCell(0).Bool()
c.Assert(c3, qt.Equals, true)
s4 := interfaceA{"Eric", 10, 3.94, true, time.Unix(0, 0)}
row4 := sheet.AddRow()
row4.WriteSlice(&s4, -1)
c.Assert(row4, qt.Not(qt.IsNil))
if val, err := row4.GetCell(0).FormattedValue(); err != nil {
c.Error(err)
} else {
c.Assert(val, qt.Equals, "Eric")
}
c41, e41 := row4.GetCell(1).Int()
c.Assert(e41, qt.Equals, nil)
c.Assert(c41, qt.Equals, 10)
c42, e42 := row4.GetCell(2).Float()
c.Assert(e42, qt.Equals, nil)
c.Assert(c42, qt.Equals, 3.94)
c43 := row4.GetCell(3).Bool()
c.Assert(c43, qt.Equals, true)
c44, e44 := row4.GetCell(4).Float()
c.Assert(e44, qt.Equals, nil)
c.Assert(math.Floor(c44), qt.Equals, 25569.0)
s5 := stringerA{testStringerImpl{"Stringer"}}
row5 := sheet.AddRow()
row5.WriteSlice(&s5, -1)
c.Assert(row5, qt.Not(qt.IsNil))
if val, err := row5.GetCell(0).FormattedValue(); err != nil {
c.Error(err)
} else {
c.Assert(val, qt.Equals, "Stringer")
}
s6 := stringerPtrA{&testStringerImpl{"Pointer to Stringer"}}
row6 := sheet.AddRow()
row6.WriteSlice(&s6, -1)
c.Assert(row6, qt.Not(qt.IsNil))
if val, err := row6.GetCell(0).FormattedValue(); err != nil {
c.Error(err)
} else {
c.Assert(val, qt.Equals, "Pointer to Stringer")
}
s7 := "expects -1 on non pointer to slice"
row7 := sheet.AddRow()
c.Assert(row7, qt.Not(qt.IsNil))
s7_ret := row7.WriteSlice(s7, -1)
c.Assert(s7_ret, qt.Equals, -1)
s7_ret = row7.WriteSlice(&s7, -1)
c.Assert(s7_ret, qt.Equals, -1)
s8 := nullStringA{sql.NullString{String: "Smith", Valid: true}, sql.NullString{String: `What ever`, Valid: false}}
row8 := sheet.AddRow()
row8.WriteSlice(&s8, -1)
c.Assert(row8, qt.Not(qt.IsNil))
if val, err := row8.GetCell(0).FormattedValue(); err != nil {
c.Error(err)
} else {
c.Assert(val, qt.Equals, "Smith")
}
// check second cell on empty string ""
if val2, err := row8.GetCell(1).FormattedValue(); err != nil {
c.Error(err)
} else {
c.Assert(val2, qt.Equals, "")
}
s9 := nullBoolA{sql.NullBool{Bool: false, Valid: true}, sql.NullBool{Bool: true, Valid: false}}
row9 := sheet.AddRow()
row9.WriteSlice(&s9, -1)
c.Assert(row9, qt.Not(qt.IsNil))
c9 := row9.GetCell(0).Bool()
c9Null := row9.GetCell(1).String()
c.Assert(c9, qt.Equals, false)
c.Assert(c9Null, qt.Equals, "")
s10 := nullIntA{sql.NullInt64{Int64: 100, Valid: true}, sql.NullInt64{Int64: 100, Valid: false}}
row10 := sheet.AddRow()
row10.WriteSlice(&s10, -1)
c.Assert(row10, qt.Not(qt.IsNil))
c10, e10 := row10.GetCell(0).Int()
c10Null, e10Null := row10.GetCell(1).FormattedValue()
c.Assert(e10, qt.Equals, nil)
c.Assert(c10, qt.Equals, 100)
c.Assert(e10Null, qt.Equals, nil)
c.Assert(c10Null, qt.Equals, "")
s11 := nullFloatA{sql.NullFloat64{Float64: 0.123, Valid: true}, sql.NullFloat64{Float64: 0.123, Valid: false}}
row11 := sheet.AddRow()
row11.WriteSlice(&s11, -1)
c.Assert(row11, qt.Not(qt.IsNil))
c11, e11 := row11.GetCell(0).Float()
c11Null, e11Null := row11.GetCell(1).FormattedValue()
c.Assert(e11, qt.Equals, nil)
c.Assert(c11, qt.Equals, 0.123)
c.Assert(e11Null, qt.Equals, nil)
c.Assert(c11Null, qt.Equals, "")
})
}
func TestBigWrite(t *testing.T) {
t.SkipNow()
c := qt.New(t)
p := profile.Start(profile.MemProfile)
testDir := c.Mkdir()
path := filepath.Join(testDir, "test.xlsx")
f := NewFile(UseDiskVCellStore)
s, err := f.AddSheet("big")
c.Assert(err, qt.Equals, nil)
for ri := 0; ri < 16384; ri++ {
r := s.AddRow()
for ci := 0; ci < 200; ci++ {
c := r.AddCell()
c.SetInt64(int64(ri * ci))
}
}
err = f.Save(path)
p.Stop()
c.Assert(err, qt.Equals, nil)
}
func TestWriteFileWithUnvisitedSheets(t *testing.T) {
c := qt.New(t)
// Issue 644 occured because we were checking the currentRow
// on sheets that hadn't been visitied and thus had no current
// row set.
csRunO(c, "Test for panic", func(c *qt.C, opt FileOption) {
fileToOpen := filepath.Join("testdocs", "testfile.xlsx")
// open an existing file
wbFile, err := OpenFile(fileToOpen, opt)
c.Assert(err, qt.IsNil)
sheetName := "Tabelle1"
sh, ok := wbFile.Sheet[sheetName]
c.Assert(ok, qt.Equals, true)
colNum, rowNum, _ := GetCoordsFromCellIDString("DD3000")
cell, err := sh.Cell(rowNum, colNum)
c.Assert(err, qt.IsNil)
cell.SetInt64(39491)
testDir := c.Mkdir()
path := filepath.Join(testDir, "test.xlsx")
// With issue 644 this line would panic
err = wbFile.Save(path)
c.Assert(err, qt.IsNil)
})
}