forked from TykTechnologies/tyk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeybuilder_test.go
110 lines (83 loc) · 2.09 KB
/
keybuilder_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
package regexp
import (
"fmt"
"testing"
)
var tStr1 = "aαa⏰𐌈"
var tStr2 = "bβb⏳𐌏"
func TestKeyImmutabilityReset(t *testing.T) {
kb := keyBuilder{}
kb.AppendString(tStr1)
k := kb.Key()
kb.Reset()
if k != tStr1 {
t.Errorf("key should remains %v, got %v", tStr1, k)
}
}
func TestKeyImmutabilityChangeBuilderState(t *testing.T) {
kb := keyBuilder{}
kb.AppendString(tStr1)
k := kb.Key()
kb.AppendString(tStr2)
if k != tStr1 {
t.Errorf("key should remains %v, got %v", tStr1, k)
}
}
func TestAppendString(t *testing.T) {
kb := keyBuilder{}
kb.AppendString(tStr1).AppendString(tStr2)
nsKey := kb.UnsafeKey()
key := kb.Key()
exp := tStr1 + tStr2
if key != exp || nsKey != exp {
t.Errorf("expect to got %v, got %v and %v", exp, key, nsKey)
}
}
func TestAppendBytes(t *testing.T) {
kb := keyBuilder{}
kb.AppendString(tStr1).AppendBytes([]byte(tStr2))
nsKey := kb.UnsafeKey()
key := kb.Key()
exp := tStr1 + tStr2
if key != exp || nsKey != exp {
t.Errorf("expect to got %v, got %v and %v", exp, key, nsKey)
}
}
func TestAppendInt(t *testing.T) {
kb := keyBuilder{}
kb.AppendString(tStr1).AppendInt(123)
nsKey := kb.UnsafeKey()
key := kb.Key()
exp := tStr1 + "123"
if key != exp || nsKey != exp {
t.Errorf("expect to got %v, got %v and %v", exp, key, nsKey)
}
}
func TestWrite(t *testing.T) {
kb := keyBuilder{}
b := []byte(tStr2)
n, err := kb.AppendString(tStr1).Write(b)
if err != nil {
t.Errorf("Write should always pass without error, got %v", err)
}
if n != len(b) {
t.Errorf("Write should always return length of byte slice argument. Expected %v, got %v", len(b), n)
}
nsKey := kb.UnsafeKey()
key := kb.Key()
exp := tStr1 + tStr2
if key != exp || nsKey != exp {
t.Errorf("expect to got %v, got %v and %v", exp, key, nsKey)
}
}
func TestAppendf(t *testing.T) {
kb := keyBuilder{}
f := func(s string) string { return s }
kb.AppendString(tStr1).Appendf("%p", f)
nsKey := kb.UnsafeKey()
key := kb.Key()
exp := tStr1 + fmt.Sprintf("%p", f)
if key != exp || nsKey != exp {
t.Errorf("expect to got %v, got %v and %v", exp, key, nsKey)
}
}