-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuniqseq_test.go
86 lines (79 loc) · 2.09 KB
/
uniqseq_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
//uniqseq_test.go
package uniqseq
import (
"testing"
"time"
)
func TestCreateAndInit(t *testing.T) {
a := Create()
a.Init()
if a.counter != -1 {
t.Error("Init should have set the counter to -1")
}
if len(a.jumblerSet) != 0 {
t.Error("Jumble character set and a string when the default value should not set this")
}
x := a.Encode(918756211)
t.Errorf("%s", x)
a.Jumbler = true
a.Init()
if len(a.jumblerSet) != len(a.CharacterSet) {
t.Error("Jumble set and character set should be the same length")
}
}
func TestEncode(t *testing.T) {
a := Create()
a.CharacterSet = "ABCDEF"
a.BlankFillChar = ""
if a.Encode(5) != "F" {
t.Error("Expecting F but got ", a.Encode(5))
}
a.BlankFillChar = "A"
if a.Encode(0) != "AAAA" {
t.Error("Expecting AAAA but got ", a.Encode(0))
}
if a.Encode(6) != "AABA" {
t.Error("Expecting AA but got ", a.Encode(6))
}
}
func TestNext(t *testing.T) {
a := Create()
a.CharacterSet = "abcd"
a.BlankFillChar = ""
a.Init()
c, d := a.Next()
if c != "a" || d != 0 {
t.Error("Expect the first character in the sequence 'a' with a number of 0 and got ", c, d)
}
c, d = a.Next()
if c != "b" || d != 1 {
t.Error("Expect the first character in the sequence 'b' with a number of 1 and got ", c, d)
}
c, d = a.Next()
if c != "c" || d != 2 {
t.Error("Expect the first character in the sequence 'c' with a number of 2 and got ", c, d)
}
c, d = a.Next()
if c != "d" || d != 3 {
t.Error("Expect the first character in the sequence 'd' with a number of 3 and got ", c, d)
}
c, d = a.Next()
if c != "ba" || d != 4 {
t.Error("Expect the first character in the sequence 'ba' with a number of 4 and got ", c, d)
}
//testing concurreny by starting 10 go subroutines
a.Init()
for i := 0; i < 10; i++ {
go func() {
for x := 0; x < 5; x++ {
a.Next()
}
}()
}
//wait for all go routines to finish so 5 seconds should be more then enough.
time.Sleep(5 * time.Second)
//10 go subroutines * 5 calls for each to Next() means 50, but minus 1 as the counter starts from 0
if a.counter != 49 {
t.Error("Expecting 49 on the counter but got", a.counter)
}
}