forked from s-norris/go-shopify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
redirect_test.go
142 lines (111 loc) · 3.69 KB
/
redirect_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
package goshopify
import (
"fmt"
"reflect"
"testing"
"time"
"github.com/jarcoal/httpmock"
)
func redirectTests(t *testing.T, redirect Redirect) {
// Check that ID is assigned to the returned redirect
expectedInt := int64(1)
if redirect.ID != expectedInt {
t.Errorf("Redirect.ID returned %+v, expected %+v", redirect.ID, expectedInt)
}
}
func TestRedirectList(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", fmt.Sprintf("https://fooshop.myshopify.com/%s/redirects.json", client.pathPrefix),
httpmock.NewStringResponder(200, `{"redirects": [{"id":1},{"id":2}]}`))
redirects, err := client.Redirect.List(nil)
if err != nil {
t.Errorf("Redirect.List returned error: %v", err)
}
expected := []Redirect{{ID: 1}, {ID: 2}}
if !reflect.DeepEqual(redirects, expected) {
t.Errorf("Redirect.List returned %+v, expected %+v", redirects, expected)
}
}
func TestRedirectCount(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", fmt.Sprintf("https://fooshop.myshopify.com/%s/redirects/count.json", client.pathPrefix),
httpmock.NewStringResponder(200, `{"count": 3}`))
params := map[string]string{"created_at_min": "2016-01-01T00:00:00Z"}
httpmock.RegisterResponderWithQuery(
"GET",
fmt.Sprintf("https://fooshop.myshopify.com/%s/redirects/count.json", client.pathPrefix),
params,
httpmock.NewStringResponder(200, `{"count": 2}`))
cnt, err := client.Redirect.Count(nil)
if err != nil {
t.Errorf("Redirect.Count returned error: %v", err)
}
expected := 3
if cnt != expected {
t.Errorf("Redirect.Count returned %d, expected %d", cnt, expected)
}
date := time.Date(2016, time.January, 1, 0, 0, 0, 0, time.UTC)
cnt, err = client.Redirect.Count(CountOptions{CreatedAtMin: date})
if err != nil {
t.Errorf("Redirect.Count returned error: %v", err)
}
expected = 2
if cnt != expected {
t.Errorf("Redirect.Count returned %d, expected %d", cnt, expected)
}
}
func TestRedirectGet(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", fmt.Sprintf("https://fooshop.myshopify.com/%s/redirects/1.json", client.pathPrefix),
httpmock.NewStringResponder(200, `{"redirect": {"id":1}}`))
redirect, err := client.Redirect.Get(1, nil)
if err != nil {
t.Errorf("Redirect.Get returned error: %v", err)
}
expected := &Redirect{ID: 1}
if !reflect.DeepEqual(redirect, expected) {
t.Errorf("Redirect.Get returned %+v, expected %+v", redirect, expected)
}
}
func TestRedirectCreate(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("POST", fmt.Sprintf("https://fooshop.myshopify.com/%s/redirects.json", client.pathPrefix),
httpmock.NewBytesResponder(200, loadFixture("redirect.json")))
redirect := Redirect{
Path: "/from",
Target: "/to",
}
returnedRedirect, err := client.Redirect.Create(redirect)
if err != nil {
t.Errorf("Redirect.Create returned error: %v", err)
}
redirectTests(t, *returnedRedirect)
}
func TestRedirectUpdate(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("PUT", fmt.Sprintf("https://fooshop.myshopify.com/%s/redirects/1.json", client.pathPrefix),
httpmock.NewBytesResponder(200, loadFixture("redirect.json")))
redirect := Redirect{
ID: 1,
}
returnedRedirect, err := client.Redirect.Update(redirect)
if err != nil {
t.Errorf("Redirect.Update returned error: %v", err)
}
redirectTests(t, *returnedRedirect)
}
func TestRedirectDelete(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("DELETE", fmt.Sprintf("https://fooshop.myshopify.com/%s/redirects/1.json", client.pathPrefix),
httpmock.NewStringResponder(200, "{}"))
err := client.Redirect.Delete(1)
if err != nil {
t.Errorf("Redirect.Delete returned error: %v", err)
}
}