This repository has been archived by the owner on Sep 11, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 323
/
product_test.go
266 lines (207 loc) · 7.13 KB
/
product_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
package goshopify
import (
"reflect"
"testing"
"time"
httpmock "gopkg.in/jarcoal/httpmock.v1"
)
func productTests(t *testing.T, product Product) {
// Check that ID is assigned to the returned product
expectedInt := 1071559748
if product.ID != expectedInt {
t.Errorf("Product.ID returned %+v, expected %+v", product.ID, expectedInt)
}
}
func TestProductList(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/products.json",
httpmock.NewStringResponder(200, `{"products": [{"id":1},{"id":2}]}`))
products, err := client.Product.List(nil)
if err != nil {
t.Errorf("Product.List returned error: %v", err)
}
expected := []Product{{ID: 1}, {ID: 2}}
if !reflect.DeepEqual(products, expected) {
t.Errorf("Product.List returned %+v, expected %+v", products, expected)
}
}
func TestProductCount(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/products/count.json",
httpmock.NewStringResponder(200, `{"count": 3}`))
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/products/count.json?created_at_min=2016-01-01T00%3A00%3A00Z",
httpmock.NewStringResponder(200, `{"count": 2}`))
cnt, err := client.Product.Count(nil)
if err != nil {
t.Errorf("Product.Count returned error: %v", err)
}
expected := 3
if cnt != expected {
t.Errorf("Product.Count returned %d, expected %d", cnt, expected)
}
date := time.Date(2016, time.January, 1, 0, 0, 0, 0, time.UTC)
cnt, err = client.Product.Count(CountOptions{CreatedAtMin: date})
if err != nil {
t.Errorf("Product.Count returned error: %v", err)
}
expected = 2
if cnt != expected {
t.Errorf("Product.Count returned %d, expected %d", cnt, expected)
}
}
func TestProductGet(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/products/1.json",
httpmock.NewStringResponder(200, `{"product": {"id":1}}`))
product, err := client.Product.Get(1, nil)
if err != nil {
t.Errorf("Product.Get returned error: %v", err)
}
expected := &Product{ID: 1}
if !reflect.DeepEqual(product, expected) {
t.Errorf("Product.Get returned %+v, expected %+v", product, expected)
}
}
func TestProductCreate(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("POST", "https://fooshop.myshopify.com/admin/products.json",
httpmock.NewBytesResponder(200, loadFixture("product.json")))
product := Product{
Title: "Burton Custom Freestyle 151",
BodyHTML: "<strong>Good snowboard!<\\/strong>",
Vendor: "Burton",
ProductType: "Snowboard",
}
returnedProduct, err := client.Product.Create(product)
if err != nil {
t.Errorf("Product.Create returned error: %v", err)
}
productTests(t, *returnedProduct)
}
func TestProductUpdate(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("PUT", "https://fooshop.myshopify.com/admin/products/1.json",
httpmock.NewBytesResponder(200, loadFixture("product.json")))
product := Product{
ID: 1,
ProductType: "Skateboard",
}
returnedProduct, err := client.Product.Update(product)
if err != nil {
t.Errorf("Product.Update returned error: %v", err)
}
productTests(t, *returnedProduct)
}
func TestProductDelete(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("DELETE", "https://fooshop.myshopify.com/admin/products/1.json",
httpmock.NewStringResponder(200, "{}"))
err := client.Product.Delete(1)
if err != nil {
t.Errorf("Product.Delete returned error: %v", err)
}
}
func TestProductListMetafields(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/products/1/metafields.json",
httpmock.NewStringResponder(200, `{"metafields": [{"id":1},{"id":2}]}`))
metafields, err := client.Product.ListMetafields(1, nil)
if err != nil {
t.Errorf("Product.ListMetafields() returned error: %v", err)
}
expected := []Metafield{{ID: 1}, {ID: 2}}
if !reflect.DeepEqual(metafields, expected) {
t.Errorf("Product.ListMetafields() returned %+v, expected %+v", metafields, expected)
}
}
func TestProductCountMetafields(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/products/1/metafields/count.json",
httpmock.NewStringResponder(200, `{"count": 3}`))
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/products/1/metafields/count.json?created_at_min=2016-01-01T00%3A00%3A00Z",
httpmock.NewStringResponder(200, `{"count": 2}`))
cnt, err := client.Product.CountMetafields(1, nil)
if err != nil {
t.Errorf("Product.CountMetafields() returned error: %v", err)
}
expected := 3
if cnt != expected {
t.Errorf("Product.CountMetafields() returned %d, expected %d", cnt, expected)
}
date := time.Date(2016, time.January, 1, 0, 0, 0, 0, time.UTC)
cnt, err = client.Product.CountMetafields(1, CountOptions{CreatedAtMin: date})
if err != nil {
t.Errorf("Product.CountMetafields() returned error: %v", err)
}
expected = 2
if cnt != expected {
t.Errorf("Product.CountMetafields() returned %d, expected %d", cnt, expected)
}
}
func TestProductGetMetafield(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/products/1/metafields/2.json",
httpmock.NewStringResponder(200, `{"metafield": {"id":2}}`))
metafield, err := client.Product.GetMetafield(1, 2, nil)
if err != nil {
t.Errorf("Product.GetMetafield() returned error: %v", err)
}
expected := &Metafield{ID: 2}
if !reflect.DeepEqual(metafield, expected) {
t.Errorf("Product.GetMetafield() returned %+v, expected %+v", metafield, expected)
}
}
func TestProductCreateMetafield(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("POST", "https://fooshop.myshopify.com/admin/products/1/metafields.json",
httpmock.NewBytesResponder(200, loadFixture("metafield.json")))
metafield := Metafield{
Key: "app_key",
Value: "app_value",
ValueType: "string",
Namespace: "affiliates",
}
returnedMetafield, err := client.Product.CreateMetafield(1, metafield)
if err != nil {
t.Errorf("Product.CreateMetafield() returned error: %v", err)
}
MetafieldTests(t, *returnedMetafield)
}
func TestProductUpdateMetafield(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("PUT", "https://fooshop.myshopify.com/admin/products/1/metafields/2.json",
httpmock.NewBytesResponder(200, loadFixture("metafield.json")))
metafield := Metafield{
ID: 2,
Key: "app_key",
Value: "app_value",
ValueType: "string",
Namespace: "affiliates",
}
returnedMetafield, err := client.Product.UpdateMetafield(1, metafield)
if err != nil {
t.Errorf("Product.UpdateMetafield() returned error: %v", err)
}
MetafieldTests(t, *returnedMetafield)
}
func TestProductDeleteMetafield(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("DELETE", "https://fooshop.myshopify.com/admin/products/1/metafields/2.json",
httpmock.NewStringResponder(200, "{}"))
err := client.Product.DeleteMetafield(1, 2)
if err != nil {
t.Errorf("Product.DeleteMetafield() returned error: %v", err)
}
}