-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig_test.go
More file actions
284 lines (260 loc) · 6 KB
/
config_test.go
File metadata and controls
284 lines (260 loc) · 6 KB
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
/*
* Copyright 2022-2026 Thorsten A. Knieling
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
*/
package services
import (
"fmt"
"os"
"testing"
"github.com/stretchr/testify/assert"
"gopkg.in/yaml.v3"
)
var testStoredXMLData = `<?xml version="1.0" encoding="UTF-8"?>
<ConfigTest>
<X>
<Kind>0</Kind>
<Style>0</Style>
<Tag></Tag>
<Value></Value>
<Anchor></Anchor>
<HeadComment></HeadComment>
<LineComment></LineComment>
<FootComment></FootComment>
<Line>0</Line>
<Column>0</Column>
</X>
<Ax>abc</Ax>
<Bx>def</Bx>
<Cx>
<Xsub>1</Xsub>
<Ysub>2</Ysub>
<SAsub>aa</SAsub>
<SAsub>bb</SAsub>
</Cx>
<Dx>
<Xsub>2</Xsub>
<Ysub>3</Ysub>
<SAsub>ff</SAsub>
<SAsub>gg</SAsub>
<CTVsub>
<Enabled>true</Enabled>
<Dv>1</Dv>
<Ev>2</Ev>
</CTVsub>
</Dx>
</ConfigTest>`
var testStoredYAMLData = `# Configureation file
x: # LINE
# XYZ
# ABC
ax: abc
bx: def
cx:
xsub: 1
ysub: 2
sasub:
- aa
- bb
machine: null
dx:
xsub: 2
ysub: 3
sasub:
- ff
- gg
machine:
enabled: true
dv: 1
ev: 2
`
var testStoredJSONData = `{
"X": {
"Kind": 8,
"Style": 0,
"Tag": "",
"Value": "",
"Anchor": "",
"Alias": null,
"Content": null,
"HeadComment": "ABC",
"LineComment": "LINE",
"FootComment": "XYZ",
"Line": 0,
"Column": 0
},
"Ax": "abc",
"Bx": "def",
"Cx": {
"Xsub": 1,
"Ysub": 2,
"SAsub": [
"aa",
"bb"
],
"CTVsub": null
},
"Dx": {
"Xsub": 2,
"Ysub": 3,
"SAsub": [
"ff",
"gg"
],
"CTVsub": {
"Enabled": true,
"Dv": 1,
"Ev": 2
}
}
}
`
// Loader config loader structure calling static configurations
type Loader struct {
}
var loader = &Loader{}
type ConfigTest struct {
X yaml.Node
Ax string
Bx string
Cx *ConfigTestSub
Dx *ConfigTestSub
}
type ConfigTestSub struct {
Xsub int
// description: |
// Provides machine specific configuration options.
Ysub int64
SAsub []string
// description: |
// Provides cluster specific configuration options.
CTVsub *ConfigTestValue `yaml:"machine"`
}
type ConfigTestValue struct {
Enabled bool `yaml:"enabled" head_comment:"Enable or disable." line_comment:"disabled by default"`
Dv int
Ev int64
}
var config = &ConfigTest{}
// Logging logging configuration
func (loader *Loader) Logging(v interface{}) *Logging {
return nil
}
// SetLogging set logging configuration
func (loader *Loader) SetLogging(l *Logging) {
}
// Default empty default config
func (loader *Loader) Default() interface{} {
return config
}
// Current current active config
func (loader *Loader) Current() interface{} {
return config
}
// IsServer indicate interface to be no server
func (loader *Loader) IsServer() bool {
return false
}
// Loaded executed after data load
func (loader *Loader) Loaded(nv interface{}) error {
return nil
}
func TestConfigEvaluateStoreType(t *testing.T) {
assert.Equal(t, XMLStoreType, evaluateConfigStore("test.xml"))
assert.Equal(t, YAMLStoreType, evaluateConfigStore("test.yaml"))
assert.Equal(t, JSONStoreType, evaluateConfigStore("test.json"))
}
func TestConfigXML(t *testing.T) {
config = &ConfigTest{Ax: "abc", Bx: "def",
Cx: &ConfigTestSub{1, 2, []string{"aa", "bb"}, nil},
Dx: &ConfigTestSub{2, 3, []string{"ff", "gg"}, &ConfigTestValue{}},
}
storeFileName := fmt.Sprintf("/tmp/test-%d.xml", os.Getpid())
config.Dx.CTVsub = &ConfigTestValue{true, 1, 2}
err := StoreConfig(storeFileName, loader)
if !assert.NoError(t, err) {
return
}
data, err := os.ReadFile(storeFileName)
if !assert.NoError(t, err) {
return
}
assert.Equal(t, testStoredXMLData, string(data))
config = &ConfigTest{}
err = LoadConfig(storeFileName, loader, false)
if !assert.NoError(t, err) {
return
}
assert.Equal(t, "abc", config.Ax)
assert.Equal(t, 1, config.Cx.Xsub)
assert.Equal(t, 1, config.Dx.CTVsub.Dv)
assert.Equal(t, int64(2), config.Dx.CTVsub.Ev)
}
func TestConfigYAML(t *testing.T) {
config = &ConfigTest{Ax: "abc", Bx: "def",
Cx: &ConfigTestSub{1, 2, []string{"aa", "bb"}, nil},
Dx: &ConfigTestSub{2, 3, []string{"ff", "gg"}, &ConfigTestValue{}},
}
storeFileName := fmt.Sprintf("/tmp/test-%d.yaml", os.Getpid())
config.X.Kind = yaml.ScalarNode
// config.X.Value = "AA"
config.X.HeadComment = "ABC"
config.X.LineComment = "LINE"
config.X.FootComment = "XYZ"
config.Dx.CTVsub = &ConfigTestValue{true, 1, 2}
err := StoreConfig(storeFileName, loader)
if !assert.NoError(t, err) {
return
}
data, err := os.ReadFile(storeFileName)
if !assert.NoError(t, err) {
return
}
assert.Equal(t, testStoredYAMLData, string(data))
config = &ConfigTest{}
err = LoadConfig(storeFileName, loader, false)
if !assert.NoError(t, err) {
return
}
assert.Equal(t, "abc", config.Ax)
assert.Equal(t, 1, config.Cx.Xsub)
assert.Equal(t, 1, config.Dx.CTVsub.Dv)
assert.Equal(t, int64(2), config.Dx.CTVsub.Ev)
}
func TestConfigJSON(t *testing.T) {
config = &ConfigTest{Ax: "abc", Bx: "def",
Cx: &ConfigTestSub{1, 2, []string{"aa", "bb"}, nil},
Dx: &ConfigTestSub{2, 3, []string{"ff", "gg"}, &ConfigTestValue{}},
}
storeFileName := fmt.Sprintf("/tmp/test-%d.json", os.Getpid())
config.X.Kind = yaml.ScalarNode
// config.X.Value = "AA"
config.X.HeadComment = "ABC"
config.X.LineComment = "LINE"
config.X.FootComment = "XYZ"
config.Dx.CTVsub = &ConfigTestValue{true, 1, 2}
err := StoreConfig(storeFileName, loader)
if !assert.NoError(t, err) {
return
}
data, err := os.ReadFile(storeFileName)
if !assert.NoError(t, err) {
return
}
assert.Equal(t, testStoredJSONData, string(data))
config = &ConfigTest{}
err = LoadConfig(storeFileName, loader, false)
if !assert.NoError(t, err) {
return
}
assert.Equal(t, "abc", config.Ax)
assert.Equal(t, 1, config.Cx.Xsub)
assert.Equal(t, 1, config.Dx.CTVsub.Dv)
assert.Equal(t, int64(2), config.Dx.CTVsub.Ev)
}