-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_test.go
65 lines (53 loc) · 1021 Bytes
/
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
package xconfig
import (
"testing"
"time"
)
type Db struct {
Postgres struct {
Host string
Port uint
Debug bool
}
}
type App struct {
Grpc struct {
Name string
Port string
}
}
type Config struct {
Db Db `xconfig:"appId:db-config"`
App App `xconfig:"appId:commodity-srv"`
}
func TestParseConfig(t *testing.T) {
cfg := Config{}
if err := NewConfig(&cfg, ApolloIp("apollo.api.thingyouwe.com"), LocalConfig("local.yaml")); err != nil {
t.Fatal(err)
}
t.Logf("%+v", cfg)
}
func TestEventChange(t *testing.T) {
type Config struct {
Db struct {
Postgres struct {
Host string
Port int
Debug bool
}
} `xconfig:"appId:db-config"`
App struct {
Grpc struct {
Name string
Port string
Hello int `xconfig:"default:10"`
}
} `xconfig:"appId:commodity-srv"`
}
cfg := &Config{}
if err := NewConfig(cfg, ApolloIp("apollo.api.thingyouwe.com"), LocalConfig("local.yaml")); err != nil {
t.Fatal(err)
}
time.Sleep(time.Minute)
t.Logf("%+v", cfg)
}