forked from getconversio/go-shopify
-
Notifications
You must be signed in to change notification settings - Fork 256
/
carrier_test.go
141 lines (116 loc) · 4.04 KB
/
carrier_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
package goshopify
import (
"context"
"fmt"
"reflect"
"testing"
"github.com/jarcoal/httpmock"
)
func TestCarrierList(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", fmt.Sprintf("https://fooshop.myshopify.com/%s/carrier_services.json", client.pathPrefix),
httpmock.NewBytesResponder(200, loadFixture("carrier_services.json")))
carriers, err := client.CarrierService.List(context.Background())
if err != nil {
t.Errorf("Carrier.List returned error: %v", err)
}
trueVar := true
expected := []CarrierService{
{
Id: 1,
Name: "Shipping Rate Provider",
Active: &trueVar,
ServiceDiscovery: true,
CarrierServiceType: "api",
AdminGraphqlApiId: "gid://shopify/DeliveryCarrierService/1",
Format: "json",
CallbackUrl: "https://fooshop.example.com/shipping",
},
}
if !reflect.DeepEqual(carriers, expected) {
t.Errorf("Carrier.List returned %+v, expected %+v", carriers, expected)
}
}
func TestCarrierGet(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", fmt.Sprintf("https://fooshop.myshopify.com/%s/carrier_services/1.json", client.pathPrefix),
httpmock.NewBytesResponder(200, loadFixture("carrier_service.json")))
carrier, err := client.CarrierService.Get(context.Background(), 1)
if err != nil {
t.Errorf("Carrier.Get returned error: %v", err)
}
trueVar := true
expected := &CarrierService{
Id: 1,
Name: "Shipping Rate Provider",
Active: &trueVar,
ServiceDiscovery: true,
CarrierServiceType: "api",
AdminGraphqlApiId: "gid://shopify/DeliveryCarrierService/1",
Format: "json",
CallbackUrl: "https://fooshop.example.com/shipping",
}
if !reflect.DeepEqual(carrier, expected) {
t.Errorf("Carrier.Get returned %+v, expected %+v", carrier, expected)
}
}
func TestCarrierCreate(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("POST", fmt.Sprintf("https://fooshop.myshopify.com/%s/carrier_services.json", client.pathPrefix),
httpmock.NewBytesResponder(200, loadFixture("carrier_service.json")))
carrier, err := client.CarrierService.Create(context.Background(), CarrierService{})
if err != nil {
t.Errorf("Carrier.Create returned error: %v", err)
}
trueVar := true
expected := &CarrierService{
Id: 1,
Name: "Shipping Rate Provider",
Active: &trueVar,
ServiceDiscovery: true,
CarrierServiceType: "api",
AdminGraphqlApiId: "gid://shopify/DeliveryCarrierService/1",
Format: "json",
CallbackUrl: "https://fooshop.example.com/shipping",
}
if !reflect.DeepEqual(carrier, expected) {
t.Errorf("Carrier.Create returned %+v, expected %+v", carrier, expected)
}
}
func TestCarrierUpdate(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("PUT", fmt.Sprintf("https://fooshop.myshopify.com/%s/carrier_services/1.json", client.pathPrefix),
httpmock.NewBytesResponder(200, loadFixture("carrier_service.json")))
carrier, err := client.CarrierService.Update(context.Background(), CarrierService{Id: 1})
if err != nil {
t.Errorf("Carrier.Update returned error: %v", err)
}
trueVar := true
expected := &CarrierService{
Id: 1,
Name: "Shipping Rate Provider",
Active: &trueVar,
ServiceDiscovery: true,
CarrierServiceType: "api",
AdminGraphqlApiId: "gid://shopify/DeliveryCarrierService/1",
Format: "json",
CallbackUrl: "https://fooshop.example.com/shipping",
}
if !reflect.DeepEqual(carrier, expected) {
t.Errorf("Carrier.Update returned %+v, expected %+v", carrier, expected)
}
}
func TestCarrierDelete(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("DELETE", fmt.Sprintf("https://fooshop.myshopify.com/%s/carrier_services/1.json", client.pathPrefix),
httpmock.NewStringResponder(200, `{}`))
err := client.CarrierService.Delete(context.Background(), 1)
if err != nil {
t.Errorf("Carrier.Delete returned error: %v", err)
}
}