-
Notifications
You must be signed in to change notification settings - Fork 0
/
options_test.go
224 lines (217 loc) · 6.05 KB
/
options_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
219
220
221
222
223
224
package healthchecks
import (
"net/http"
"reflect"
"testing"
"time"
)
func TestWithURL(t *testing.T) {
type args struct {
opts *options
}
tests := []struct {
name string
url string
args args
wantOpts *options
wantErr bool
}{
{
name: "empty",
url: "",
args: args{opts: &options{RootURL: nil}},
wantOpts: &options{RootURL: nil},
wantErr: true,
},
{
name: "invalid",
url: "\n",
args: args{opts: &options{RootURL: nil}},
wantOpts: &options{RootURL: nil},
wantErr: true,
},
{
name: "valid",
url: "https://example.com",
args: args{opts: &options{RootURL: nil}},
wantOpts: &options{RootURL: mustURL("https://example.com")},
wantErr: false,
},
{
name: "with path",
url: "https://example.com/health",
args: args{opts: &options{RootURL: nil}},
wantOpts: &options{RootURL: mustURL("https://example.com/health")},
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
option := WithURL(tt.url)
if err := option.apply(tt.args.opts); (err != nil) != tt.wantErr {
t.Errorf("WithURL(%s).apply() error = %v, wantErr %v", tt.url, err, tt.wantErr)
}
if !reflect.DeepEqual(tt.args.opts, tt.wantOpts) {
t.Errorf("WithURL(%s).apply() result mismatch:\ngot = %#v\nwant = %#v", tt.url, tt.args.opts, tt.wantOpts)
}
})
}
}
func TestWithTimeout(t *testing.T) {
type args struct {
opts *options
}
tests := []struct {
name string
timeout time.Duration
args args
wantOpts *options
wantErr bool
}{
{
name: "valid",
timeout: 5 * time.Second,
args: args{opts: &options{HTTPClient: &http.Client{
Transport: http.DefaultTransport,
CheckRedirect: http.DefaultClient.CheckRedirect,
Jar: http.DefaultClient.Jar,
Timeout: 10 * time.Second,
}}},
wantOpts: &options{HTTPClient: &http.Client{
Transport: http.DefaultTransport,
CheckRedirect: http.DefaultClient.CheckRedirect,
Jar: http.DefaultClient.Jar,
Timeout: 5 * time.Second,
}},
wantErr: false,
},
{
name: "zero",
timeout: 0 * time.Second,
args: args{opts: &options{HTTPClient: &http.Client{
Transport: http.DefaultTransport,
CheckRedirect: http.DefaultClient.CheckRedirect,
Jar: http.DefaultClient.Jar,
Timeout: 10 * time.Second,
}}},
wantOpts: &options{HTTPClient: &http.Client{
Transport: http.DefaultTransport,
CheckRedirect: http.DefaultClient.CheckRedirect,
Jar: http.DefaultClient.Jar,
Timeout: 0 * time.Second,
}},
wantErr: false,
},
{
name: "negative",
timeout: -1 * time.Second,
args: args{opts: &options{HTTPClient: &http.Client{
Transport: http.DefaultTransport,
CheckRedirect: http.DefaultClient.CheckRedirect,
Jar: http.DefaultClient.Jar,
Timeout: 10 * time.Second,
}}},
wantOpts: &options{HTTPClient: &http.Client{
Transport: http.DefaultTransport,
CheckRedirect: http.DefaultClient.CheckRedirect,
Jar: http.DefaultClient.Jar,
Timeout: 10 * time.Second,
}},
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
option := WithTimeout(tt.timeout)
if err := option.apply(tt.args.opts); (err != nil) != tt.wantErr {
t.Errorf("WithTimeout(%s).apply() error = %v, wantErr %v", tt.timeout, err, tt.wantErr)
}
if !reflect.DeepEqual(tt.args.opts, tt.wantOpts) {
t.Errorf("WithTimeout(%s).apply() result mismatch:\ngot = %#v\nwant = %#v", tt.timeout, tt.args.opts, tt.wantOpts)
}
})
}
}
func TestWithHTTPClient(t *testing.T) {
type args struct {
opts *options
}
tests := []struct {
name string
client *http.Client
args args
wantOpts *options
wantErr bool
}{
{
name: "valid",
client: &http.Client{
Transport: http.DefaultTransport,
CheckRedirect: http.DefaultClient.CheckRedirect,
Jar: http.DefaultClient.Jar,
Timeout: 999 * time.Second,
},
args: args{opts: &options{HTTPClient: &http.Client{
Transport: http.DefaultTransport,
CheckRedirect: http.DefaultClient.CheckRedirect,
Jar: http.DefaultClient.Jar,
Timeout: 10 * time.Second,
}}},
wantOpts: &options{HTTPClient: &http.Client{
Transport: http.DefaultTransport,
CheckRedirect: http.DefaultClient.CheckRedirect,
Jar: http.DefaultClient.Jar,
Timeout: 999 * time.Second,
}},
wantErr: false,
},
{
name: "partially nil",
client: &http.Client{
Transport: http.DefaultTransport,
Timeout: 123 * time.Second,
},
args: args{opts: &options{HTTPClient: &http.Client{
Transport: http.DefaultTransport,
CheckRedirect: http.DefaultClient.CheckRedirect,
Jar: http.DefaultClient.Jar,
Timeout: 10 * time.Second,
}}},
wantOpts: &options{HTTPClient: &http.Client{
Transport: http.DefaultTransport,
CheckRedirect: nil,
Jar: nil,
Timeout: 123 * time.Second,
}},
wantErr: false,
},
{
name: "nil",
client: nil,
args: args{opts: &options{HTTPClient: &http.Client{
Transport: http.DefaultTransport,
CheckRedirect: http.DefaultClient.CheckRedirect,
Jar: http.DefaultClient.Jar,
Timeout: 10 * time.Second,
}}},
wantOpts: &options{HTTPClient: &http.Client{
Transport: http.DefaultTransport,
CheckRedirect: http.DefaultClient.CheckRedirect,
Jar: http.DefaultClient.Jar,
Timeout: 10 * time.Second,
}},
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
option := WithHTTPClient(tt.client)
if err := option.apply(tt.args.opts); (err != nil) != tt.wantErr {
t.Errorf("WithHTTPClient().apply() error = %v, wantErr %v", err, tt.wantErr)
}
if !reflect.DeepEqual(tt.args.opts, tt.wantOpts) {
t.Errorf("WithHTTPClient().apply() result mismatch:\ngot = %#v\nwant = %#v", tt.args.opts, tt.wantOpts)
}
})
}
}