-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecretenv_test.go
46 lines (43 loc) · 906 Bytes
/
secretenv_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
package secretenv_test
import (
"testing"
"github.com/ndthuan/secretenv"
)
func TestGet(t *testing.T) {
type args struct {
key string
}
tests := []struct {
name string
args args
want string
}{
{
name: "empty key",
args: args{key: ""},
want: "",
},
{
name: "secret file found, return its content",
args: args{key: "MY_SECRET"},
want: "dxgkscDpDOz0qRadSU/OMrk0nV3DwwzFJmOVA+ei",
},
{
name: "secret file not found, fallback to its corresponding ENV",
args: args{key: "MY_ENV_VAR"},
want: "8IZoM8dq2FDkP+yhhGGzFhn+ZaxbHvQDxQNjXoxr",
},
{
name: "neither secret file nor ENV var found, return empty string",
args: args{key: "NOT_FOUND"},
want: "",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := secretenv.Get(tt.args.key); got != tt.want {
t.Errorf("Get() = %v, want %v", got, tt.want)
}
})
}
}