-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversion_test.go
397 lines (387 loc) · 12.3 KB
/
version_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
package godata
import (
"testing"
)
func TestImport(t *testing.T) {
version := CreateDataVersion(1, 0)
version = version.InsertDataAt(5, 1)
version = version.InsertDataAt(25, 2)
if version.GetDataAt(2) != 25 {
t.Error("Original has wrong data: ", version.GetDataAt(2))
}
exp, err := version.Export()
if err != nil {
t.Error("Error occured during export.")
}
iv, ierr := ImportDataVersion(exp)
if ierr != nil {
t.Error("Error occured during import.")
}
if iv.GetTimestamp() != 2 {
t.Error("Import has wrong timestamp")
}
// if iv.GetDataAt(2) != 25 {
// t.Error("Import has wrong data: ", iv.GetDataAt(2))
// }
}
func TestCreateDataVersion(t *testing.T) {
var version *DataVersionLinkedSortedList
if version != nil {
t.Error("New instance not empty.")
}
if version.GetData() != nil {
t.Error("First element of empty data version is not end.")
}
if version.GetDataAt(0) != nil {
t.Error("Element at timestamp 0 of empty data version is not end.")
}
version = version.InsertDataAt(5, 10)
if version == nil {
t.Error("Inserting first element failed.")
}
if version.GetData() == nil {
t.Error("First inserted element not found.")
}
if version.GetDataAt(10) == nil {
t.Error("First inserted element not found at timestamp 10.")
}
if version.GetDataAt(20) == nil {
t.Error("First inserted element not found at timestamp 20.")
}
if version.GetDataAt(0) != nil {
t.Error("First inserted element found at timestamp 0.")
}
if version.GetData() != 5 {
t.Error("Data of first element does not equal inserted data.")
}
version = version.InsertDataAt(20, 40)
if version.GetData() != 20 {
t.Error("Data of first element does not equal latest inserted data.")
}
if version.GetDataAt(40) != 20 {
t.Error("Data of element at timestamp 40 does not equal latest inserted data.")
}
if version.GetDataAt(50) != 20 {
t.Error("Data of element at timestamp 50 does not equal latest inserted data.")
}
if version.GetDataAt(30) != 5 {
t.Error("Data of element at timestamp 30 does not equal old inserted data.")
}
version = version.InsertDataAt(0, 5)
if version.GetDataAt(5) != 0 {
t.Error("Data of element at timestamp 5 does not equal latest inserted data.")
}
version = version.DeleteVersionsAt(5)
if version.GetDataAt(20) != 5 {
t.Error("Deletion of versions at timestamp 5 affected first newer version.")
}
if version.GetDataAt(50) != 20 {
t.Error("Deletion of versions at timestamp 5 affected latest version.")
}
version = version.DeleteVersionsAt(10)
if version.GetDataAt(20) == 5 {
t.Error("Deletion of versions at timestamp 10 didn't affect first version.")
}
if version.GetDataAt(50) != 20 {
t.Error("Deletion of versions at timestamp 10 affected latest version.")
}
version = version.DeleteVersionsAt(20)
if version.GetDataAt(50) != 20 {
t.Error("Deletion of versions at timestamp 20 affected latest version.")
}
version = version.DeleteVersionsAt(50)
if version.GetDataAt(50) == 20 {
t.Error("Deletion of versions at timestamp 50 didn't affect latest version.")
}
version = version.DeleteVersionsAt(5)
if version != nil {
t.Error("Data version not empty after deletion at timestamp 5.")
}
}
func TestDuplicateDoubleDataVersion(t *testing.T) {
var version *DataVersionLinkedSortedList
version = version.InsertDataAt(5, 10)
old_timestamp := version.GetTimestamp()
old_end := version.GetEnd()
if old_timestamp != old_end {
t.Error("End of single version does not equal timestamp.")
}
version = version.InsertDataAt(5, 40)
new_timestamp := version.GetTimestamp()
new_end := version.GetEnd()
if old_timestamp != new_timestamp {
t.Error("Data was duplicated.")
}
if old_end == new_end {
t.Error("End was not updated.")
}
if new_timestamp == new_end {
t.Error("End is not timestamp of new duplicate.")
}
version = version.DeleteVersionsAt(10)
if version.GetDataAt(20) == 5 {
t.Error("Deletion of versions at timestamp 10 didn't affect first version.")
}
if version.GetDataAt(50) != 5 {
t.Error("Deletion of versions at timestamp 10 affected latest version.")
}
version = version.DeleteVersionsAt(40)
if version != nil {
t.Error("Data version not empty after deletion at timestamp 10.")
}
}
func TestDuplicateSplitDoubleDataVersion(t *testing.T) {
var version *DataVersionLinkedSortedList
version = version.InsertDataAt(5, 10)
version = version.InsertDataAt(5, 40)
new_end := version.GetEnd()
version = version.InsertDataAt(10, 25)
if version.GetTimestamp() != new_end {
t.Error("Double version split resulted in wrong timestamp.")
}
if version.GetTimestamp() != version.GetEnd() {
t.Error("End does not equal timestamp.")
}
if version.GetDataAt(25) != 10 {
t.Error("New version in between has wrong value.")
}
if version.GetDataAt(20) != 5 {
t.Error("First version has wrong value.")
}
if version.GetDataAt(50) != 5 {
t.Error("Second partition of first version has wrong value.")
}
version = version.DeleteVersionsAt(10)
if version.GetDataAt(20) == 5 {
t.Error("Deletion of versions at timestamp 10 didn't affect first version.")
}
if version.GetDataAt(30) != 10 {
t.Error("Deletion of versions at timestamp 10 affected new version in between.")
}
if version.GetDataAt(50) != 5 {
t.Error("Deletion of versions at timestamp 10 affected second partition of first version.")
}
if version == nil {
t.Error("Data version empty after deletion at timestamp 10.")
}
version = version.DeleteVersionsAt(25)
if version == nil {
t.Error("Data version empty after deletion at timestamp 25.")
}
version = version.DeleteVersionsAt(40)
if version != nil {
t.Error("Data version not empty after deletion at timestamp 40.")
}
}
func TestDuplicateSplitTripleDataVersion(t *testing.T) {
var version *DataVersionLinkedSortedList
version = version.InsertDataAt(5, 10)
version = version.InsertDataAt(5, 30)
version = version.InsertDataAt(5, 40)
version = version.InsertDataAt(10, 25)
if version.GetTimestamp() != 30 {
t.Error("Triple version split resulted in wrong timestamp.")
}
if version.GetEnd() != 40 {
t.Error("End does not equal last timestamp.")
}
if version.GetDataAt(25) != 10 {
t.Error("New version in between has wrong value.")
}
if version.GetDataAt(20) != 5 {
t.Error("First version has wrong value.")
}
if version.GetDataAt(50) != 5 {
t.Error("Second partition of first version has wrong value.")
}
version = version.DeleteVersionsAt(10)
if version.GetDataAt(20) == 5 {
t.Error("Deletion of versions at timestamp 10 didn't affect first version.")
}
if version.GetDataAt(27) != 10 {
t.Error("Deletion of versions at timestamp 10 affected new version in between.")
}
if version.GetDataAt(50) != 5 {
t.Error("Deletion of versions at timestamp 10 affected second partition of first version.")
}
if version == nil {
t.Error("Data version empty after deletion at timestamp 10.")
}
version = version.DeleteVersionsAt(25)
if version == nil {
t.Error("Data version empty after deletion at timestamp 25.")
}
version = version.DeleteVersionsAt(40)
if version != nil {
t.Error("Data version not empty after deletion at timestamp 40.")
}
}
func TestDuplicateSplitSpecialTripleDataVersion(t *testing.T) {
var version *DataVersionLinkedSortedList
version = version.InsertDataAt(5, 10)
version = version.InsertDataAt(5, 20)
version = version.InsertDataAt(5, 40)
version = version.InsertDataAt(10, 25)
if version.GetTimestamp() != 40 {
t.Error("Triple version split resulted in wrong timestamp.")
}
if version.GetEnd() != 40 {
t.Error("End does not equal last timestamp.")
}
if version.GetDataAt(25) != 10 {
t.Error("New version in between has wrong value.")
}
if version.GetDataAt(20) != 5 {
t.Error("First version has wrong value.")
}
if version.GetDataAt(50) != 5 {
t.Error("Second partition of first version has wrong value.")
}
version = version.DeleteVersionsAt(10)
if version.GetDataAt(15) == 5 {
t.Error("Deletion of versions at timestamp 10 didn't affect first version.")
}
if version.GetDataAt(20) != 5 {
t.Error("Deletion of versions at timestamp 10 affected second part of first version.")
}
if version.GetDataAt(27) != 10 {
t.Error("Deletion of versions at timestamp 10 affected new version in between.")
}
if version.GetDataAt(50) != 5 {
t.Error("Deletion of versions at timestamp 10 affected second partition of first version.")
}
if version == nil {
t.Error("Data version empty after deletion at timestamp 10.")
}
version = version.DeleteVersionsAt(25)
if version == nil {
t.Error("Data version empty after deletion at timestamp 25.")
}
version = version.DeleteVersionsAt(40)
if version != nil {
t.Error("Data version not empty after deletion at timestamp 40.")
}
}
func TestDuplicateSplitQuadDataVersion(t *testing.T) {
var version *DataVersionLinkedSortedList
version = version.InsertDataAt(5, 10)
version = version.InsertDataAt(5, 20)
version = version.InsertDataAt(5, 30)
version = version.InsertDataAt(5, 40)
version = version.InsertDataAt(10, 25)
if version.GetTimestamp() != 30 {
t.Error("Triple version split resulted in wrong timestamp.")
}
if version.GetEnd() != 40 {
t.Error("End does not equal last timestamp.")
}
if version.GetDataAt(25) != 10 {
t.Error("New version in between has wrong value.")
}
if version.GetDataAt(20) != 5 {
t.Error("First version has wrong value.")
}
if version.GetDataAt(50) != 5 {
t.Error("Second partition of first version has wrong value.")
}
if len(version.Map()) != 5 {
t.Error("Map conversion invalid.")
}
if len(version.Array()) != 5 {
t.Error("Array conversion invalid.")
}
version = version.DeleteVersionsAt(10)
if version.GetDataAt(15) == 5 {
t.Error("Deletion of versions at timestamp 10 didn't affect first version.")
}
if version.GetDataAt(20) != 5 {
t.Error("Deletion of versions at timestamp 10 affected second part of first version.")
}
if version.GetDataAt(27) != 10 {
t.Error("Deletion of versions at timestamp 10 affected new version in between.")
}
if version.GetDataAt(50) != 5 {
t.Error("Deletion of versions at timestamp 10 affected second partition of first version.")
}
if version == nil {
t.Error("Data version empty after deletion at timestamp 10.")
}
version = version.DeleteVersionsAt(25)
if version == nil {
t.Error("Data version empty after deletion at timestamp 25.")
}
version = version.DeleteVersionsAt(40)
if version != nil {
t.Error("Data version not empty after deletion at timestamp 40.")
}
}
func TestVersionRange(t *testing.T) {
var version *DataVersionLinkedSortedList
i := 1
c := 100
for i <= c {
version = version.InsertDataAt(i, int64(i))
i++
}
res := version.Range(0, int64(c)).Map()
if len(res) != c {
t.Error("Full range does not contain all elements.", len(res))
}
res = version.Range(int64(c)/2, int64(c)).Map()
if len(res) != c/2 {
t.Error("Half range does not contain half elements.")
}
rres := version.Range(1, 0)
if rres != nil {
t.Error("Range accepts invalid range.")
}
res = version.Range(int64(c), int64(c)*2).Map()
if len(res) != 0 {
t.Error("Elements after range returned.")
}
res = version.Range(-int64(c), 0).Map()
if len(res) != 0 {
t.Error("Elements before range returned.")
}
// res = version.RangeInterval(0, int64(c), 5).Map()
// if len(res) != c/5 {
// t.Error("Full range with interval 5 does not contain fifth of all elements.")
// }
// rres := version.RangeInterval(1, 0, 5)
// if rres != nil {
// t.Error("Range accepts invalid range.")
// }
// res = version.RangeInterval(int64(c), int64(c)*2, 5).Map()
// if len(res) != 0 {
// t.Error("Elements after range returned.")
// }
// res = version.RangeInterval(-int64(c), 0, 5).Map()
// if len(res) != 0 {
// t.Error("Elements before range returned.")
// }
// rres = version.RangeInterval(0, int64(c), 0)
// if rres != nil {
// t.Error("Interval accept 0 as interval.")
// }
// rres = version.RangeInterval(0, int64(c), -1)
// if rres != nil {
// t.Error("Interval accepts negative interval.")
// }
}
func TestVersionRangeExtra(t *testing.T) {
var version *DataVersionLinkedSortedList
version = version.InsertDataAt(5, 10)
version = version.InsertDataAt(5, 15)
version = version.InsertDataAt(5, 20)
version = version.InsertDataAt(5, 30)
version = version.InsertDataAt(5, 35)
version = version.InsertDataAt(5, 40)
version = version.InsertDataAt(10, 25)
for i := 5; i <= 40; i = i + 5 {
for j := i; j <= 40; j = j + 5 {
if len(version.Range(int64(i), int64(j)).Array()) != (j/5)-(i/5) {
t.Error("Range invalid.")
}
}
}
}