-
Notifications
You must be signed in to change notification settings - Fork 0
/
synonyms_test.go
229 lines (200 loc) · 4.44 KB
/
synonyms_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
package env
import (
"fmt"
"math/rand"
"os"
"strings"
"testing"
)
// TestGet tests Get function.
func TestGet(t *testing.T) {
tests := []struct {
key string
value string
}{
{"KEY_0", "Abc"},
{"KEY_1", "Def"},
}
// Call methods from os module to set test
// variables to the environment.
os.Clearenv()
for _, test := range tests {
os.Setenv(test.key, test.value)
}
// Test the method.
for _, test := range tests {
if v := Get(test.key); v != test.value {
t.Errorf("expected `%s` but `%s`", test.value, v)
}
}
}
// TestSet tests Set function.
func TestSet(t *testing.T) {
tests := []struct {
key string
value string
}{
{"KEY_0", "Abc"},
{"KEY_1", "Def"},
}
// Test the method.
os.Clearenv()
for _, test := range tests {
if err := Set(test.key, test.value); err != nil {
t.Error(err)
}
}
// Call methods from os module to get test
// variables from the environment.
for _, test := range tests {
if v := os.Getenv(test.key); v != test.value {
t.Errorf("expected `%s` but `%s`", test.value, v)
}
}
}
// TestUnset tests Unset function.
func TestUnset(t *testing.T) {
tests := []struct {
key string
value string
}{
{"KEY_0", "Abc"},
{"KEY_1", "Def"},
}
// Set test data.
os.Clearenv()
for _, test := range tests {
if err := os.Setenv(test.key, test.value); err != nil {
t.Error(err)
}
if v := os.Getenv(test.key); v != test.value {
t.Errorf("expected `%s` but `%s`", test.value, v)
}
}
// Erase the data and check the function.
for _, test := range tests {
if err := Unset(test.key); err != nil {
t.Error(err)
}
if v := os.Getenv(test.key); v != "" {
t.Errorf("must be cleaned but `%s`", v)
}
}
}
// TestClear tests Clear function.
func TestClear(t *testing.T) {
tests := []struct {
key string
value string
}{
{"KEY_0", "Abc"},
{"KEY_1", "Def"},
}
// Set test data.
os.Clearenv()
for _, test := range tests {
if err := os.Setenv(test.key, test.value); err != nil {
t.Error(err)
}
if v := os.Getenv(test.key); v != test.value {
t.Errorf("expected `%s` but `%s`", test.value, v)
}
}
// Erase the data and check the function.
Clear()
for _, test := range tests {
if v := os.Getenv(test.key); v != "" {
t.Errorf("must be cleaned but `%s`", v)
}
}
}
// TestEnviron tests Environ function.
func TestEnviron(t *testing.T) {
tests := map[string]string{
"KEY_0": "Abc",
"KEY_1": "Def",
}
// Set test data.
os.Clearenv()
for key, value := range tests {
if err := os.Setenv(key, value); err != nil {
t.Error(err)
}
}
// Test function.
for i, str := range Environ() {
tmp := strings.Split(str, "=")
key, value := tmp[0], tmp[1]
if v, ok := tests[key]; v != value || !ok {
if !ok {
t.Errorf("test %v. extra key`%v`", i, key)
} else {
t.Errorf("test %v. expected `%v` but `%v`", i, v, value)
}
}
}
}
// TestExpand tests Expand function.
func TestExpand(t *testing.T) {
tests := map[string]string{
"KEY_0": "7",
"KEY_1": "5",
"KEY_2": "3",
}
// Set test data.
os.Clearenv()
for key, value := range tests {
if err := os.Setenv(key, value); err != nil {
t.Error(err)
}
}
// Test the replacement of keys with their data.
for i := 0; i < 10; i++ {
var tpl string
keyA := fmt.Sprintf("KEY_%d", rand.Intn(len(tests)))
keyB := fmt.Sprintf("KEY_%d", rand.Intn(len(tests)))
keyC := fmt.Sprintf("KEY_%d", rand.Intn(len(tests)))
exp := fmt.Sprintf("%s%s%s", tests[keyA], tests[keyB], tests[keyC])
for _, key := range []string{keyA, keyB, keyC} {
if rand.Intn(2) != 0 {
tpl += fmt.Sprintf("${%s}", key)
} else {
tpl += fmt.Sprintf("$%s", key)
}
}
if v := Expand(tpl); v != exp {
t.Errorf("for keys `%s`. expected `%s` but `%s`", tpl, exp, v)
}
}
}
// TestLookup tests Lookup function.
func TestLookup(t *testing.T) {
tests := []struct {
key string
value string
}{
{"KEY_0", "Abc"},
{"KEY_1", "Def"},
}
// Call methods from os module to set test
// variables to the environment.
os.Clearenv()
for _, test := range tests {
os.Setenv(test.key, test.value)
}
// Test the method.
for _, test := range tests {
if v, ok := Lookup(test.key); v != test.value || !ok {
if !ok {
t.Errorf("expected `%s` but the key is not set", test.value)
} else {
t.Errorf("expected `%s` but `%s`", test.value, v)
}
}
}
for _, key := range []string{"KEY_A", "KEY_B", "KEY_C"} {
if _, ok := Lookup(key); ok {
t.Errorf("the `%s` key must be empty", key)
}
}
}