forked from bold-commerce/go-shopify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
discount_code_test.go
128 lines (104 loc) · 3.43 KB
/
discount_code_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
package goshopify
import (
"context"
"fmt"
"testing"
"github.com/jarcoal/httpmock"
)
func TestDiscountCodeList(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder(
"GET",
fmt.Sprintf("https://fooshop.myshopify.com/%s/price_rules/507328175/discount_codes.json", client.pathPrefix),
httpmock.NewStringResponder(
200,
`{"discount_codes":[{"id":507328175,"price_rule_id":507328175,"code":"SUMMERSALE10OFF","usage_count":0,"created_at":"2018-07-05T12:41:00-04:00","updated_at":"2018-07-05T12:41:00-04:00"}]}`,
),
)
codes, err := client.DiscountCode.List(context.Background(), 507328175)
if err != nil {
t.Errorf("DiscountCode.List returned error: %v", err)
}
expected := []PriceRuleDiscountCode{{Id: 507328175}}
if expected[0].Id != codes[0].Id {
t.Errorf("DiscountCode.List returned %+v, expected %+v", codes, expected)
}
}
func TestDiscountCodeGet(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder(
"GET",
fmt.Sprintf("https://fooshop.myshopify.com/%s/price_rules/507328175/discount_codes/507328175.json", client.pathPrefix),
httpmock.NewStringResponder(
200,
`{"discount_code":{"id":507328175,"price_rule_id":507328175,"code":"SUMMERSALE10OFF","usage_count":0,"created_at":"2018-07-05T12:41:00-04:00","updated_at":"2018-07-05T12:41:00-04:00"}}`,
),
)
dc, err := client.DiscountCode.Get(context.Background(), 507328175, 507328175)
if err != nil {
t.Errorf("DiscountCode.Get returned error: %v", err)
}
expected := &PriceRuleDiscountCode{Id: 507328175}
if dc.Id != expected.Id {
t.Errorf("DiscountCode.Get returned %+v, expected %+v", dc, expected)
}
}
func TestDiscountCodeCreate(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder(
"POST",
fmt.Sprintf("https://fooshop.myshopify.com/%s/price_rules/507328175/discount_codes.json", client.pathPrefix),
httpmock.NewBytesResponder(
201,
loadFixture("discount_code.json"),
),
)
dc := PriceRuleDiscountCode{
Code: "SUMMERSALE10OFF",
}
returnedDC, err := client.DiscountCode.Create(context.Background(), 507328175, dc)
if err != nil {
t.Errorf("DiscountCode.Create returned error: %v", err)
}
expectedInt := uint64(1054381139)
if returnedDC.Id != expectedInt {
t.Errorf("DiscountCode.Id returned %+v, expected %+v", returnedDC.Id, expectedInt)
}
}
func TestDiscountCodeUpdate(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder(
"PUT",
fmt.Sprintf("https://fooshop.myshopify.com/%s/price_rules/507328175/discount_codes/1054381139.json", client.pathPrefix),
httpmock.NewBytesResponder(
200,
loadFixture("discount_code.json"),
),
)
dc := PriceRuleDiscountCode{
Id: uint64(1054381139),
Code: "SUMMERSALE10OFF",
}
returnedDC, err := client.DiscountCode.Update(context.Background(), 507328175, dc)
if err != nil {
t.Errorf("DiscountCode.Update returned error: %v", err)
}
expectedInt := uint64(1054381139)
if returnedDC.Id != expectedInt {
t.Errorf("DiscountCode.Id returned %+v, expected %+v", returnedDC.Id, expectedInt)
}
}
func TestDiscountCodeDelete(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("DELETE", fmt.Sprintf("https://fooshop.myshopify.com/%s/price_rules/507328175/discount_codes/507328175.json", client.pathPrefix),
httpmock.NewStringResponder(204, "{}"))
err := client.DiscountCode.Delete(context.Background(), 507328175, 507328175)
if err != nil {
t.Errorf("DiscountCode.Delete returned error: %v", err)
}
}