-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample_test.go
More file actions
110 lines (89 loc) · 2.24 KB
/
example_test.go
File metadata and controls
110 lines (89 loc) · 2.24 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
/*
* Copyright 2021 Wang Min Xiang
*
* 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
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package configures_test
import (
"fmt"
"github.com/aacfactory/configures"
"github.com/aacfactory/json"
"path/filepath"
"testing"
"time"
)
func Test_JsonConfig(t *testing.T) {
path, err := filepath.Abs("./_example/json")
if err != nil {
t.Error(err)
return
}
t.Log("config dir", path)
store := configures.NewFileStore(path, "app", '.')
retriever, retrieverErr := configures.NewRetriever(configures.RetrieverOption{
Active: "dev",
Format: "JSON",
Store: store,
})
if retrieverErr != nil {
t.Error(retrieverErr)
return
}
config, configErr := retriever.Get()
if configErr != nil {
t.Error(configErr)
return
}
raw := json.RawMessage{}
_ = config.As(&raw)
t.Log(string(raw))
node, _ := config.Node("http")
t.Log(string(node.Raw()))
http := Http{}
has, getErr := config.Get("http", &http)
t.Log(fmt.Sprintf("%+v", http), has, getErr)
}
func Test_YamlConfig(t *testing.T) {
path, err := filepath.Abs("./_example/yaml")
if err != nil {
t.Error(err)
return
}
t.Log("config dir", path)
store := configures.NewFileStore(path, "app", '-')
retriever, retrieverErr := configures.NewRetriever(configures.RetrieverOption{
Active: "prod",
Format: "YAML",
Store: store,
})
if retrieverErr != nil {
t.Error(retrieverErr)
return
}
config, configErr := retriever.Get()
if configErr != nil {
t.Error(configErr)
return
}
raw := json.RawMessage{}
_ = config.As(&raw)
t.Log(string(raw))
http := Http{}
has, getErr := config.Get("http", &http)
t.Log(fmt.Sprintf("%+v", http), has, getErr)
}
type Http struct {
Timeout time.Duration `json:"timeout"`
Port int `json:"port"`
Host string `json:"host"`
}