-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecode_test.go
218 lines (188 loc) · 4.47 KB
/
decode_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
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
// Copyright (c) 2022, Roel Schut. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package env
import (
"strings"
"testing"
"github.com/stretchr/testify/assert"
)
func TestNewDecoder(t *testing.T) {
t.Run("nil", func(t *testing.T) {
assert.PanicsWithValue(t, panicNilLookupper, func() {
_ = NewDecoder(nil)
})
})
t.Run("nils", func(t *testing.T) {
assert.PanicsWithValue(t, panicNilLookupper, func() {
_ = NewDecoder(nil, nil)
})
})
}
func TestDecoder_Decode(t *testing.T) {
t.Run("basic", func(t *testing.T) {
type subj struct {
Foo string
Ok bool
}
const input = "FOO=bar\nOK=true"
var have subj
dec := NewReaderDecoder(strings.NewReader(input))
assert.NoError(t, dec.Decode(&have))
assert.Exactly(t, subj{Foo: "bar", Ok: true}, have)
})
t.Run("strict", func(t *testing.T) {
type subj struct {
Foo string
Ok bool
}
const input = "FOO=bar\nOK=true"
var have subj
dec := NewReaderDecoder(strings.NewReader(input)).Strict()
assert.NoError(t, dec.Decode(&have))
assert.Exactly(t, subj{}, have)
})
t.Run("basic with ignored field", func(t *testing.T) {
type subj struct {
Foo string
Ignore bool `env:"-"`
}
const input = "FOO=bar\nIGNORE=true"
var have subj
dec := NewReaderDecoder(strings.NewReader(input))
assert.NoError(t, dec.Decode(&have))
assert.Exactly(t, have, subj{Foo: "bar"})
})
t.Run("strict with ignored field", func(t *testing.T) {
type subj struct {
Foo string `env:"CUSTOM_NAME"`
Ignore bool `env:"-"`
}
const input = "CUSTOM_NAME=bar\nIGNORE=true"
var have subj
dec := NewReaderDecoder(strings.NewReader(input)).Strict()
assert.NoError(t, dec.Decode(&have))
assert.Exactly(t, subj{Foo: "bar"}, have)
})
t.Run("nested", func(t *testing.T) {
type nested struct {
Foo string
}
type root struct {
Qux string
Nested nested
}
const input = "QUX=x00\nNESTED_FOO=bar"
want := root{
Qux: "x00",
Nested: nested{Foo: "bar"},
}
var have root
dec := NewReaderDecoder(strings.NewReader(input))
assert.NoError(t, dec.Decode(&have))
assert.Exactly(t, want, have)
})
t.Run("inline", func(t *testing.T) {
type inline struct {
Foo string
}
type root struct {
Empty string
Inline inline `env:",inline"`
}
const input = "FOO=bar\nINLINE_FOO=not good!"
t.Run("loose", func(t *testing.T) {
want := root{
Inline: inline{Foo: "bar"},
}
var have root
dec := NewReaderDecoder(strings.NewReader(input))
assert.NoError(t, dec.Decode(&have))
assert.Exactly(t, want, have)
})
t.Run("strict", func(t *testing.T) {
var have root
dec := NewReaderDecoder(strings.NewReader(input)).Strict()
assert.NoError(t, dec.Decode(&have))
assert.Exactly(t, root{}, have)
})
})
t.Run("include", func(t *testing.T) {
type included struct {
Foo string
}
type root struct {
IgnoreMe bool `env:"-"`
Included included `env:",include"`
}
const input = "IGNORE_ME=true\nINCLUDED_FOO=bar"
want := root{
Included: included{
Foo: "bar",
},
}
var have root
dec := NewReaderDecoder(strings.NewReader(input))
assert.NoError(t, dec.Decode(&have))
assert.Exactly(t, want, have)
})
t.Run("nested", func(t *testing.T) {
type deepNested struct {
Foo string `env:"CUSTOM_NAME"`
Bar string
}
type nested struct {
Qux string
DeepNested deepNested `env:"DEEP"`
}
type root struct {
Nested nested `env:"NESTED"`
}
const input = "CUSTOM_NAME=foo\nNESTED_QUX=xoo"
want := root{
Nested: nested{
Qux: "xoo",
DeepNested: deepNested{
Foo: "foo",
},
},
}
var have root
dec := NewReaderDecoder(strings.NewReader(input))
assert.NoError(t, dec.Decode(&have))
assert.Exactly(t, want, have)
})
t.Run("nil", func(t *testing.T) {
assert.ErrorIs(t,
NewDecoder(System()).Decode(nil),
ErrStructPointerExpected,
)
})
t.Run("non-pointer", func(t *testing.T) {
type subj struct {
Foo string
Ignore bool
}
assert.ErrorIs(t,
NewDecoder(System()).Decode(subj{}),
ErrStructPointerExpected,
)
})
t.Run("non-struct pointer", func(t *testing.T) {
var v int
assert.ErrorIs(t,
NewDecoder(System()).Decode(&v),
ErrStructPointerExpected,
)
})
t.Run("nil lookupper", func(t *testing.T) {
assert.PanicsWithValue(t, panicNilLookupper, func() {
var dec Decoder
var dest struct {
Foo string
Ignore bool
}
_ = dec.Decode(&dest)
})
})
}