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 323
/
fulfillment_test.go
191 lines (143 loc) · 5.75 KB
/
fulfillment_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
package goshopify
import (
"reflect"
"testing"
"time"
httpmock "gopkg.in/jarcoal/httpmock.v1"
)
func FulfillmentTests(t *testing.T, fulfillment Fulfillment) {
// Check that ID is assigned to the returned fulfillment
expectedInt := 1022782888
if fulfillment.ID != expectedInt {
t.Errorf("Fulfillment.ID returned %+v, expected %+v", fulfillment.ID, expectedInt)
}
}
func TestFulfillmentList(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/orders/123/fulfillments.json",
httpmock.NewStringResponder(200, `{"fulfillments": [{"id":1},{"id":2}]}`))
fulfillmentService := &FulfillmentServiceOp{client: client, resource: ordersResourceName, resourceID: 123}
fulfillments, err := fulfillmentService.List(nil)
if err != nil {
t.Errorf("Fulfillment.List returned error: %v", err)
}
expected := []Fulfillment{{ID: 1}, {ID: 2}}
if !reflect.DeepEqual(fulfillments, expected) {
t.Errorf("Fulfillment.List returned %+v, expected %+v", fulfillments, expected)
}
}
func TestFulfillmentCount(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/orders/123/fulfillments/count.json",
httpmock.NewStringResponder(200, `{"count": 3}`))
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/orders/123/fulfillments/count.json?created_at_min=2016-01-01T00%3A00%3A00Z",
httpmock.NewStringResponder(200, `{"count": 2}`))
fulfillmentService := &FulfillmentServiceOp{client: client, resource: ordersResourceName, resourceID: 123}
cnt, err := fulfillmentService.Count(nil)
if err != nil {
t.Errorf("Fulfillment.Count returned error: %v", err)
}
expected := 3
if cnt != expected {
t.Errorf("Fulfillment.Count returned %d, expected %d", cnt, expected)
}
date := time.Date(2016, time.January, 1, 0, 0, 0, 0, time.UTC)
cnt, err = fulfillmentService.Count(CountOptions{CreatedAtMin: date})
if err != nil {
t.Errorf("Fulfillment.Count returned error: %v", err)
}
expected = 2
if cnt != expected {
t.Errorf("Fulfillment.Count returned %d, expected %d", cnt, expected)
}
}
func TestFulfillmentGet(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/orders/123/fulfillments/1.json",
httpmock.NewStringResponder(200, `{"fulfillment": {"id":1}}`))
fulfillmentService := &FulfillmentServiceOp{client: client, resource: ordersResourceName, resourceID: 123}
fulfillment, err := fulfillmentService.Get(1, nil)
if err != nil {
t.Errorf("Fulfillment.Get returned error: %v", err)
}
expected := &Fulfillment{ID: 1}
if !reflect.DeepEqual(fulfillment, expected) {
t.Errorf("Fulfillment.Get returned %+v, expected %+v", fulfillment, expected)
}
}
func TestFulfillmentCreate(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("POST", "https://fooshop.myshopify.com/admin/orders/123/fulfillments.json",
httpmock.NewBytesResponder(200, loadFixture("fulfillment.json")))
fulfillmentService := &FulfillmentServiceOp{client: client, resource: ordersResourceName, resourceID: 123}
fulfillment := Fulfillment{
LocationID: 905684977,
TrackingNumber: "123456789",
TrackingUrls: []string{
"https://shipping.xyz/track.php?num=123456789",
"https://anothershipper.corp/track.php?code=abc",
},
NotifyCustomer: true,
}
returnedFulfillment, err := fulfillmentService.Create(fulfillment)
if err != nil {
t.Errorf("Fulfillment.Create returned error: %v", err)
}
FulfillmentTests(t, *returnedFulfillment)
}
func TestFulfillmentUpdate(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("PUT", "https://fooshop.myshopify.com/admin/orders/123/fulfillments/1022782888.json",
httpmock.NewBytesResponder(200, loadFixture("fulfillment.json")))
fulfillmentService := &FulfillmentServiceOp{client: client, resource: ordersResourceName, resourceID: 123}
fulfillment := Fulfillment{
ID: 1022782888,
TrackingNumber: "987654321",
}
returnedFulfillment, err := fulfillmentService.Update(fulfillment)
if err != nil {
t.Errorf("Fulfillment.Update returned error: %v", err)
}
FulfillmentTests(t, *returnedFulfillment)
}
func TestFulfillmentComplete(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("POST", "https://fooshop.myshopify.com/admin/orders/123/fulfillments/1/complete.json",
httpmock.NewBytesResponder(200, loadFixture("fulfillment.json")))
fulfillmentService := &FulfillmentServiceOp{client: client, resource: ordersResourceName, resourceID: 123}
returnedFulfillment, err := fulfillmentService.Complete(1)
if err != nil {
t.Errorf("Fulfillment.Complete returned error: %v", err)
}
FulfillmentTests(t, *returnedFulfillment)
}
func TestFulfillmentTransition(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("POST", "https://fooshop.myshopify.com/admin/orders/123/fulfillments/1/open.json",
httpmock.NewBytesResponder(200, loadFixture("fulfillment.json")))
fulfillmentService := &FulfillmentServiceOp{client: client, resource: ordersResourceName, resourceID: 123}
returnedFulfillment, err := fulfillmentService.Transition(1)
if err != nil {
t.Errorf("Fulfillment.Transition returned error: %v", err)
}
FulfillmentTests(t, *returnedFulfillment)
}
func TestFulfillmentCancel(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("POST", "https://fooshop.myshopify.com/admin/orders/123/fulfillments/1/cancel.json",
httpmock.NewBytesResponder(200, loadFixture("fulfillment.json")))
fulfillmentService := &FulfillmentServiceOp{client: client, resource: ordersResourceName, resourceID: 123}
returnedFulfillment, err := fulfillmentService.Cancel(1)
if err != nil {
t.Errorf("Fulfillment.Cancel returned error: %v", err)
}
FulfillmentTests(t, *returnedFulfillment)
}