This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
request_test.go
241 lines (204 loc) · 5.93 KB
/
request_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
package aftership
import (
"context"
"encoding/json"
"net/http"
"strconv"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
type mockData struct {
Meta Meta `json:"meta"`
Data string `json:"data"`
}
func TestMakeGETRequest(t *testing.T) {
setup()
defer teardown()
mux.HandleFunc("/test", func(w http.ResponseWriter, r *http.Request) {
assert.Equal(t, http.MethodGet, r.Method)
w.Write([]byte(`{
"meta": {
"code": 200
},
"data": "test"
}`))
})
exp := mockData{
Data: "test",
}
var result string
// GET with status 200
err := client.makeRequest(context.Background(), http.MethodGet, "/test", nil, nil, &result)
assert.Nil(t, err)
assert.Equal(t, exp.Data, result)
}
func TestMakePOSTRequest(t *testing.T) {
setup()
defer teardown()
mux.HandleFunc("/test", func(w http.ResponseWriter, r *http.Request) {
assert.Equal(t, http.MethodPost, r.Method)
w.Write([]byte(`{
"meta": {
"code": 200
},
"data": "test"
}`))
})
exp := mockData{
Data: "test",
}
var result string
// POST with status 201
err := client.makeRequest(context.Background(), http.MethodPost, "/test", nil, nil, &result)
assert.Nil(t, err)
assert.Equal(t, exp.Data, result)
}
func TestMakePUTRequest(t *testing.T) {
setup()
defer teardown()
mux.HandleFunc("/test", func(w http.ResponseWriter, r *http.Request) {
assert.Equal(t, http.MethodPut, r.Method)
w.Write([]byte(`{
"meta": {
"code": 200
},
"data": "test"
}`))
})
exp := mockData{
Data: "test",
}
var result string
// PUT with status 200
err := client.makeRequest(context.Background(), http.MethodPut, "/test", nil, nil, &result)
assert.Nil(t, err)
assert.Equal(t, exp.Data, result)
}
func TestMakeRequestError(t *testing.T) {
setup()
var result string
// Invalid data
err := client.makeRequest(context.Background(), http.MethodGet, "/test", nil, make(chan int), &result)
assert.NotNil(t, err)
// Bad method
err = client.makeRequest(context.Background(), "bad method", "/test", nil, nil, &result)
assert.NotNil(t, err)
// Invalid query params
err = client.makeRequest(context.Background(), http.MethodGet, "/test", 1, nil, &result)
assert.NotNil(t, err)
// 500 err
mux.HandleFunc("/test", func(w http.ResponseWriter, r *http.Request) {
assert.Equal(t, http.MethodGet, r.Method)
w.WriteHeader(500)
w.Write([]byte(`{
"meta": {
"code": 500,
"type": "InternalError",
"message": "Something went wrong on AfterShip's end."
},
"data": "test"
}`))
})
apiErr := APIError{
Code: 500,
Type: "InternalError",
Message: "Something went wrong on AfterShip's end.",
Path: "/test",
}
exp, _ := json.Marshal(apiErr)
err = client.makeRequest(context.Background(), http.MethodGet, "/test", nil, nil, &result)
assert.NotNil(t, err)
assert.Equal(t, string(exp), err.Error())
teardown()
// String response
setup()
mux.HandleFunc("/test", func(w http.ResponseWriter, r *http.Request) {
assert.Equal(t, http.MethodGet, r.Method)
w.Write([]byte(`test string`))
})
err = client.makeRequest(context.Background(), http.MethodGet, "/test", nil, nil, &result)
assert.NotNil(t, err)
teardown()
// Err read body
setup()
mux.HandleFunc("/test", func(w http.ResponseWriter, r *http.Request) {
assert.Equal(t, http.MethodGet, r.Method)
w.Header().Set("Content-Length", "1")
w.Write([]byte(`test string`))
})
err = client.makeRequest(context.Background(), http.MethodGet, "/test", nil, nil, &result)
assert.NotNil(t, err)
teardown()
// Invalid URI
client.Config.BaseURL = "/this/field/is/illegal/and/should/error/"
err = client.makeRequest(context.Background(), http.MethodGet, "/test", nil, nil, &result)
assert.NotNil(t, err)
}
func TestRateLimit(t *testing.T) {
setup()
defer teardown()
mux.HandleFunc("/test", func(w http.ResponseWriter, r *http.Request) {
assert.Equal(t, http.MethodGet, r.Method)
w.Header().Set("x-ratelimit-reset", "1458463600")
w.Header().Set("x-ratelimit-limit", "10")
w.Header().Set("x-ratelimit-remaining", "9")
w.WriteHeader(http.StatusTooManyRequests)
w.Write([]byte(`{
"meta": {
"code": 429,
"type": "TooManyRequests",
"message": "You have exceeded the API call rate limit. Default limit is 10 requests per second."
},
"data": {}
}`))
})
var result mockData
err := client.makeRequest(context.Background(), http.MethodGet, "/test", nil, nil, &result)
apiErr := TooManyRequestsError{
APIError: APIError{
Code: 429,
Type: "TooManyRequests",
Message: "You have exceeded the API call rate limit. Default limit is 10 requests per second.",
Path: "/test",
},
RateLimit: client.rateLimit,
}
exp, _ := json.Marshal(apiErr)
assert.NotNil(t, err)
assert.Equal(t, string(exp), err.Error())
assert.Equal(t, int64(1458463600), client.rateLimit.Reset)
assert.Equal(t, 10, client.rateLimit.Limit)
assert.Equal(t, 9, client.rateLimit.Remaining)
}
func TestBlockRequestWhenReachLimit(t *testing.T) {
setup()
defer teardown()
reset := time.Now().Add(5000).Unix()
mux.HandleFunc("/test", func(w http.ResponseWriter, r *http.Request) {
assert.Equal(t, http.MethodGet, r.Method)
w.Header().Set("x-ratelimit-reset", strconv.FormatInt(reset, 10))
w.Header().Set("x-ratelimit-limit", "10")
w.Header().Set("x-ratelimit-remaining", "0")
w.WriteHeader(http.StatusTooManyRequests)
w.Write([]byte(`{
"meta": {
"code": 429,
"type": "TooManyRequests",
"message": "You have exceeded the API call rate limit. Default limit is 10 requests per second."
},
"data": {}
}`))
})
var result mockData
client.makeRequest(context.Background(), http.MethodGet, "/test", nil, nil, &result)
assert.Equal(t, reset, client.rateLimit.Reset)
// Another request after exceeded limits
exp, _ := json.Marshal(APIError{
Code: codeRateLimiting,
Message: errExceedRateLimit,
})
err := client.makeRequest(context.Background(), http.MethodGet, "/test", nil, nil, &result)
assert.NotNil(t, err)
assert.Equal(t, string(exp), err.Error())
}