forked from apecloud/kubeblocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxml_config_test.go
77 lines (60 loc) · 2.75 KB
/
xml_config_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
/*
Copyright (C) 2022-2023 ApeCloud Co., Ltd
This file is part of KubeBlocks project
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package unstructured
import (
"testing"
"github.com/stretchr/testify/assert"
appsv1alpha1 "github.com/apecloud/kubeblocks/apis/apps/v1alpha1"
)
func TestXMLFormat(t *testing.T) {
const xmlContext = `
<!-- Settings profiles -->
<profiles>
<!-- Default settings -->
<default>
<!-- The maximum number of threads when running a single query. -->
<max_threads>8</max_threads>
</default>
<!-- Settings for quries from the user interface -->
<web>
<max_execution_time>600</max_execution_time>
<min_execution_speed>1000000</min_execution_speed>
<timeout_before_checking_execution_speed>15</timeout_before_checking_execution_speed>
<readonly>1</readonly>
</web>
</profiles>
`
xmlConfigObj, err := LoadConfig("xml_test", xmlContext, appsv1alpha1.XML)
assert.Nil(t, err)
assert.EqualValues(t, xmlConfigObj.Get("profiles.default.max_threads"), 8)
assert.EqualValues(t, xmlConfigObj.Get("profiles.web.min_execution_speed"), 1000000)
assert.EqualValues(t, xmlConfigObj.Get("profiles.web.max_threads"), nil)
v, _ := xmlConfigObj.GetString("profiles.default.max_threads")
assert.EqualValues(t, v, "8")
v, _ = xmlConfigObj.GetString("profiles.web.min_execution_speed")
assert.EqualValues(t, v, "1000000")
_, err = xmlConfigObj.GetString("profiles.web.xxxx")
assert.Nil(t, err)
dumpContext, err := xmlConfigObj.Marshal()
assert.Nil(t, err)
newObj, err := LoadConfig("xml_test", dumpContext, appsv1alpha1.XML)
assert.Nil(t, err)
assert.EqualValues(t, newObj.GetAllParameters(), xmlConfigObj.GetAllParameters())
assert.Nil(t, xmlConfigObj.Update("profiles.web.timeout_before_checking_execution_speed", 200))
assert.EqualValues(t, xmlConfigObj.Get("profiles.web.timeout_before_checking_execution_speed"), 200)
assert.Nil(t, xmlConfigObj.RemoveKey("profiles.web.timeout_before_checking_execution_speed.sksds"))
assert.Nil(t, xmlConfigObj.RemoveKey("profiles.web.timeout_before_checking_execution_speed"))
assert.EqualValues(t, xmlConfigObj.Get("profiles.web.timeout_before_checking_execution_speed"), nil)
}