forked from bold-commerce/go-shopify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorder_test.go
189 lines (148 loc) · 4.91 KB
/
order_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
package goshopify
import (
"testing"
"time"
"github.com/shopspring/decimal"
"gopkg.in/jarcoal/httpmock.v1"
)
func orderTests(t *testing.T, order Order) {
// Check that dates are parsed
d := time.Date(2016, time.May, 17, 4, 14, 36, 0, time.UTC)
if !d.Equal(*order.CreatedAt) {
t.Errorf("Order.CreatedAt returned %+v, expected %+v", order.CreatedAt, d)
}
// Check null dates
if order.ProcessedAt != nil {
t.Errorf("Order.ProcessedAt returned %+v, expected %+v", order.ProcessedAt, nil)
}
// Check prices
p := decimal.NewFromFloat(10)
if !p.Equals(*order.TotalPrice) {
t.Errorf("Order.TotalPrice returned %+v, expected %+v", order.TotalPrice, p)
}
// Check null prices, notice that prices are usually not empty.
if order.TotalTax != nil {
t.Errorf("Order.TotalTax returned %+v, expected %+v", order.TotalTax, nil)
}
// Check customer
if order.Customer == nil {
t.Error("Expected Customer to not be nil")
}
if order.Customer.Email != "[email protected]" {
t.Errorf("Customer.Email, expected %v, actual %v", "[email protected]", order.Customer.Email)
}
}
func transactionTest(t *testing.T, transaction Transaction) {
// Check that dates are parsed
d := time.Date(2017, time.October, 9, 19, 26, 23, 0, time.UTC)
if !d.Equal(*transaction.CreatedAt) {
t.Errorf("Transaction.CreatedAt returned %+v, expected %+v", transaction.CreatedAt, d)
}
// Check null value
if transaction.LocationID != nil {
t.Error("Expected Transaction.LocationID to be nil")
}
if transaction.PaymentDetails == nil {
t.Error("Expected Transaction.PaymentDetails to not be nil")
}
}
func TestOrderList(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/orders.json",
httpmock.NewBytesResponder(200, loadFixture("orders.json")))
orders, err := client.Order.List(nil)
if err != nil {
t.Errorf("Order.List returned error: %v", err)
}
// Check that orders were parsed
if len(orders) != 1 {
t.Errorf("Order.List got %v orders, expected: 1", len(orders))
}
order := orders[0]
orderTests(t, order)
}
func TestOrderListOptions(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/orders.json?limit=250&page=10&status=any",
httpmock.NewBytesResponder(200, loadFixture("orders.json")))
options := OrderListOptions{
Page: 10,
Limit: 250,
Status: "any"}
orders, err := client.Order.List(options)
if err != nil {
t.Errorf("Order.List returned error: %v", err)
}
// Check that orders were parsed
if len(orders) != 1 {
t.Errorf("Order.List got %v orders, expected: 1", len(orders))
}
order := orders[0]
orderTests(t, order)
}
func TestOrderGet(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/orders/123456.json",
httpmock.NewBytesResponder(200, loadFixture("order.json")))
order, err := client.Order.Get(123456, nil)
if err != nil {
t.Errorf("Order.List returned error: %v", err)
}
// Check that dates are parsed
timezone, _ := time.LoadLocation("America/New_York")
d := time.Date(2016, time.May, 17, 4, 14, 36, 0, timezone)
if !d.Equal(*order.CancelledAt) {
t.Errorf("Order.CancelledAt returned %+v, expected %+v", order.CancelledAt, d)
}
orderTests(t, *order)
}
func TestOrderGetWithTransactions(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/orders/123456.json",
httpmock.NewBytesResponder(200, loadFixture("order_with_transaction.json")))
options := struct {
ApiFeatures string `url:"_apiFeatures"`
}{"include-transactions"}
order, err := client.Order.Get(123456, options)
if err != nil {
t.Errorf("Order.List returned error: %v", err)
}
orderTests(t, *order)
// Check transactions is not nil
if order.Transactions == nil {
t.Error("Expected Transactions to not be nil")
}
if len(order.Transactions) != 1 {
t.Errorf("Expected Transactions to have 1 transaction but received %v", len(order.Transactions))
}
transactionTest(t, order.Transactions[0])
}
func TestOrderCount(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/orders/count.json",
httpmock.NewStringResponder(200, `{"count": 7}`))
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/orders/count.json?created_at_min=2016-01-01T00%3A00%3A00Z",
httpmock.NewStringResponder(200, `{"count": 2}`))
cnt, err := client.Order.Count(nil)
if err != nil {
t.Errorf("Order.Count returned error: %v", err)
}
expected := 7
if cnt != expected {
t.Errorf("Order.Count returned %d, expected %d", cnt, expected)
}
date := time.Date(2016, time.January, 1, 0, 0, 0, 0, time.UTC)
cnt, err = client.Order.Count(CountOptions{CreatedAtMin: date})
if err != nil {
t.Errorf("Order.Count returned error: %v", err)
}
expected = 2
if cnt != expected {
t.Errorf("Order.Count returned %d, expected %d", cnt, expected)
}
}