-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile_test.go
208 lines (183 loc) · 4.5 KB
/
profile_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
package profile
import (
"os"
"strings"
"testing"
)
// TestGetStringValue test
func TestGetStringValue(t *testing.T) {
value := GetStringValue("test.data.string")
if value != "testValue" {
t.Fatal("wrong value retured")
}
}
// TestGetIntValue test
func TestGetIntValue(t *testing.T) {
value := GetIntValue("test.data.int")
if value != 123 {
t.Fatal("wrong value retured")
}
}
// TestGetFloatValue test
func TestGetFloatValue(t *testing.T) {
value := GetFloatValue("test.data.float")
if value != 3.6 {
t.Fatal("wrong value retured")
}
}
// TestGetArray test
func TestGetArray(t *testing.T) {
values := GetArrayValues("test.array")
if len(values) != 3 {
t.Fatal("wrong value retured")
}
for _, value := range values {
if !strings.HasPrefix(value.(string), "value") {
t.Fatal("wrong value returned - ")
}
}
}
// TestGetBoolean test
func TestGetBoolean(t *testing.T) {
value := GetBooleanValue("test.data.boolean")
if !value {
t.Fatal("wrong value retured")
}
}
// TestGetNotExistingStringValue test
func TestGetNotExistingStringValue(t *testing.T) {
value := GetStringValue("not.exists")
if len(value) > 0 {
t.Fatal("wrong value retured")
}
}
// TestGetNotExistingIntValue test
func TestGetNotExistingIntValue(t *testing.T) {
value := GetIntValue("not.exists")
if value != 0 {
t.Fatal("wrong value retured")
}
}
// TestGetNotExistingFloatValue test
func TestGetNotExistingFloatValue(t *testing.T) {
value := GetFloatValue("not.exists")
if value != 0.0 {
t.Fatal("wrong value retured")
}
}
// TestGetotExistingArray test
func TestGetNotExistingArray(t *testing.T) {
value := GetArrayValues("not.exists")
if len(value) != 0 {
t.Fatal("wrong value retured")
}
}
// TestGetNotExistingBoolean test
func TestGetNotExistingBoolean(t *testing.T) {
value := GetBooleanValue("not.exists")
if value {
t.Fatal("wrong value retured")
}
}
// TestGetEmptyString test
func TestGetEmptyString(t *testing.T) {
value := GetStringValue("test.data.emptyString")
if len(value) > 0 {
t.Fatal("wrong value retured")
}
}
// TestGetDefaultValueWithString test
func TestGetDefaultValueWithString(t *testing.T) {
value := GetValueWithDefault("not.exists", "defaultValue")
if value != "defaultValue" {
t.Fatalf("wrong value retured")
}
}
// TestGetDefaultValueWithString test
func TestGetDefaultValueWithEmptyString(t *testing.T) {
value := GetValueWithDefault("test.data.emptyString", "defaultValue")
if value != "defaultValue" {
t.Fatalf("wrong value retured")
}
}
// TestGetDefaultValueWithString test
func TestGetDefaultValueWithUnkownType(t *testing.T) {
value := GetValueWithDefault("test.data.emptyString", true)
if !value.(bool) {
t.Fatalf("wrong value retured")
}
}
// TestGetDefaultValueWithInt test
func TestGetDefaultValueWithInt(t *testing.T) {
value := GetValueWithDefault("not.exists", 5)
if value != 5 {
t.Fatalf("wrong value retured")
}
}
// TestGetDefaultValueWithFloat test
func TestGetDefaultValueWithFloat(t *testing.T) {
value := GetValueWithDefault("not.exists", 4.5)
if value != 4.5 {
t.Fatalf("wrong value retured")
}
}
// TestGetPath test
func TestGetPath(t *testing.T) {
value := GetStringValue("test.data.path")
if value != "/etc/hosts" {
t.Fatalf("wrong value retured")
}
}
// TestGetURL test
func TestGetURL(t *testing.T) {
value := GetStringValue("test.data.url")
if value != "http://127.0.0.1:8080/test" {
t.Fatalf("wrong value retured")
}
}
// TestClearData test
func TestClearData(t *testing.T) {
ClearData()
GetStringValue("test.data.string")
}
// TestSetLogLevel test
func TestSetLogLevel(t *testing.T) {
SetLogLevel("debug")
SetLogLevel("info")
SetLogLevel("warn")
SetLogLevel("error")
ClearData()
GetStringValue("not.exists")
}
// TestUseDifferentProfile test
func TestUseDifferentProfile(t *testing.T) {
defaultProfile := GetStringValue("profile.name")
if defaultProfile != "default" {
t.Fatal("start with wrong profile")
}
os.Setenv("PROFILE", "dev")
ClearData()
devProfile := GetStringValue("profile.name")
if devProfile != "dev" {
t.Fatal("profile name not changed")
}
os.Unsetenv("PROFILE")
}
// TestUseNotExistingProfile test
func TestUseNotExistingProfile(t *testing.T) {
os.Setenv("PROFILE", "qs")
ClearData()
value := GetStringValue("profile.name")
if len(value) > 0 {
t.Fatal("should not return a value")
}
}
// TestUseNotExistingProfile test
func TestUsePathVariable(t *testing.T) {
os.Setenv("CONFIG_FOLDER_PATH", "./")
ClearData()
value := GetStringValue("profile.name")
if len(value) < 0 {
t.Fatal("should not return a value")
}
}