forked from bold-commerce/go-shopify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
product_listing_test.go
396 lines (342 loc) · 11.2 KB
/
product_listing_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
package goshopify
import (
"context"
"errors"
"fmt"
"net/http"
"reflect"
"runtime"
"testing"
"time"
"github.com/jarcoal/httpmock"
)
func productListingTests(t *testing.T, product ProductListing) {
// Check that Id is assigned to the returned product
var expectedInt uint64 = 921728736
if product.Id != expectedInt {
t.Errorf("Product.Id returned %+v, expected %+v", product.Id, expectedInt)
}
}
func TestProductListingList(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", fmt.Sprintf("https://fooshop.myshopify.com/%s/product_listings.json", client.pathPrefix),
httpmock.NewStringResponder(200, `{"product_listings": [{"product_id":1},{"product_id":2}]}`))
products, err := client.ProductListing.List(context.Background(), nil)
if err != nil {
t.Errorf("ProductListing.List returned error: %v", err)
}
expected := []ProductListing{{Id: 1}, {Id: 2}}
if !reflect.DeepEqual(products, expected) {
t.Errorf("ProductListing.List returned %+v, expected %+v", products, expected)
}
}
func TestProductListingListError(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", fmt.Sprintf("https://fooshop.myshopify.com/%s/product_listings.json", client.pathPrefix),
httpmock.NewStringResponder(500, ""))
expectedErrMessage := "Unknown Error"
products, err := client.ProductListing.List(context.Background(), nil)
if products != nil {
t.Errorf("ProductListing.List returned products, expected nil: %v", err)
}
if err == nil || err.Error() != expectedErrMessage {
t.Errorf("ProductListing.List err returned %+v, expected %+v", err, expectedErrMessage)
}
}
func TestProductListingListAll(t *testing.T) {
setup()
defer teardown()
listURL := fmt.Sprintf("https://fooshop.myshopify.com/%s/product_listings.json", client.pathPrefix)
cases := []struct {
name string
expectedProductListings []ProductListing
expectedRequestURLs []string
expectedLinkHeaders []string
expectedBodies []string
expectedErr error
}{
{
name: "Pulls the next page",
expectedRequestURLs: []string{
listURL,
fmt.Sprintf("%s?page_info=pg2", listURL),
},
expectedLinkHeaders: []string{
`<http://valid.url?page_info=pg2>; rel="next"`,
`<http://valid.url?page_info=pg1>; rel="previous"`,
},
expectedBodies: []string{
`{"product_listings": [{"product_id":1},{"product_id":2}]}`,
`{"product_listings": [{"product_id":3},{"product_id":4}]}`,
},
expectedProductListings: []ProductListing{{Id: 1}, {Id: 2}, {Id: 3}, {Id: 4}},
expectedErr: nil,
},
{
name: "Stops when there is not a next page",
expectedRequestURLs: []string{
listURL,
},
expectedLinkHeaders: []string{
`<http://valid.url?page_info=pg2>; rel="previous"`,
},
expectedBodies: []string{
`{"product_listings": [{"product_id":1}]}`,
},
expectedProductListings: []ProductListing{{Id: 1}},
expectedErr: nil,
},
{
name: "Returns errors when required",
expectedRequestURLs: []string{
listURL,
},
expectedLinkHeaders: []string{
`<http://valid.url?paage_info=pg2>; rel="previous"`,
},
expectedBodies: []string{
`{"product_listings": []}`,
},
expectedProductListings: []ProductListing{},
expectedErr: errors.New("page_info is missing"),
},
}
for i, c := range cases {
t.Run(c.name, func(t *testing.T) {
if len(c.expectedRequestURLs) != len(c.expectedLinkHeaders) {
t.Errorf(
"test case must have the same number of expected request urls (%d) as expected link headers (%d)",
len(c.expectedRequestURLs),
len(c.expectedLinkHeaders),
)
return
}
if len(c.expectedRequestURLs) != len(c.expectedBodies) {
t.Errorf(
"test case must have the same number of expected request urls (%d) as expected bodies (%d)",
len(c.expectedRequestURLs),
len(c.expectedBodies),
)
return
}
for i := range c.expectedRequestURLs {
response := &http.Response{
StatusCode: 200,
Body: httpmock.NewRespBodyFromString(c.expectedBodies[i]),
Header: http.Header{
"Link": {c.expectedLinkHeaders[i]},
},
}
httpmock.RegisterResponder("GET", c.expectedRequestURLs[i], httpmock.ResponderFromResponse(response))
}
productListings, err := client.ProductListing.ListAll(context.Background(), nil)
if !reflect.DeepEqual(productListings, c.expectedProductListings) {
t.Errorf("test %d ProductListing.ListAll orders returned %+v, expected %+v", i, productListings, c.expectedProductListings)
}
if (c.expectedErr != nil || err != nil) && err.Error() != c.expectedErr.Error() {
t.Errorf(
"test %d ProductListing.ListAll err returned %+v, expected %+v",
i,
err,
c.expectedErr,
)
}
})
}
}
func TestProductListingListWithPagination(t *testing.T) {
setup()
defer teardown()
listURL := fmt.Sprintf("https://fooshop.myshopify.com/%s/product_listings.json", client.pathPrefix)
// The strconv.Atoi error changed in go 1.8, 1.7 is still being tested/supported.
limitConversionErrorMessage := `strconv.Atoi: parsing "invalid": invalid syntax`
if runtime.Version()[2:5] == "1.7" {
limitConversionErrorMessage = `strconv.ParseInt: parsing "invalid": invalid syntax`
}
cases := []struct {
body string
linkHeader string
expectedProducts []ProductListing
expectedPagination *Pagination
expectedErr error
}{
// Expect empty pagination when there is no link header
{
`{"product_listings": [{"product_id":1},{"product_id":2}]}`,
"",
[]ProductListing{{Id: 1}, {Id: 2}},
new(Pagination),
nil,
},
// Invalid link header responses
{
"{}",
"invalid link",
[]ProductListing(nil),
nil,
ResponseDecodingError{Message: "could not extract pagination link header"},
},
{
"{}",
`<:invalid.url>; rel="next"`,
[]ProductListing(nil),
nil,
ResponseDecodingError{Message: "pagination does not contain a valid URL"},
},
{
"{}",
`<http://valid.url?%invalid_query>; rel="next"`,
[]ProductListing(nil),
nil,
errors.New(`invalid URL escape "%in"`),
},
{
"{}",
`<http://valid.url>; rel="next"`,
[]ProductListing(nil),
nil,
ResponseDecodingError{Message: "page_info is missing"},
},
{
"{}",
`<http://valid.url?page_info=foo&limit=invalid>; rel="next"`,
[]ProductListing(nil),
nil,
errors.New(limitConversionErrorMessage),
},
// Valid link header responses
{
`{"product_listings": [{"product_id":1}]}`,
`<http://valid.url?page_info=foo&limit=2>; rel="next"`,
[]ProductListing{{Id: 1}},
&Pagination{
NextPageOptions: &ListOptions{PageInfo: "foo", Limit: 2},
},
nil,
},
{
`{"product_listings": [{"product_id":2}]}`,
`<http://valid.url?page_info=foo>; rel="next", <http://valid.url?page_info=bar>; rel="previous"`,
[]ProductListing{{Id: 2}},
&Pagination{
NextPageOptions: &ListOptions{PageInfo: "foo"},
PreviousPageOptions: &ListOptions{PageInfo: "bar"},
},
nil,
},
}
for i, c := range cases {
response := &http.Response{
StatusCode: 200,
Body: httpmock.NewRespBodyFromString(c.body),
Header: http.Header{
"Link": {c.linkHeader},
},
}
httpmock.RegisterResponder("GET", listURL, httpmock.ResponderFromResponse(response))
products, pagination, err := client.ProductListing.ListWithPagination(context.Background(), nil)
if !reflect.DeepEqual(products, c.expectedProducts) {
t.Errorf("test %d ProductListing.ListWithPagination products returned %+v, expected %+v", i, products, c.expectedProducts)
}
if !reflect.DeepEqual(pagination, c.expectedPagination) {
t.Errorf(
"test %d ProductListing.ListWithPagination pagination returned %+v, expected %+v",
i,
pagination,
c.expectedPagination,
)
}
if (c.expectedErr != nil || err != nil) && err.Error() != c.expectedErr.Error() {
t.Errorf(
"test %d ProductListing.ListWithPagination err returned %+v, expected %+v",
i,
err,
c.expectedErr,
)
}
}
}
func TestProductListingsCount(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", fmt.Sprintf("https://fooshop.myshopify.com/%s/product_listings/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/product_listings/count.json", client.pathPrefix),
params,
httpmock.NewStringResponder(200, `{"count": 2}`))
cnt, err := client.ProductListing.Count(context.Background(), 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.ProductListing.Count(context.Background(), 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 TestProductListingGet(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", fmt.Sprintf("https://fooshop.myshopify.com/%s/product_listings/1.json", client.pathPrefix),
httpmock.NewStringResponder(200, `{"product_listing": {"product_id":1}}`))
product, err := client.ProductListing.Get(context.Background(), 1, nil)
if err != nil {
t.Errorf("ProductListing.Get returned error: %v", err)
}
expected := &ProductListing{Id: 1}
if !reflect.DeepEqual(product, expected) {
t.Errorf("ProductListing.Get returned %+v, expected %+v", product, expected)
}
}
func TestProductListingGetProductIds(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", fmt.Sprintf("https://fooshop.myshopify.com/%s/product_listings/product_ids.json", client.pathPrefix),
httpmock.NewStringResponder(200, `{"product_ids": [1,2,3]}`))
productIds, err := client.ProductListing.GetProductIds(context.Background(), nil)
if err != nil {
t.Errorf("ProductListing.Get returned error: %v", err)
}
expected := []uint64{1, 2, 3}
if !reflect.DeepEqual(productIds, expected) {
t.Errorf("ProductListing.Get returned %+v, expected %+v", productIds, expected)
}
}
func TestProductListingPublish(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("PUT", fmt.Sprintf("https://fooshop.myshopify.com/%s/product_listings/921728736.json", client.pathPrefix),
httpmock.NewBytesResponder(200, loadFixture("product_listing.json")))
product := Product{
Id: 921728736,
ProductType: "Cult Products",
}
returnedProduct, err := client.ProductListing.Publish(context.Background(), product.Id)
if err != nil {
t.Errorf("ProductListing.Publish returned error: %v", err)
}
productListingTests(t, *returnedProduct)
}
func TestProductListingDelete(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("DELETE", fmt.Sprintf("https://fooshop.myshopify.com/%s/product_listings/1.json", client.pathPrefix),
httpmock.NewStringResponder(200, "{}"))
err := client.ProductListing.Delete(context.Background(), 1)
if err != nil {
t.Errorf("ProductListing.Delete returned error: %v", err)
}
}