forked from getconversio/go-shopify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsmartcollection_test.go
154 lines (122 loc) · 4.29 KB
/
smartcollection_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
package goshopify
import (
"reflect"
"testing"
"time"
httpmock "gopkg.in/jarcoal/httpmock.v1"
)
func smartCollectionTests(t *testing.T, collection SmartCollection) {
// 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},
{"Column", "title", collection.Rules[0].Column},
{"Relation", "contains", collection.Rules[0].Relation},
{"Condition", "mac", collection.Rules[0].Condition},
{"Disjunctive", true, collection.Disjunctive},
}
for _, c := range cases {
if c.expected != c.actual {
t.Errorf("SmartCollection.%v returned %v, expected %v", c.field, c.actual, c.expected)
}
}
}
func TestSmartCollectionList(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/smart_collections.json",
httpmock.NewStringResponder(200, `{"smart_collections": [{"id":1},{"id":2}]}`))
collections, err := client.SmartCollection.List(nil)
if err != nil {
t.Errorf("SmartCollection.List returned error: %v", err)
}
expected := []SmartCollection{{ID: 1}, {ID: 2}}
if !reflect.DeepEqual(collections, expected) {
t.Errorf("SmartCollection.List returned %+v, expected %+v", collections, expected)
}
}
func TestSmartCollectionCount(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/smart_collections/count.json",
httpmock.NewStringResponder(200, `{"count": 5}`))
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/smart_collections/count.json?created_at_min=2016-01-01T00%3A00%3A00Z",
httpmock.NewStringResponder(200, `{"count": 2}`))
cnt, err := client.SmartCollection.Count(nil)
if err != nil {
t.Errorf("SmartCollection.Count returned error: %v", err)
}
expected := 5
if cnt != expected {
t.Errorf("SmartCollection.Count returned %d, expected %d", cnt, expected)
}
date := time.Date(2016, time.January, 1, 0, 0, 0, 0, time.UTC)
cnt, err = client.SmartCollection.Count(CountOptions{CreatedAtMin: date})
if err != nil {
t.Errorf("SmartCollection.Count returned error: %v", err)
}
expected = 2
if cnt != expected {
t.Errorf("SmartCollection.Count returned %d, expected %d", cnt, expected)
}
}
func TestSmartCollectionGet(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/smart_collections/1.json",
httpmock.NewStringResponder(200, `{"smart_collection": {"id":1}}`))
collection, err := client.SmartCollection.Get(1, nil)
if err != nil {
t.Errorf("SmartCollection.Get returned error: %v", err)
}
expected := &SmartCollection{ID: 1}
if !reflect.DeepEqual(collection, expected) {
t.Errorf("SmartCollection.Get returned %+v, expected %+v", collection, expected)
}
}
func TestSmartCollectionCreate(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("POST", "https://fooshop.myshopify.com/admin/smart_collections.json",
httpmock.NewBytesResponder(200, loadFixture("smartcollection.json")))
collection := SmartCollection{
Title: "Macbooks",
}
returnedCollection, err := client.SmartCollection.Create(collection)
if err != nil {
t.Errorf("SmartCollection.Create returned error: %v", err)
}
smartCollectionTests(t, *returnedCollection)
}
func TestSmartCollectionUpdate(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("PUT", "https://fooshop.myshopify.com/admin/smart_collections/1.json",
httpmock.NewBytesResponder(200, loadFixture("smartcollection.json")))
collection := SmartCollection{
ID: 1,
Title: "Macbooks",
}
returnedCollection, err := client.SmartCollection.Update(collection)
if err != nil {
t.Errorf("SmartCollection.Update returned error: %v", err)
}
smartCollectionTests(t, *returnedCollection)
}
func TestSmartCollectionDelete(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("DELETE", "https://fooshop.myshopify.com/admin/smart_collections/1.json",
httpmock.NewStringResponder(200, "{}"))
err := client.SmartCollection.Delete(1)
if err != nil {
t.Errorf("SmartCollection.Delete returned error: %v", err)
}
}