forked from cloudflare/cloudflare-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
errors_test.go
195 lines (175 loc) · 4 KB
/
errors_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
package cloudflare
import (
"strconv"
"testing"
"github.com/stretchr/testify/assert"
)
func TestAPIRequestError_Error(t *testing.T) {
tests := map[string]struct {
response []ResponseInfo
want string
}{
"basic complete response": {
response: []ResponseInfo{{
Code: 10000,
Message: "Authentication error",
}},
want: "HTTP status 400: Authentication error (10000)",
},
"multiple complete response": {
response: []ResponseInfo{
{
Code: 10000,
Message: "Authentication error",
},
{
Code: 10001,
Message: "Not authentication error",
},
},
want: "HTTP status 400: Authentication error (10000), Not authentication error (10001)",
},
"empty errors payload": {
response: []ResponseInfo{},
want: "HTTP status 400",
},
"missing internal error code": {
response: []ResponseInfo{{
Message: "something is broke",
}},
want: "HTTP status 400: something is broke",
},
}
for name, tc := range tests {
t.Run(name, func(t *testing.T) {
got := &APIRequestError{
StatusCode: 400,
Errors: tc.response,
}
assert.Equal(t, got.Error(), tc.want)
})
}
}
func TestAPIRequestError_HTTPStatusCode(t *testing.T) {
err := &APIRequestError{StatusCode: 999}
assert.Equal(t, err.HTTPStatusCode(), 999)
}
func TestAPIRequestError_InternalErrorCodes(t *testing.T) {
tests := map[string]struct {
response []ResponseInfo
want []int
}{
"single": {
response: []ResponseInfo{
{Code: 1234},
},
want: []int{1234},
},
"multiple": {
response: []ResponseInfo{
{Code: 1234},
{Code: 4321},
},
want: []int{1234, 4321},
},
}
for name, tc := range tests {
t.Run(name, func(t *testing.T) {
got := &APIRequestError{
StatusCode: 999,
Errors: tc.response,
}
assert.Equal(t, got.InternalErrorCodes(), tc.want)
})
}
}
func TestAPIRequestError_ErrorMessages(t *testing.T) {
tests := map[string]struct {
response []ResponseInfo
want []string
}{
"single": {
response: []ResponseInfo{
{Message: "broke once"},
},
want: []string{"broke once"},
},
"multiple": {
response: []ResponseInfo{
{Message: "broke once"},
{Message: "broke twice"},
},
want: []string{"broke once", "broke twice"},
},
}
for name, tc := range tests {
t.Run(name, func(t *testing.T) {
got := &APIRequestError{
StatusCode: 999,
Errors: tc.response,
}
assert.Equal(t, got.ErrorMessages(), tc.want)
})
}
}
func TestAPIRequestError_ServiceError(t *testing.T) {
tests := map[int]struct {
want bool
}{
500: {want: true},
599: {want: true},
600: {want: false},
}
for name, tc := range tests {
t.Run(strconv.Itoa(name), func(t *testing.T) {
got := &APIRequestError{StatusCode: name}
assert.Equal(t, got.ServiceError(), tc.want)
})
}
}
func TestAPIRequestError_ClientError(t *testing.T) {
tests := map[int]struct {
want bool
}{
400: {want: true},
499: {want: true},
500: {want: false},
}
for name, tc := range tests {
t.Run(strconv.Itoa(name), func(t *testing.T) {
got := &APIRequestError{StatusCode: name}
assert.Equal(t, got.ClientError(), tc.want)
})
}
}
func TestAPIRequestError_ClientRateLimited(t *testing.T) {
tests := map[int]struct {
want bool
}{
429: {want: true},
499: {want: false},
500: {want: false},
}
for name, tc := range tests {
t.Run(strconv.Itoa(name), func(t *testing.T) {
got := &APIRequestError{StatusCode: name}
assert.Equal(t, got.ClientRateLimited(), tc.want)
})
}
}
func TestAPIRequestError_InternalErrorCodeIs(t *testing.T) {
err := &APIRequestError{Errors: []ResponseInfo{
{Code: 1001},
{Code: 2001},
{Code: 3001},
}}
assert.Equal(t, err.InternalErrorCodeIs(3001), true)
}
func TestAPIRequestError_ErrorMessageContains(t *testing.T) {
err := &APIRequestError{Errors: []ResponseInfo{
{Message: "dns thing broke"},
{Message: "application thing broke"},
{Message: "network thing broke"},
}}
assert.Equal(t, err.ErrorMessageContains("application thing broke"), true)
}