-
Notifications
You must be signed in to change notification settings - Fork 8
/
replace_test.go
79 lines (69 loc) · 1.54 KB
/
replace_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
package sortedmap
import (
"testing"
"github.com/umpc/go-sortedmap/asc"
)
func TestReplace(t *testing.T) {
records := randRecords(3)
sm := New(0, asc.Time)
for i := 0; i < 5; i++ {
for _, rec := range records {
sm.Replace(rec.Key, rec.Val)
}
}
iterCh, err := sm.IterCh()
if err != nil {
t.Fatal(err)
} else {
defer iterCh.Close()
if err := verifyRecords(iterCh.Records(), false); err != nil {
t.Fatal(err)
}
}
}
func TestBatchReplace(t *testing.T) {
if _, _, err := newSortedMapFromRandRecords(1000); err != nil {
t.Fatal(err)
}
}
func TestBatchReplaceMapWithInterfaceKeys(t *testing.T) {
sm, records, err := newSortedMapFromRandRecords(1000)
if err != nil {
t.Fatal(err)
}
i := 0
m := make(map[interface{}]interface{}, len(records))
for _, rec := range records {
m[rec.Key] = rec.Val
i++
}
if i == 0 {
t.Fatal("Records were not copied to the map.")
}
if err := sm.BatchReplaceMap(m); err != nil {
t.Fatal(err)
}
}
func TestBatchReplaceMapWithStringKeys(t *testing.T) {
sm, records, err := newSortedMapFromRandRecords(1000)
if err != nil {
t.Fatal(err)
}
i := 0
m := make(map[string]interface{}, len(records))
for _, rec := range records {
m[rec.Key.(string)] = rec.Val
i++
}
if i == 0 {
t.Fatal("Records were not copied to the map.")
}
if err := sm.BatchReplaceMap(m); err != nil {
t.Fatal(err)
}
}
func TestBatchReplaceMapWithNilType(t *testing.T) {
if err := New(0, asc.Time).BatchReplaceMap(nil); err == nil {
t.Fatal("a nil type was allowed where a supported map type is required.")
}
}