-
-
Notifications
You must be signed in to change notification settings - Fork 152
/
config_test.go
124 lines (120 loc) · 3 KB
/
config_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
package ffclient_test
import (
"net/http"
"reflect"
"testing"
"time"
"github.com/aws/aws-sdk-go/aws"
"github.com/stretchr/testify/assert"
ffClient "github.com/thomaspoignant/go-feature-flag"
"github.com/thomaspoignant/go-feature-flag/retriever"
"github.com/thomaspoignant/go-feature-flag/retriever/fileretriever"
"github.com/thomaspoignant/go-feature-flag/retriever/githubretriever"
"github.com/thomaspoignant/go-feature-flag/retriever/gitlabretriever"
"github.com/thomaspoignant/go-feature-flag/retriever/httpretriever"
"github.com/thomaspoignant/go-feature-flag/retriever/s3retriever"
)
func TestConfig_GetRetrievers(t *testing.T) {
type fields struct {
PollingInterval time.Duration
Retriever retriever.Retriever
}
tests := []struct {
name string
fields fields
want string
wantErr bool
}{
{
name: "File retriever",
fields: fields{
PollingInterval: 3 * time.Second,
Retriever: &fileretriever.Retriever{Path: "file-example.yaml"},
},
want: "*fileretriever.Retriever",
wantErr: false,
},
{
name: "S3 retriever",
fields: fields{
PollingInterval: 3 * time.Second,
Retriever: &s3retriever.Retriever{
Bucket: "tpoi-test",
Item: "flag-config.yaml",
AwsConfig: aws.Config{
Region: aws.String("eu-west-1"),
},
},
},
want: "*s3retriever.Retriever",
wantErr: false,
},
{
name: "HTTP retriever",
fields: fields{
PollingInterval: 3 * time.Second,
Retriever: &httpretriever.Retriever{
URL: "http://example.com/flag-config.yaml",
Method: http.MethodGet,
},
},
want: "*httpretriever.Retriever",
wantErr: false,
},
{
name: "Github retriever",
fields: fields{
PollingInterval: 3 * time.Second,
Retriever: &githubretriever.Retriever{
RepositorySlug: "thomaspoignant/go-feature-flag",
FilePath: "testdata/flag-config.yaml",
GithubToken: "XXX",
},
},
want: "*githubretriever.Retriever",
wantErr: false,
},
{
name: "Gitlab retriever",
fields: fields{
PollingInterval: 3 * time.Second,
Retriever: &gitlabretriever.Retriever{
BaseURL: "https://gitlab.com/",
RepositorySlug: "ruairi2/go-feature-flags-config",
FilePath: "flag-config.yaml",
GitlabToken: "XXX",
},
},
want: "*gitlabretriever.Retriever",
wantErr: false,
},
{
name: "No retriever",
fields: fields{
PollingInterval: 3 * time.Second,
},
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
c := &ffClient.Config{
PollingInterval: tt.fields.PollingInterval,
Retriever: tt.fields.Retriever,
}
got, err := c.GetRetrievers()
assert.Equal(t, tt.wantErr, err != nil)
if err == nil {
assert.Equal(t, tt.want, reflect.ValueOf(got[0]).Type().String())
}
})
}
}
func TestOfflineConfig(t *testing.T) {
c := ffClient.Config{
Offline: true,
}
assert.True(t, c.IsOffline())
c.SetOffline(false)
assert.False(t, c.IsOffline())
}