-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathid_generator_string_test.go
200 lines (165 loc) · 3.11 KB
/
id_generator_string_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
package luigi
import (
"sync"
"time"
"testing"
)
func Test_GeneratorStringIsUnique(c *testing.T) {
var (
uid string
uids = make(map[string]struct{})
err error
)
uidGenerator, errs := NewUIDGenerator()
if len(errs) != 0 {
panic(errs)
}
for n := 0; n < 1000000; n++ {
uid, err = uidGenerator.GenerateString()
if err != nil {
panic(err)
}
if _, ok := uids[uid]; ok {
c.Logf("Got non-unique ID: %q\n", uid)
c.Fail()
} else {
uids[uid] = struct{}{}
}
}
}
func Test_GeneratorStringChannelIsUnique(c *testing.T) {
const iterationsCount = 1000000
var (
uid string
uids = make(chan string, iterationsCount)
uidsMap = make(map[string]struct{})
err error
)
uidGenerator, errs := NewUIDGenerator()
if len(errs) != 0 {
panic(errs)
}
errsCh := uidGenerator.FillChannelString(uids)
for n := 0; n < iterationsCount; n++ {
select {
case uid = <-uids:
//Nothing to do
case err = <-errsCh:
panic(err)
}
if _, ok := uidsMap[uid]; ok {
c.Logf("Got non-unique ID: %q\n", uid)
c.Fail()
} else {
uidsMap[uid] = struct{}{}
}
}
}
func Test_GeneratorStringSliceIsUnique(c *testing.T) {
const (
iterationsCount = 10000
repeat = 5
)
var (
uid string
uidsMap = make(map[string]struct{})
)
for i := 0; i < repeat; i++ {
uidGenerator, errs := NewUIDGenerator()
if len(errs) != 0 {
panic(errs)
}
uids, err := uidGenerator.GenerateSliceString(iterationsCount)
if err != nil {
panic(err)
}
for n := 0; n < iterationsCount; n++ {
uid = uids[n]
if _, ok := uidsMap[uid]; ok {
c.Logf("Got non-unique ID: %q\n", uid)
c.Fail()
} else {
uidsMap[uid] = struct{}{}
}
}
}
}
func BenchmarkSet_GenerateStringUniqueID(b *testing.B) {
var (
uid string
err error
)
uidGenerator, errs := NewUIDGenerator()
if len(errs) != 0 {
panic(errs)
}
b.ResetTimer()
for n := 0; n < b.N; n++ {
uid, err = uidGenerator.GenerateString()
if err != nil {
panic(err)
}
_ = uid
}
}
func BenchmarkSet_GenerateStringUniqueIDConcurrent(b *testing.B) {
var (
uid string
err error
)
uidGenerator, errs := NewUIDGenerator()
if len(errs) != 0 {
panic(errs)
}
wg := sync.WaitGroup{}
wg.Add(b.N)
b.ResetTimer()
for n := 0; n < b.N; n++ {
go func() {
uid, err = uidGenerator.GenerateString()
if err != nil {
panic(err)
}
_ = uid
wg.Done()
}()
}
wg.Wait()
}
func BenchmarkSet_GenerateStringUniqueIDFillChannel(b *testing.B) {
var (
uid string
err error
ch = make(chan string, 10000000)
)
uidGenerator, errs := NewUIDGenerator()
if len(errs) != 0 {
panic(errs)
}
errChan := uidGenerator.FillChannelString(ch)
time.Sleep(1 * time.Second)
b.ResetTimer()
for n := 0; n < b.N; n++ {
uid = <-ch
_ = uid
}
b.StopTimer()
close(ch)
for err = range errChan {
panic(err)
}
}
func BenchmarkSet_GenerateStringUniqueIDGetSlice(b *testing.B) {
var err error
uidGenerator, errs := NewUIDGenerator()
if len(errs) != 0 {
panic(errs)
}
b.ResetTimer()
uids, err := uidGenerator.GenerateSliceString(uint32(b.N))
if err != nil {
panic(err)
}
b.StopTimer()
_ = uids
}