-
Notifications
You must be signed in to change notification settings - Fork 3
/
examples_test.go
471 lines (385 loc) · 11.4 KB
/
examples_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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
package maxcdn
// This file contains Example and Functional Example methods, both for documentation
// and for functionally testing code.
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/url"
"os"
)
var (
alias = os.Getenv("ALIAS")
token = os.Getenv("TOKEN")
secret = os.Getenv("SECRET")
)
func Example() {
// Basic Get
max := NewMaxCDN(alias, token, secret)
var got Generic
res, err := max.Get(&got, "/account.json", nil)
if err != nil {
panic(err)
}
fmt.Printf("code: %d\n", res.Code)
fmt.Printf("name: %s\n", got["name"].(string))
// Basic Put
form := url.Values{}
form.Set("name", "new name")
var put Generic
if _, err = max.Put(&put, "/account.json", form); err == nil &&
put["name"].(string) == "new name" {
fmt.Println("name successfully updated")
}
// Basic Delete
if _, err = max.Delete("/zones/pull.json/123456", nil); err == nil {
fmt.Println("zone successfully deleted")
}
// Logs
if logs, err := max.GetLogs(nil); err == nil {
for _, line := range logs.Records {
fmt.Printf("%+v\n", line)
}
}
}
func Example_newMaxCDN() {
max := NewMaxCDN(alias, token, secret)
fmt.Printf("%#v\n", max)
}
func ExampleMaxCDN_doParse() {
// Run mid-level DoParse method.
max := NewMaxCDN(alias, token, secret)
var data Generic
response, err := max.DoParse(&data, "GET", "/account.json/address", nil)
if err != nil {
panic(err)
}
fmt.Printf("code: %d\n", response.Code)
fmt.Printf("name: %s\n", data["street1"].(string))
}
func ExampleMaxCDN_do() {
// Run low-level Do method.
max := NewMaxCDN(alias, token, secret)
if rsp, err := max.Do("GET", "/account.json", nil); err == nil {
fmt.Printf("Response Code: %d\n", rsp.Code)
var data Generic
if err = json.Unmarshal(rsp.Data, &data); err == nil {
fmt.Printf("%+v\n", data["account"])
}
}
}
func ExampleMaxCDN_request() {
// Run low-level Request method.
max := NewMaxCDN(alias, token, secret)
check := func(e error) {
if e != nil {
panic(e)
}
}
res, err := max.Request("GET", "/account.json", nil)
defer res.Body.Close()
check(err)
body, err := ioutil.ReadAll(res.Body)
check(err)
fmt.Println(string(body))
}
func ExampleMaxCDN_get() {
max := NewMaxCDN(alias, token, secret)
var data Generic
response, err := max.Get(&data, "/account.json/address", nil)
if err != nil {
panic(err)
}
fmt.Printf("code: %d\n", response.Code)
fmt.Printf("name: %s\n", data["street1"].(string))
}
func ExampleMaxCDN_getLogs() {
max := NewMaxCDN(alias, token, secret)
if logs, err := max.GetLogs(nil); err == nil {
for _, line := range logs.Records {
fmt.Printf("%+v\n", line)
}
}
}
func ExampleMaxCDN_put() {
max := NewMaxCDN(alias, token, secret)
form := url.Values{}
form.Set("name", "example name")
var data Generic
response, err := max.Put(&data, "/account.json", form)
if err != nil {
panic(err)
}
fmt.Printf("code: %d\n", response.Code)
fmt.Printf("name: %s\n", data["name"].(string))
}
func ExampleMaxCDN_delete() {
// This specific example shows how to purge a cache without using the Purge
// methods, more as an example of using Delete, then anything, really.
max := NewMaxCDN(alias, token, secret)
res, err := max.Delete("/zones/pull.json/123456/cache", nil)
if err != nil {
panic(err)
}
if res.Code == 200 {
fmt.Println("Purge suucceeded")
}
}
func ExampleMaxCDN_purgeZone() {
max := NewMaxCDN(alias, token, secret)
rsp, err := max.PurgeZone(123456)
if err != nil {
panic(err)
}
if rsp.Code == 200 {
fmt.Println("Purge succeeded")
}
}
func ExampleMaxCDN_purgeZones() {
max := NewMaxCDN(alias, token, secret)
zones := []int{123456, 234567, 345678}
rsps, err := max.PurgeZones(zones)
if err != nil {
panic(err)
}
if len(rsps) == len(zones) {
fmt.Printf("Purges succeeded")
}
}
func ExampleMaxCDN_purgeFile() {
max := NewMaxCDN(alias, token, secret)
payload, err := max.PurgeFile(123456, "/master.css")
if err != nil {
panic(err)
}
if payload.Code == 200 {
fmt.Println("Purge succeeded")
}
}
func ExampleMaxCDN_purgeFiles() {
max := NewMaxCDN(alias, token, secret)
files := []string{"/master.css", "/master.js"}
payloads, err := max.PurgeFiles(123456, files)
if err != nil {
panic(err)
}
if len(payloads) == len(files) {
fmt.Printf("Purges succeeded")
}
}
func ExampleMaxCDN_post() {
max := NewMaxCDN(alias, token, secret)
form := url.Values{}
form.Set("name", "newzone")
// When creating a new zone, the url must be real and resolve.
form.Set("url", "http://www.example.com")
var data Generic
_, err := max.Post(&data, "/zones/pull.json", form)
if err != nil {
panic(err)
}
if data["name"].(string) == "newzone" {
fmt.Println("Successfully created new Pull Zone.")
}
}
func Example_response() {
max := NewMaxCDN(alias, token, secret)
var data Generic
response, _ := max.Get(&data, "/account.json", nil)
fmt.Printf("%+v\n", response)
}
func Example_generic() {
max := NewMaxCDN(alias, token, secret)
var data Generic
if _, err := max.Get(&data, "/account.json", nil); err == nil {
alias := data["alias"].(string)
name := data["name"].(string)
fmt.Printf("alias: %s\n", alias)
fmt.Printf("name: %s\n", name)
}
}
func Example_account() {
max := NewMaxCDN(alias, token, secret)
var data Generic
if _, err := max.Get(&data, "/account.json", nil); err == nil {
fmt.Printf("%+v\n", data)
}
}
func Example_accountAddress() {
max := NewMaxCDN(alias, token, secret)
var data Generic
if _, err := max.Get(&data, "/account.json/address", nil); err == nil {
fmt.Printf("%+v\n", data)
}
}
func Example_popularFiles() {
max := NewMaxCDN(alias, token, secret)
var data Generic
if _, err := max.Get(&data, "/reports/popularfiles.json", nil); err == nil {
for i, file := range data {
uri := file.(map[string]interface{})["uri"].(string)
hit := file.(map[string]interface{})["hit"].(string)
fmt.Printf("%2s: %30s=%s, \n", i, uri, hit)
}
}
fmt.Println("----")
summaryHit := data["summary"].(map[string]interface{})["uri"].(string)
fmt.Printf(" %30s=%s, \n", "summary", summaryHit)
}
func Example_statsSummary() {
max := NewMaxCDN(alias, token, secret)
var data Generic
if _, err := max.Get(&data, "/reports/stats.json", nil); err == nil {
fmt.Printf("%+v\n", data)
}
}
func Example_stats() {
max := NewMaxCDN(alias, token, secret)
var data Generic
if _, err := max.Get(&data, "/reports/stats.json/hourly", nil); err == nil {
fmt.Printf("%+v\n", data)
}
}
// These "Functional" examples are meant to be functional integration tests.
// To run these as integration tests export your ALIAS, TOKEN and SECRET
// to your envioronment before running 'go test', otherwise the http
// request will be stubbed using the json files in './_fixtures/*.json'.
// Run like:
// $ ALIAS=your_alias TOKEN=your_token SECRET=your_secret make test
func Example_functional() {
var form url.Values
name := stringFromTimestamp()
max := NewMaxCDN(alias, token, secret)
if alias == "" || token == "" || secret == "" {
max.HTTPClient = stubHTTPOk()
}
// GET /account.json
var getAcct Generic
res, err := max.Get(&getAcct, "/account.json", nil)
if err != nil || res.Code != 200 ||
getAcct["account"].(map[string]interface{})["name"].(string) == "" {
fmt.Println("GET account")
fmt.Printf("error:\n%+v\n", err)
fmt.Printf("code:\n%+v\n", res.Code)
fmt.Printf("data:\n%+v\n", getAcct)
}
// PUT /account.json
var putAcct Generic
form = url.Values{}
form.Set("name", name)
res, err = max.Put(&putAcct, "/account.json", form)
if err != nil || res.Code != 200 ||
putAcct["account"].(map[string]interface{})["name"].(string) == "" {
fmt.Println("PUT account")
fmt.Printf("error:\n%+v\n", err)
fmt.Printf("code:\n%+v\n", res.Code)
fmt.Printf("data:\n%+v\n", putAcct)
}
// GET /account.json/address
var getAddr Generic
res, err = max.Get(&getAddr, "/account.json/address", nil)
if err != nil || res.Code != 200 ||
getAddr["address"].(map[string]interface{})["street1"].(string) == "" {
fmt.Println("GET address")
fmt.Printf("error:\n%+v\n", err)
fmt.Printf("code:\n%+v\n", res.Code)
fmt.Printf("data:\n%+v\n", getAddr)
}
// PUT /account.json/address
var putAddr Generic
form = url.Values{}
form.Set("street1", name)
res, err = max.Put(&putAddr, "/account.json/address", form)
if err != nil || res.Code != 200 ||
putAddr["address"].(map[string]interface{})["street1"].(string) == "" {
fmt.Println("GET address")
fmt.Printf("error:\n%+v\n", err)
fmt.Printf("code:\n%+v\n", res.Code)
fmt.Printf("data:\n%+v\n", putAddr)
}
// GET /reports/popularfiles.json
var popular Generic
res, err = max.Get(&popular, "/reports/popularfiles.json", nil)
if err != nil || res.Code != 200 ||
popular["popularfiles"].([]interface{})[0].(map[string]interface{})["uri"].(string) == "" {
fmt.Println("GET popularfiles")
fmt.Printf("error:\n%+v\n", err)
fmt.Printf("code:\n%+v\n", res.Code)
fmt.Printf("data:\n%+v\n", popular)
}
file := popular["popularfiles"].([]interface{})[0].(map[string]interface{})["uri"].(string)
// GET /reports/stats.json
var stats Generic
res, err = max.Get(&stats, "/reports/stats.json", nil)
if err != nil || res.Code != 200 || stats["total"] == "" {
fmt.Println("GET stats")
fmt.Printf("error:\n%+v\n", err)
fmt.Printf("code:\n%+v\n", res.Code)
fmt.Printf("data:\n%+v\n", stats)
}
// GET /reports/stats.json/daily
var daily Generic
res, err = max.Get(&daily, "/reports/stats.json/daily", nil)
if err != nil || res.Code != 200 || daily["total"] == "" {
fmt.Println("GET stats/daily")
fmt.Printf("error:\n%+v\n", err)
fmt.Printf("code:\n%+v\n", res.Code)
fmt.Printf("data:\n%+v\n", daily)
}
// GET /zones/pull.json
var getPulls Generic
res, err = max.Get(&getPulls, "/zones/pull.json", nil)
if err != nil || res.Code != 200 ||
getPulls["pullzones"].([]interface{})[0].(map[string]interface{})["id"].(string) == "" {
fmt.Println("GET zones/getPull")
fmt.Printf("error:\n%+v\n", err)
fmt.Printf("code:\n%+v\n", res.Code)
fmt.Printf("data:\n%+v\n", daily)
}
// note: order matters for the rest
// POST /zones/pull.json
var postPull Generic
form = url.Values{}
form.Set("name", name)
form.Set("url", "http://www.example.com")
res, err = max.Post(&postPull, "/zones/pull.json", form)
if err != nil || res.Code != 201 ||
postPull["pullzone"].(map[string]interface{})["name"].(string) == "" {
fmt.Println("POST zones/pull")
fmt.Printf("error:\n%+v\n", err)
fmt.Printf("code:\n%+v\n", res.Code)
fmt.Printf("data:\n%+v\n", daily)
}
id := int(postPull["pullzone"].(map[string]interface{})["id"].(float64))
// GET /zones/pull.json/{{zone_id}}
var getPull Generic
endpoint := fmt.Sprintf("/zones/pull.json/%d", id)
res, err = max.Get(&getPull, endpoint, nil)
if err != nil || res.Code != 200 ||
getPull["pullzone"].(map[string]interface{})["id"].(string) == "" {
fmt.Println("GET zones/getPull/{{zone_id}}")
fmt.Printf("error:\n%+v\n", err)
fmt.Printf("code:\n%+v\n", res.Code)
fmt.Printf("data:\n%+v\n", getPull)
}
// DELETE /zones/pull.json/{{zone_id}}
res, err = max.Delete(endpoint, nil)
if err != nil || res.Code != 200 {
fmt.Println("DELETE zones/pull/{{zone_id}}")
fmt.Printf("error:\n%+v\n", err)
fmt.Printf("code:\n%+v\n", res.Code)
}
// PurgeZone
if res, err := max.PurgeZone(id); err != nil || res.Code != 200 {
fmt.Println("PurgeZone")
fmt.Printf("error:\n%+v\n", err)
fmt.Printf("code:\n%+v\n", res.Code)
}
// PurgeFile
if res, err := max.PurgeFile(id, file); err != nil || res.Code != 200 {
fmt.Println("PurgeFile")
fmt.Printf("error:\n%+v\n", err)
fmt.Printf("code:\n%+v\n", res.Code)
}
// Output:
}