forked from getconversio/go-shopify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustomcollection_test.go
151 lines (118 loc) · 4.11 KB
/
customcollection_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
package goshopify
import (
"reflect"
"testing"
"time"
httpmock "gopkg.in/jarcoal/httpmock.v1"
)
func customCollectionTests(t *testing.T, collection CustomCollection) {
// Test a few fields
cases := []struct {
field string
expected interface{}
actual interface{}
}{
{"ID", 30497275952, collection.ID},
{"Handle", "macbooks", collection.Handle},
{"Title", "Macbooks", collection.Title},
{"BodyHTML", "Macbook Body", collection.BodyHTML},
{"SortOrder", "best-selling", collection.SortOrder},
}
for _, c := range cases {
if c.expected != c.actual {
t.Errorf("CustomCollection.%v returned %v, expected %v", c.field, c.actual, c.expected)
}
}
}
func TestCustomCollectionList(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/custom_collections.json",
httpmock.NewStringResponder(200, `{"custom_collections": [{"id":1},{"id":2}]}`))
products, err := client.CustomCollection.List(nil)
if err != nil {
t.Errorf("CustomCollection.List returned error: %v", err)
}
expected := []CustomCollection{{ID: 1}, {ID: 2}}
if !reflect.DeepEqual(products, expected) {
t.Errorf("CustomCollection.List returned %+v, expected %+v", products, expected)
}
}
func TestCustomCollectionCount(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/custom_collections/count.json",
httpmock.NewStringResponder(200, `{"count": 5}`))
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/custom_collections/count.json?created_at_min=2016-01-01T00%3A00%3A00Z",
httpmock.NewStringResponder(200, `{"count": 2}`))
cnt, err := client.CustomCollection.Count(nil)
if err != nil {
t.Errorf("CustomCollection.Count returned error: %v", err)
}
expected := 5
if cnt != expected {
t.Errorf("CustomCollection.Count returned %d, expected %d", cnt, expected)
}
date := time.Date(2016, time.January, 1, 0, 0, 0, 0, time.UTC)
cnt, err = client.CustomCollection.Count(CountOptions{CreatedAtMin: date})
if err != nil {
t.Errorf("CustomCollection.Count returned error: %v", err)
}
expected = 2
if cnt != expected {
t.Errorf("CustomCollection.Count returned %d, expected %d", cnt, expected)
}
}
func TestCustomCollectionGet(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/custom_collections/1.json",
httpmock.NewStringResponder(200, `{"custom_collection": {"id":1}}`))
product, err := client.CustomCollection.Get(1, nil)
if err != nil {
t.Errorf("CustomCollection.Get returned error: %v", err)
}
expected := &CustomCollection{ID: 1}
if !reflect.DeepEqual(product, expected) {
t.Errorf("CustomCollection.Get returned %+v, expected %+v", product, expected)
}
}
func TestCustomCollectionCreate(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("POST", "https://fooshop.myshopify.com/admin/custom_collections.json",
httpmock.NewBytesResponder(200, loadFixture("customcollection.json")))
collection := CustomCollection{
Title: "Macbooks",
}
returnedCollection, err := client.CustomCollection.Create(collection)
if err != nil {
t.Errorf("CustomCollection.Create returned error: %v", err)
}
customCollectionTests(t, *returnedCollection)
}
func TestCustomCollectionUpdate(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("PUT", "https://fooshop.myshopify.com/admin/custom_collections/1.json",
httpmock.NewBytesResponder(200, loadFixture("customcollection.json")))
collection := CustomCollection{
ID: 1,
Title: "Macbooks",
}
returnedCollection, err := client.CustomCollection.Update(collection)
if err != nil {
t.Errorf("CustomCollection.Update returned error: %v", err)
}
customCollectionTests(t, *returnedCollection)
}
func TestCustomCollectionDelete(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("DELETE", "https://fooshop.myshopify.com/admin/custom_collections/1.json",
httpmock.NewStringResponder(200, "{}"))
err := client.CustomCollection.Delete(1)
if err != nil {
t.Errorf("CustomCollection.Delete returned error: %v", err)
}
}