forked from fastly/go-fastly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcondition_test.go
239 lines (216 loc) · 5.13 KB
/
condition_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
package fastly
import "testing"
func TestClient_Conditions(t *testing.T) {
t.Parallel()
var err error
var tv *Version
record(t, "conditions/version", func(c *Client) {
tv = testVersion(t, c)
})
// Create
var condition *Condition
record(t, "conditions/create", func(c *Client) {
condition, err = c.CreateCondition(&CreateConditionInput{
Service: testServiceID,
Version: tv.Number,
Name: "test-condition",
Statement: "req.url~+\"index.html\"",
Type: "REQUEST",
Priority: 1,
})
})
if err != nil {
t.Fatal(err)
}
// // Ensure deleted
defer func() {
record(t, "conditions/cleanup", func(c *Client) {
c.DeleteCondition(&DeleteConditionInput{
Service: testServiceID,
Version: tv.Number,
Name: "test-condition",
})
})
}()
if condition.Name != "test-condition" {
t.Errorf("bad name: %q", condition.Name)
}
if condition.Statement != "req.url~+\"index.html\"" {
t.Errorf("bad statement: %q", condition.Statement)
}
if condition.Type != "REQUEST" {
t.Errorf("bad type: %s", condition.Type)
}
if condition.Priority != 1 {
t.Errorf("bad priority: %d", condition.Priority)
}
// List
var conditions []*Condition
record(t, "conditions/list", func(c *Client) {
conditions, err = c.ListConditions(&ListConditionsInput{
Service: testServiceID,
Version: tv.Number,
})
})
if err != nil {
t.Fatal(err)
}
if len(conditions) < 1 {
t.Errorf("bad conditions: %v", conditions)
}
// Get
var newCondition *Condition
record(t, "conditions/get", func(c *Client) {
newCondition, err = c.GetCondition(&GetConditionInput{
Service: testServiceID,
Version: tv.Number,
Name: "test-condition",
})
})
if err != nil {
t.Fatal(err)
}
if condition.Name != newCondition.Name {
t.Errorf("bad name: %q (%q)", condition.Name, newCondition.Name)
}
if condition.Statement != "req.url~+\"index.html\"" {
t.Errorf("bad statement: %q", condition.Statement)
}
if condition.Type != "REQUEST" {
t.Errorf("bad type: %s", condition.Type)
}
if condition.Priority != 1 {
t.Errorf("bad priority: %d", condition.Priority)
}
// Update
var updatedCondition *Condition
record(t, "conditions/update", func(c *Client) {
updatedCondition, err = c.UpdateCondition(&UpdateConditionInput{
Service: testServiceID,
Version: tv.Number,
Name: "test-condition",
Statement: "req.url~+\"updated.html\"",
})
})
if err != nil {
t.Fatal(err)
}
if updatedCondition.Statement != "req.url~+\"updated.html\"" {
t.Errorf("bad statement: %q", updatedCondition.Statement)
}
// Delete
record(t, "conditions/delete", func(c *Client) {
err = c.DeleteCondition(&DeleteConditionInput{
Service: testServiceID,
Version: tv.Number,
Name: "test-condition",
})
})
if err != nil {
t.Fatal(err)
}
}
func TestClient_ListConditions_validation(t *testing.T) {
var err error
_, err = testClient.ListConditions(&ListConditionsInput{
Service: "",
})
if err != ErrMissingService {
t.Errorf("bad error: %s", err)
}
_, err = testClient.ListConditions(&ListConditionsInput{
Service: "foo",
Version: 0,
})
if err != ErrMissingVersion {
t.Errorf("bad error: %s", err)
}
}
func TestClient_CreateCondition_validation(t *testing.T) {
var err error
_, err = testClient.CreateCondition(&CreateConditionInput{
Service: "",
})
if err != ErrMissingService {
t.Errorf("bad error: %s", err)
}
_, err = testClient.CreateCondition(&CreateConditionInput{
Service: "foo",
Version: 0,
})
if err != ErrMissingVersion {
t.Errorf("bad error: %s", err)
}
}
func TestClient_GetCondition_validation(t *testing.T) {
var err error
_, err = testClient.GetCondition(&GetConditionInput{
Service: "",
})
if err != ErrMissingService {
t.Errorf("bad error: %s", err)
}
_, err = testClient.GetCondition(&GetConditionInput{
Service: "foo",
Version: 0,
})
if err != ErrMissingVersion {
t.Errorf("bad error: %s", err)
}
_, err = testClient.GetCondition(&GetConditionInput{
Service: "foo",
Version: 1,
Name: "",
})
if err != ErrMissingName {
t.Errorf("bad error: %s", err)
}
}
func TestClient_UpdateCondition_validation(t *testing.T) {
var err error
_, err = testClient.UpdateCondition(&UpdateConditionInput{
Service: "",
})
if err != ErrMissingService {
t.Errorf("bad error: %s", err)
}
_, err = testClient.UpdateCondition(&UpdateConditionInput{
Service: "foo",
Version: 0,
})
if err != ErrMissingVersion {
t.Errorf("bad error: %s", err)
}
_, err = testClient.UpdateCondition(&UpdateConditionInput{
Service: "foo",
Version: 1,
Name: "",
})
if err != ErrMissingName {
t.Errorf("bad error: %s", err)
}
}
func TestClient_DeleteCondition_validation(t *testing.T) {
var err error
err = testClient.DeleteCondition(&DeleteConditionInput{
Service: "",
})
if err != ErrMissingService {
t.Errorf("bad error: %s", err)
}
err = testClient.DeleteCondition(&DeleteConditionInput{
Service: "foo",
Version: 0,
})
if err != ErrMissingVersion {
t.Errorf("bad error: %s", err)
}
err = testClient.DeleteCondition(&DeleteConditionInput{
Service: "foo",
Version: 1,
Name: "",
})
if err != ErrMissingName {
t.Errorf("bad error: %s", err)
}
}