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 324
/
variant_test.go
146 lines (115 loc) · 3.77 KB
/
variant_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
package goshopify
import (
"reflect"
"testing"
"time"
"github.com/shopspring/decimal"
httpmock "gopkg.in/jarcoal/httpmock.v1"
)
func variantTests(t *testing.T, variant Variant) {
// Check that the ID is assigned to the returned variant
expectedInt := 1
if variant.ID != expectedInt {
t.Errorf("Variant.ID returned %+v, expected %+v", variant.ID, expectedInt)
}
// Check that the Title is assigned to the returned variant
expectedTitle := "Yellow"
if variant.Title != expectedTitle {
t.Errorf("Variant.Title returned %+v, expected %+v", variant.Title, expectedTitle)
}
}
func TestVariantList(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/products/1/variants.json",
httpmock.NewStringResponder(200, `{"variants": [{"id":1},{"id":2}]}`))
variants, err := client.Variant.List(1, nil)
if err != nil {
t.Errorf("Variant.List returned error: %v", err)
}
expected := []Variant{{ID: 1}, {ID: 2}}
if !reflect.DeepEqual(variants, expected) {
t.Errorf("Variant.List returned %+v, expected %+v", variants, expected)
}
}
func TestVariantCount(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/products/1/variants/count.json",
httpmock.NewStringResponder(200, `{"count": 3}`))
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/products/1/variants/count.json?created_at_min=2016-01-01T00%3A00%3A00Z",
httpmock.NewStringResponder(200, `{"count": 2}`))
cnt, err := client.Variant.Count(1, nil)
if err != nil {
t.Errorf("Variant.Count returned error: %v", err)
}
expected := 3
if cnt != expected {
t.Errorf("Variant.Count returned %d, expected %d", cnt, expected)
}
date := time.Date(2016, time.January, 1, 0, 0, 0, 0, time.UTC)
cnt, err = client.Variant.Count(1, CountOptions{CreatedAtMin: date})
if err != nil {
t.Errorf("Variant.Count returned %d, expected %d", cnt, expected)
}
expected = 2
if cnt != expected {
t.Errorf("Variant.Count returned %d, expected %d", cnt, expected)
}
}
func TestVariantGet(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/variants/1.json",
httpmock.NewStringResponder(200, `{"variant": {"id":1}}`))
variant, err := client.Variant.Get(1, nil)
if err != nil {
t.Errorf("Variant.Get returned error: %v", err)
}
expected := &Variant{ID: 1}
if !reflect.DeepEqual(variant, expected) {
t.Errorf("Variant.Get returned %+v, expected %+v", variant, expected)
}
}
func TestVariantCreate(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("POST", "https://fooshop.myshopify.com/admin/products/1/variants.json",
httpmock.NewBytesResponder(200, loadFixture("variant.json")))
price := decimal.NewFromFloat(1)
variant := Variant{
Option1: "Yellow",
Price: &price,
}
result, err := client.Variant.Create(1, variant)
if err != nil {
t.Errorf("Variant.Create returned error: %v", err)
}
variantTests(t, *result)
}
func TestVariantUpdate(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("PUT", "https://fooshop.myshopify.com/admin/variants/1.json",
httpmock.NewBytesResponder(200, loadFixture("variant.json")))
variant := Variant{
ID: 1,
Option1: "Green",
}
variant.Option1 = "Yellow"
returnedVariant, err := client.Variant.Update(variant)
if err != nil {
t.Errorf("Variant.Update returned error: %v", err)
}
variantTests(t, *returnedVariant)
}
func TestVariantDelete(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("DELETE", "https://fooshop.myshopify.com/admin/products/1/variants/1.json",
httpmock.NewStringResponder(200, "{}"))
err := client.Variant.Delete(1, 1)
if err != nil {
t.Errorf("Variant.Delete returned error: %v", err)
}
}