-
Notifications
You must be signed in to change notification settings - Fork 7
/
request_test.go
228 lines (211 loc) · 7.24 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
package gsclient
import (
"context"
"fmt"
"net/http"
"net/http/httptest"
"path"
"strconv"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
type networkTestCase struct {
name string
apiURL string
httpClient *http.Client
expectedError string
}
type apiTestCase struct {
name string
statusCode int
dummyUUID string
expectedError string
}
var getNetworkErrorTests = []networkTestCase{
{
name: "retry the GET request in case of connection timeout",
apiURL: "http://127.0.0.1",
httpClient: &http.Client{Timeout: 1 * time.Nanosecond},
expectedError: "Client.Timeout exceeded while awaiting headers",
},
{
name: "retry the GET request in case of connection refused",
apiURL: "http://127.0.0.1",
httpClient: http.DefaultClient,
expectedError: "dial tcp 127.0.0.1:80: connect: connection refused",
},
{
name: "retry the GET request in case of DNS lookup error",
apiURL: "http://api.unknown.domain",
httpClient: http.DefaultClient,
expectedError: "dial tcp: lookup api.unknown.domain",
},
}
var postNetworkErrorTests = []networkTestCase{
{
name: "do not retry the POST request in case of connection timeout",
apiURL: "http://127.0.0.1",
httpClient: &http.Client{Timeout: 1 * time.Nanosecond},
expectedError: "Client.Timeout exceeded while awaiting headers",
},
{
name: "retry the POST request in case of connection refused",
apiURL: "http://127.0.0.1",
httpClient: http.DefaultClient,
expectedError: "dial tcp 127.0.0.1:80: connect: connection refused",
},
{
name: "retry the POST request in case of DNS lookup error",
apiURL: "http://api.unknown.domain",
httpClient: http.DefaultClient,
expectedError: "dial tcp: lookup api.unknown.domain",
},
}
var apiErrorTests = []apiTestCase{
{
name: "retry the request in case of API error with status code 503",
statusCode: http.StatusServiceUnavailable,
dummyUUID: "690de890-13c0-4e76-8a01-e10ba8786e53",
expectedError: "Status code: %d. Error: Maximum number of re-tries has been exhausted with error: no error message received from server. Request UUID: %s.",
},
{
name: "retry the request in case of API error with status code 424",
statusCode: http.StatusFailedDependency,
dummyUUID: "eeaf7aae-6c6c-4477-8a10-c29761b54901",
expectedError: "Status code: %d. Error: Maximum number of re-tries has been exhausted with error: no error message received from server. Request UUID: %s.",
},
{
name: "retry the request in case of API error with status code 500",
statusCode: http.StatusInternalServerError,
dummyUUID: "d2749722-207f-4bde-a555-562679b9a76b",
expectedError: "Status code: %d. Error: Maximum number of re-tries has been exhausted with error: no error message received from server. Request UUID: %s.",
},
{
name: "retry the request in case of API error with status code 409",
statusCode: http.StatusConflict,
dummyUUID: "8120c6ff-06d9-4b84-a075-34bbdec0abbe",
expectedError: "Status code: %d. Error: Maximum number of re-tries has been exhausted with error: no error message received from server. Request UUID: %s.",
},
}
func TestRequestGet_NetworkErrors(t *testing.T) {
mux := http.NewServeMux()
server := httptest.NewServer(mux)
uri := path.Join(apiServerBase, dummyUUID)
mux.HandleFunc(uri, func(w http.ResponseWriter, r *http.Request) {})
defer server.Close()
for _, test := range getNetworkErrorTests {
config := NewConfiguration(test.apiURL, "uuid", "token", true, true, 100, 5)
config.httpClient = test.httpClient
client := NewClient(config)
_, err := client.GetServer(emptyCtx, dummyUUID)
assert.Contains(t, fmt.Sprintf("%v", err), test.expectedError, test.name)
}
}
func TestRequestPost_NetworkErrors(t *testing.T) {
mux := http.NewServeMux()
server := httptest.NewServer(mux)
uri := apiServerBase
mux.HandleFunc(uri, func(w http.ResponseWriter, r *http.Request) {})
defer server.Close()
for _, test := range postNetworkErrorTests {
config := NewConfiguration(test.apiURL, "uuid", "token", true, true, 100, 5)
config.httpClient = test.httpClient
client := NewClient(config)
_, err := client.CreateServer(emptyCtx, ServerCreateRequest{
Name: "test",
Memory: 10,
Cores: 4,
HardwareProfile: DefaultServerHardware,
Labels: []string{"label"},
})
assert.Contains(t, fmt.Sprintf("%v", err), test.expectedError, test.name)
}
}
func TestRequestGet_APIErrors(t *testing.T) {
server, client, mux := setupTestClient(true)
defer server.Close()
for _, test := range apiErrorTests {
uri := path.Join(apiServerBase, test.dummyUUID)
mux.HandleFunc(uri, func(w http.ResponseWriter, r *http.Request) {
w.Header().Set(requestUUIDHeader, dummyRequestUUID)
w.WriteHeader(test.statusCode)
})
_, err := client.GetServer(emptyCtx, test.dummyUUID)
assert.Contains(t, fmt.Sprintf("%v", err), fmt.Sprintf(test.expectedError, test.statusCode, dummyRequestUUID), test.name)
}
}
func TestRequestPatch_APIErrors(t *testing.T) {
server, client, mux := setupTestClient(true)
defer server.Close()
for _, test := range apiErrorTests {
uri := path.Join(apiServerBase, test.dummyUUID)
mux.HandleFunc(uri, func(w http.ResponseWriter, r *http.Request) {
w.Header().Set(requestUUIDHeader, dummyRequestUUID)
w.WriteHeader(test.statusCode)
})
err := client.UpdateServer(
emptyCtx,
test.dummyUUID,
ServerUpdateRequest{
Name: "test",
Memory: 4,
Cores: 2,
Labels: nil,
})
assert.Contains(t, fmt.Sprintf("%v", err), fmt.Sprintf(test.expectedError, test.statusCode, dummyRequestUUID), test.name)
}
}
func TestRequestDelete_APIErrors(t *testing.T) {
server, client, mux := setupTestClient(true)
defer server.Close()
for _, test := range apiErrorTests {
uri := path.Join(apiServerBase, test.dummyUUID)
mux.HandleFunc(uri, func(w http.ResponseWriter, r *http.Request) {
w.Header().Set(requestUUIDHeader, dummyRequestUUID)
w.WriteHeader(test.statusCode)
})
err := client.DeleteServer(emptyCtx, test.dummyUUID)
assert.Contains(t, fmt.Sprintf("%v", err), fmt.Sprintf(test.expectedError, test.statusCode, dummyRequestUUID), test.name)
}
}
func Test_prepareHTTPRequest(t *testing.T) {
r := &gsRequest{
uri: path.Join(apiDeletedBase, "networks"),
method: http.MethodGet,
skipCheckingRequest: true,
}
cfg := DefaultConfiguration("test", "test")
httpReq, err := r.prepareHTTPRequest(context.Background(), cfg)
assert.NotNil(t, httpReq)
assert.Equal(t, r.method, httpReq.Method)
assert.Equal(t, r.uri, httpReq.URL.RequestURI())
assert.Nil(t, err)
}
func Test_getDelayTimeInMsFromTimestampStr(t *testing.T) {
type testCase struct {
successful bool
TimestampStr string
}
futureTimestamp := time.Now().Add(5*time.Second).UnixNano() / 1000000
futureTimestampStr := strconv.FormatInt(futureTimestamp, 10)
testCases := []testCase{
{
true,
futureTimestampStr,
},
{
false,
"",
},
}
for _, test := range testCases {
delay, err := getDelayTimeInMsFromTimestampStr(test.TimestampStr)
if test.successful {
assert.Nil(t, err)
assert.GreaterOrEqual(t, delay, int64(0))
} else {
assert.NotNil(t, err)
}
}
}