-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathtyped_client_test.go
409 lines (383 loc) · 10 KB
/
typed_client_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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
package gotwi_test
import (
"context"
"io"
"net/http"
"strings"
"testing"
"github.com/michimani/gotwi"
"github.com/michimani/gotwi/internal/util"
"github.com/stretchr/testify/assert"
)
func Test_NewTypedClient(t *testing.T) {
cases := []struct {
name string
client *gotwi.Client
wantNil bool
}{
{
name: "ok",
client: &gotwi.Client{},
},
{
name: "ok (nil)",
client: nil,
wantNil: true,
},
}
for _, c := range cases {
t.Run(c.name, func(tt *testing.T) {
asst := assert.New(tt)
tc := gotwi.NewTypedClient[*gotwi.MockResponse](c.client)
if c.wantNil {
asst.Nil(tc)
return
}
asst.NotNil(tc)
})
}
}
func Test_TypedClient_IsReady(t *testing.T) {
cases := []struct {
name string
client *gotwi.Client
expect bool
}{
{
name: "true: OAuth 1.0",
client: gotwiClientField{
AuthenticationMethod: gotwi.AuthenMethodOAuth1UserContext,
OAuthToken: "oauth-token",
SigningKey: "signing-key",
}.build(),
expect: true,
},
{
name: "true: OAuth 2.0",
client: gotwiClientField{
AuthenticationMethod: gotwi.AuthenMethodOAuth2BearerToken,
AccessToken: "access-token",
}.build(),
expect: true,
},
{
name: "false: client is nil",
client: nil,
expect: false,
},
{
name: "false: invalid authentication method",
client: gotwiClientField{
AuthenticationMethod: "invalid method",
AccessToken: "access-token",
}.build(),
expect: false,
},
{
name: "false: OAuth 1.0: oauth token is empty",
client: gotwiClientField{
AuthenticationMethod: gotwi.AuthenMethodOAuth1UserContext,
OAuthToken: "",
SigningKey: "signing-key",
}.build(),
expect: false,
},
{
name: "false: OAuth 1.0: signing key is empty",
client: gotwiClientField{
AuthenticationMethod: gotwi.AuthenMethodOAuth1UserContext,
OAuthToken: "oauth-token",
SigningKey: "",
}.build(),
expect: false,
},
{
name: "false: OAuth 2.0: access token is empty",
client: gotwiClientField{
AuthenticationMethod: gotwi.AuthenMethodOAuth2BearerToken,
AccessToken: "",
}.build(),
expect: false,
},
}
for _, c := range cases {
t.Run(c.name, func(tt *testing.T) {
asst := assert.New(tt)
tc := gotwi.NewTypedClient[*gotwi.MockResponse](c.client)
b := tc.IsReady()
asst.Equal(c.expect, b)
})
}
}
func Test_TypedClient_Exec(t *testing.T) {
cases := []struct {
name string
req *http.Request
}{
{
name: "ok",
req: &http.Request{},
},
{
name: "ok (nil)",
req: nil,
},
}
for _, c := range cases {
t.Run(c.name, func(tt *testing.T) {
asst := assert.New(tt)
tc := gotwi.NewTypedClient[*gotwi.MockResponse](&gotwi.Client{})
not200err, err := tc.Exec(c.req, &mockAPIResponse{})
asst.Nil(err)
asst.Nil(not200err)
})
}
}
func Test_TypedClient_ExecStream(t *testing.T) {
nonErrReq, _ := http.NewRequestWithContext(context.TODO(), "GET", "https://example.com", nil)
errReq := &http.Request{Method: "invalid method"}
cases := []struct {
name string
mockInput *mockInput
req *http.Request
wantErr bool
wantNot200Err bool
}{
{
name: "ok",
mockInput: &mockInput{
ResponseStatusCode: http.StatusOK,
ResponseBody: io.NopCloser(strings.NewReader(`{}`)),
},
req: nonErrReq,
wantErr: false,
wantNot200Err: false,
},
{
name: "error: not 200 error",
mockInput: &mockInput{
ResponseStatusCode: http.StatusInternalServerError,
ResponseBody: io.NopCloser(strings.NewReader(`{}`)),
},
req: nonErrReq,
wantErr: false,
wantNot200Err: true,
},
{
name: "error: cannot resolve 200 error",
mockInput: &mockInput{
ResponseStatusCode: http.StatusInternalServerError,
ResponseHeader: map[string][]string{
"Content-Type": {"application/json;charset=UTF-8"},
},
ResponseBody: io.NopCloser(strings.NewReader(`///`)),
},
req: nonErrReq,
wantErr: true,
wantNot200Err: false,
},
{
name: "error: http.Client.Do error",
mockInput: &mockInput{
ResponseStatusCode: http.StatusInternalServerError,
ResponseBody: io.NopCloser(strings.NewReader(`{}`)),
},
req: errReq,
wantErr: true,
wantNot200Err: false,
},
}
for _, c := range cases {
t.Run(c.name, func(tt *testing.T) {
asst := assert.New(tt)
mockClient := newMockHTTPClient(c.mockInput)
tc := gotwi.NewTypedClient[*gotwi.MockResponse](&gotwi.Client{
Client: mockClient,
})
res, not200err, err := tc.ExecStream(c.req)
if c.wantErr {
asst.Nil(res)
asst.Nil(not200err)
asst.Error(err)
return
}
if c.wantNot200Err {
asst.Nil(res)
asst.Nil(err)
asst.NotNil(not200err)
return
}
asst.NotNil(res)
asst.Nil(err)
asst.Nil(not200err)
})
}
}
func Test_CallStreamAPI(t *testing.T) {
cases := []struct {
name string
mockInput *mockInput
clientInput *gotwi.NewClientInput
endpoint string
method string
envAPIKey string
envAPIKeySecret string
params util.Parameters
response util.Response
wantErr bool
}{
{
name: "ok: OAuth 1.0",
mockInput: &mockInput{
ResponseStatusCode: http.StatusOK,
ResponseBody: io.NopCloser(strings.NewReader(`{"message": "ok"}`)),
},
clientInput: &gotwi.NewClientInput{
AuthenticationMethod: gotwi.AuthenMethodOAuth1UserContext,
OAuthToken: "token",
OAuthTokenSecret: "secret",
},
endpoint: "test-endpoint",
method: http.MethodGet,
envAPIKey: "api-key",
envAPIKeySecret: "api-key-secret",
params: &mockAPIParameter{},
response: &mockAPIResponse{},
wantErr: false,
},
{
name: "error: response is nil",
mockInput: &mockInput{
ResponseStatusCode: http.StatusOK,
ResponseBody: io.NopCloser(strings.NewReader(`{"message": "ok"}`)),
},
clientInput: &gotwi.NewClientInput{
AuthenticationMethod: gotwi.AuthenMethodOAuth1UserContext,
OAuthToken: "token",
OAuthTokenSecret: "secret",
},
endpoint: "test-endpoint",
method: http.MethodGet,
envAPIKey: "api-key",
envAPIKeySecret: "api-key-secret",
params: &mockAPIParameter{},
response: nil,
wantErr: false,
},
{
name: "error: parameter is nil",
mockInput: &mockInput{
ResponseStatusCode: http.StatusOK,
ResponseBody: io.NopCloser(strings.NewReader(`{"message": "ok"}`)),
},
clientInput: &gotwi.NewClientInput{
AuthenticationMethod: gotwi.AuthenMethodOAuth1UserContext,
OAuthToken: "token",
OAuthTokenSecret: "secret",
},
endpoint: "test-endpoint",
method: http.MethodGet,
envAPIKey: "api-key",
envAPIKeySecret: "api-key-secret",
params: nil,
response: &mockAPIResponse{},
wantErr: true,
},
{
name: "error: client is not ready",
mockInput: &mockInput{
ResponseStatusCode: http.StatusOK,
ResponseBody: io.NopCloser(strings.NewReader(`{"message": "ok"}`)),
},
clientInput: &gotwi.NewClientInput{
AuthenticationMethod: gotwi.AuthenMethodOAuth1UserContext,
OAuthToken: "",
OAuthTokenSecret: "secret",
},
endpoint: "test-endpoint",
envAPIKey: "api-key",
envAPIKeySecret: "api-key-secret",
method: http.MethodGet,
params: &mockAPIParameter{},
response: &mockAPIResponse{},
wantErr: true,
},
{
name: "error: not 200 response",
mockInput: &mockInput{
ResponseStatusCode: http.StatusInternalServerError,
ResponseBody: io.NopCloser(strings.NewReader(`{}`)),
},
clientInput: &gotwi.NewClientInput{
AuthenticationMethod: gotwi.AuthenMethodOAuth1UserContext,
OAuthToken: "token",
OAuthTokenSecret: "secret",
},
endpoint: "test-endpoint",
method: http.MethodGet,
envAPIKey: "api-key",
envAPIKeySecret: "api-key-secret",
params: &mockAPIParameter{},
response: &mockAPIResponse{},
wantErr: true,
},
{
name: "error: invalid json",
mockInput: &mockInput{
ResponseStatusCode: http.StatusInternalServerError,
ResponseBody: io.NopCloser(strings.NewReader(`///`)),
},
clientInput: &gotwi.NewClientInput{
AuthenticationMethod: gotwi.AuthenMethodOAuth1UserContext,
OAuthToken: "token",
OAuthTokenSecret: "secret",
},
endpoint: "test-endpoint",
method: http.MethodGet,
envAPIKey: "api-key",
envAPIKeySecret: "api-key-secret",
params: &mockAPIParameter{},
response: &mockAPIResponse{},
wantErr: true,
},
{
name: "error: invalid method",
mockInput: &mockInput{
ResponseStatusCode: http.StatusOK,
ResponseBody: io.NopCloser(strings.NewReader(`{}`)),
},
clientInput: &gotwi.NewClientInput{
AuthenticationMethod: gotwi.AuthenMethodOAuth1UserContext,
OAuthToken: "token",
OAuthTokenSecret: "secret",
},
endpoint: "test-endpoint",
method: "invalid method",
envAPIKey: "api-key",
envAPIKeySecret: "api-key-secret",
params: &mockAPIParameter{},
response: &mockAPIResponse{},
wantErr: true,
},
}
for _, c := range cases {
t.Run(c.name, func(tt *testing.T) {
asst := assert.New(tt)
tt.Setenv("GOTWI_API_KEY", c.envAPIKey)
tt.Setenv("GOTWI_API_KEY_SECRET", c.envAPIKeySecret)
mockClient := newMockHTTPClient(c.mockInput)
in := c.clientInput
in.HTTPClient = mockClient
client, _ := gotwi.NewClient(in)
tc := gotwi.NewTypedClient[*gotwi.MockResponse](client)
s, err := tc.CallStreamAPI(context.Background(), c.endpoint, c.method, c.params)
if c.wantErr {
asst.Nil(s)
asst.Error(err)
return
}
asst.NotNil(s)
asst.Nil(err)
})
}
}