-
Notifications
You must be signed in to change notification settings - Fork 13
/
consulstructure_test.go
185 lines (159 loc) · 3.34 KB
/
consulstructure_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
package consulstructure
import (
"reflect"
"testing"
"time"
consul "github.com/hashicorp/consul/api"
)
func TestDecode_basic(t *testing.T) {
type test struct {
Addr string
}
// Write our test data
defer testClientWrite(t, testClient(t), map[string]string{
"test/addr": "foo",
})()
updateCh := make(chan interface{})
errCh := make(chan error)
d := &Decoder{
Target: &test{},
Prefix: "test/",
UpdateCh: updateCh,
}
defer d.Close()
go d.Run()
var raw interface{}
select {
case <-time.After(1 * time.Second):
t.Fatal("timeout")
case err := <-errCh:
t.Fatalf("err: %s", err)
case raw = <-updateCh:
}
expected := &test{Addr: "foo"}
actual := raw.(*test)
if !reflect.DeepEqual(actual, expected) {
t.Fatalf("bad: %#v", actual)
}
}
func TestDecode_emptyPrefix(t *testing.T) {
type test struct {
Addr string
}
updateCh := make(chan interface{})
errCh := make(chan error)
d := &Decoder{
Target: &test{},
UpdateCh: updateCh,
ErrCh: errCh,
}
defer d.Close()
go d.Run()
select {
case <-time.After(1 * time.Second):
t.Fatal("timeout")
case <-errCh:
return
case v := <-updateCh:
t.Fatalf("got update: %#v", v)
}
}
func TestDecode_nested(t *testing.T) {
type testChild struct {
Data string
}
type test struct {
Addr string
Child testChild
}
// Write our test data
defer testClientWrite(t, testClient(t), map[string]string{
"test/addr": "foo",
"test/child/data": "bar",
})()
updateCh := make(chan interface{})
errCh := make(chan error)
d := &Decoder{
Target: &test{},
Prefix: "test/",
UpdateCh: updateCh,
}
defer d.Close()
go d.Run()
var raw interface{}
select {
case <-time.After(1 * time.Second):
t.Fatal("timeout")
case err := <-errCh:
t.Fatalf("err: %s", err)
case raw = <-updateCh:
}
expected := &test{
Addr: "foo",
Child: testChild{Data: "bar"},
}
actual := raw.(*test)
if !reflect.DeepEqual(actual, expected) {
t.Fatalf("bad: %#v", actual)
}
}
func TestDecode_tag(t *testing.T) {
type test struct {
Addr string `consul:"other"`
}
// Write our test data
defer testClientWrite(t, testClient(t), map[string]string{
"test/other": "foo",
})()
updateCh := make(chan interface{})
errCh := make(chan error)
d := &Decoder{
Target: &test{},
Prefix: "test/",
UpdateCh: updateCh,
}
defer d.Close()
go d.Run()
var raw interface{}
select {
case <-time.After(1 * time.Second):
t.Fatal("timeout")
case err := <-errCh:
t.Fatalf("err: %s", err)
case raw = <-updateCh:
}
expected := &test{Addr: "foo"}
actual := raw.(*test)
if !reflect.DeepEqual(actual, expected) {
t.Fatalf("bad: %#v", actual)
}
}
func testClient(t *testing.T) *consul.Client {
client, err := consul.NewClient(consul.DefaultConfig())
if err != nil {
t.Fatalf("err: %s", err)
}
if _, err := client.Status().Leader(); err != nil {
t.Fatalf("error requesting Consul leader. Is Consul running?\n\n%s", err)
}
return client
}
func testClientWrite(t *testing.T, client *consul.Client, data map[string]string) func() {
for k, v := range data {
_, err := client.KV().Put(&consul.KVPair{
Key: k,
Value: []byte(v),
}, nil)
if err != nil {
t.Fatalf("error writing to Consul: %s", err)
}
}
return func() {
for k, _ := range data {
_, err := client.KV().Delete(k, nil)
if err != nil {
t.Fatalf("error deleting from Consul: %s", err)
}
}
}
}