forked from bold-commerce/go-shopify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metafield_test.go
161 lines (130 loc) · 4.58 KB
/
metafield_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
package goshopify
import (
"context"
"fmt"
"reflect"
"testing"
"time"
"github.com/jarcoal/httpmock"
)
func MetafieldTests(t *testing.T, metafield Metafield) {
// Check that Id is assigned to the returned metafield
expectedInt := uint64(1)
if metafield.Id != expectedInt {
t.Errorf("Metafield.Id returned %+v, expected %+v", metafield.Id, expectedInt)
}
}
func TestMetafieldList(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", fmt.Sprintf("https://fooshop.myshopify.com/%s/metafields.json", client.pathPrefix),
httpmock.NewStringResponder(200, `{"metafields": [{"id":1},{"id":2}]}`))
metafields, err := client.Metafield.List(context.Background(), nil)
if err != nil {
t.Errorf("Metafield.List returned error: %v", err)
}
expected := []Metafield{{Id: 1}, {Id: 2}}
if !reflect.DeepEqual(metafields, expected) {
t.Errorf("Metafield.List returned %+v, expected %+v", metafields, expected)
}
}
func TestMetafieldCount(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", fmt.Sprintf("https://fooshop.myshopify.com/%s/metafields/count.json", client.pathPrefix),
httpmock.NewStringResponder(200, `{"count": 3}`))
params := map[string]string{"created_at_min": "2016-01-01T00:00:00Z"}
httpmock.RegisterResponderWithQuery(
"GET",
fmt.Sprintf("https://fooshop.myshopify.com/%s/metafields/count.json", client.pathPrefix),
params,
httpmock.NewStringResponder(200, `{"count": 2}`))
cnt, err := client.Metafield.Count(context.Background(), nil)
if err != nil {
t.Errorf("Metafield.Count returned error: %v", err)
}
expected := 3
if cnt != expected {
t.Errorf("Metafield.Count returned %d, expected %d", cnt, expected)
}
date := time.Date(2016, time.January, 1, 0, 0, 0, 0, time.UTC)
cnt, err = client.Metafield.Count(context.Background(), CountOptions{CreatedAtMin: date})
if err != nil {
t.Errorf("Metafield.Count returned error: %v", err)
}
expected = 2
if cnt != expected {
t.Errorf("Metafield.Count returned %d, expected %d", cnt, expected)
}
}
func TestMetafieldGet(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", fmt.Sprintf("https://fooshop.myshopify.com/%s/metafields/1.json", client.pathPrefix),
httpmock.NewBytesResponder(200, loadFixture("metafield.json")))
metafield, err := client.Metafield.Get(context.Background(), 1, nil)
if err != nil {
t.Errorf("Metafield.Get returned error: %v", err)
}
createdAt := time.Date(2016, time.January, 1, 0, 0, 0, 0, time.UTC)
updatedAt := time.Date(2016, time.January, 2, 0, 0, 0, 0, time.UTC)
expected := &Metafield{
Id: 1,
Key: "app_key",
Value: "app_value",
Type: MetafieldTypeSingleLineTextField,
Namespace: "affiliates",
Description: "some amaaazing app's value",
OwnerId: 1,
CreatedAt: &createdAt,
UpdatedAt: &updatedAt,
OwnerResource: "shop",
AdminGraphqlApiId: "gid://shopify/Metafield/1",
}
if !reflect.DeepEqual(metafield, expected) {
t.Errorf("Metafield.Get returned %+v, expected %+v", metafield, expected)
}
}
func TestMetafieldCreate(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("POST", fmt.Sprintf("https://fooshop.myshopify.com/%s/metafields.json", client.pathPrefix),
httpmock.NewBytesResponder(200, loadFixture("metafield.json")))
metafield := Metafield{
Namespace: "inventory",
Key: "warehouse",
Value: 25,
Type: MetafieldTypeNumberInteger,
}
returnedMetafield, err := client.Metafield.Create(context.Background(), metafield)
if err != nil {
t.Errorf("Metafield.Create returned error: %v", err)
}
MetafieldTests(t, *returnedMetafield)
}
func TestMetafieldUpdate(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("PUT", fmt.Sprintf("https://fooshop.myshopify.com/%s/metafields/1.json", client.pathPrefix),
httpmock.NewBytesResponder(200, loadFixture("metafield.json")))
metafield := Metafield{
Id: 1,
Value: "something new",
Type: MetafieldTypeSingleLineTextField,
}
returnedMetafield, err := client.Metafield.Update(context.Background(), metafield)
if err != nil {
t.Errorf("Metafield.Update returned error: %v", err)
}
MetafieldTests(t, *returnedMetafield)
}
func TestMetafieldDelete(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("DELETE", fmt.Sprintf("https://fooshop.myshopify.com/%s/metafields/1.json", client.pathPrefix),
httpmock.NewStringResponder(200, "{}"))
err := client.Metafield.Delete(context.Background(), 1)
if err != nil {
t.Errorf("Metafield.Delete returned error: %v", err)
}
}