-
Notifications
You must be signed in to change notification settings - Fork 1
/
hydrate_test.go
169 lines (153 loc) · 3.43 KB
/
hydrate_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
package cloudsecrets
import (
"context"
"reflect"
"testing"
"github.com/0xsequence/go-cloudsecrets/mock"
"github.com/stretchr/testify/assert"
)
type config struct {
DB db
Analytics analytics
Pass string
JWTSecrets []string
Services map[string]service
}
type db struct {
Host string
Username string
Password string
}
type analytics struct {
Enabled bool
Server string
AuthToken string
}
type service struct {
URL string
Auth string
Pass string
}
func TestHydrateFailIfNotPointerToStruct(t *testing.T) {
ctx := context.Background()
str := "hello"
assert.Error(t, Hydrate(ctx, "", str))
assert.Error(t, Hydrate(ctx, "", &str))
slice := []string{"hello", "hello2"}
assert.Error(t, Hydrate(ctx, "", slice))
assert.Error(t, Hydrate(ctx, "", &slice))
cfg := struct {
X, Y string
}{}
assert.Error(t, Hydrate(ctx, "", cfg))
assert.NoError(t, Hydrate(ctx, "", &cfg))
cfgPtr := &cfg
assert.NoError(t, Hydrate(ctx, "", &cfgPtr))
cfgPtrPtr := &cfgPtr
assert.NoError(t, Hydrate(ctx, "", &cfgPtrPtr))
}
func TestHydrate(t *testing.T) {
ctx := context.Background()
tests := []struct {
name string
storage map[string]string
conf *config
wantErr bool
wantConf *config
}{
{
name: "successful_replacement",
storage: map[string]string{
"dbPassword": "changethissecret",
"analyticsPassword": "AuthTokenSecret",
"pass": "secret",
"jwtSecretV1": "some-old-secret",
"jwtSecretV2": "changeme-now",
"auth": "auth-secret",
},
conf: &config{
Pass: "$SECRET:pass",
DB: db{
Host: "localhost:9090",
Username: "postgres",
Password: "$SECRET:dbPassword",
},
Analytics: analytics{
Enabled: true,
Server: "http://localhost:8000",
AuthToken: "$SECRET:analyticsPassword",
},
JWTSecrets: []string{"$SECRET:jwtSecretV2", "$SECRET:jwtSecretV1"},
Services: map[string]service{
"service-a": {
URL: "http://localhost:8000",
Auth: "$SECRET:auth",
},
},
},
wantErr: false,
wantConf: &config{
Pass: "secret",
DB: db{
Host: "localhost:9090",
Username: "postgres",
Password: "changethissecret",
},
Analytics: analytics{
Enabled: true,
Server: "http://localhost:8000",
AuthToken: "AuthTokenSecret",
},
JWTSecrets: []string{
"changeme-now",
"some-old-secret",
},
Services: map[string]service{
"service-a": {
URL: "http://localhost:8000",
Auth: "auth-secret",
},
},
},
},
{
name: "failed_secret_lookup",
storage: map[string]string{
"some": "other",
"secrets": "here",
},
conf: &config{
DB: db{
Host: "localhost:9090",
Username: "postgres",
Password: "$SECRET:dbPassword",
},
},
wantErr: true,
// expected config is same as input, since no replacements occurred
wantConf: &config{
DB: db{
Host: "localhost:9090",
Username: "postgres",
Password: "$SECRET:dbPassword",
},
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
v := reflect.ValueOf(tt.conf)
err := hydrateConfig(ctx, mock.NewSecretsProvider(tt.storage), v)
if err != nil {
if tt.wantErr {
assert.Equal(t, tt.wantConf, tt.conf)
return
}
}
if tt.wantErr {
t.Errorf("expected error, got none")
}
assert.Equal(t, tt.wantConf, tt.conf)
})
}
}