-
Notifications
You must be signed in to change notification settings - Fork 2
/
contexts_test.go
76 lines (62 loc) · 1.73 KB
/
contexts_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
package config
import (
"context"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestWithAndFromContext(t *testing.T) {
t.Run("from context without value", func(t *testing.T) {
ctx := context.Background()
assert.Nil(t, FromContext(ctx))
})
t.Run("from context that has value", func(t *testing.T) {
cfg := NewConfig(NewFakeSourcer("app", map[string]string{
"APP_FOO": "bar",
}))
ctx := context.Background()
ctx = WithConfig(ctx, cfg)
ctxCfg := FromContext(ctx)
require.NotNil(t, ctxCfg)
type TestConfig struct {
Foo string `env:"foo"`
}
loadCfg := &TestConfig{}
err := ctxCfg.Load(loadCfg)
assert.NoError(t, err)
assert.Equal(t, "bar", loadCfg.Foo)
})
}
func TestLoadFromContext(t *testing.T) {
type TestConfig struct {
Foo string `env:"foo"`
}
t.Run("no config in context", func(t *testing.T) {
ctx := context.Background()
loadCfg := &TestConfig{}
err := LoadFromContext(ctx, loadCfg)
assert.EqualError(t, err, "config loader not found in context")
})
t.Run("loads from context", func(t *testing.T) {
cfg := NewConfig(NewFakeSourcer("app", map[string]string{
"APP_FOO": "bar",
}))
ctx := context.Background()
ctx = WithConfig(ctx, cfg)
loadCfg := &TestConfig{}
err := LoadFromContext(ctx, loadCfg)
assert.NoError(t, err)
assert.Equal(t, "bar", loadCfg.Foo)
})
t.Run("loads from context with tag modifiers", func(t *testing.T) {
cfg := NewConfig(NewFakeSourcer("app", map[string]string{
"APP_TAG_FOO": "bar",
}))
ctx := context.Background()
ctx = WithConfig(ctx, cfg)
loadCfg := &TestConfig{}
err := LoadFromContext(ctx, loadCfg, NewEnvTagPrefixer("tag"))
assert.NoError(t, err)
assert.Equal(t, "bar", loadCfg.Foo)
})
}