forked from s-norris/go-shopify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
util_test.go
102 lines (91 loc) · 2.42 KB
/
util_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
package goshopify
import (
"testing"
)
func TestShopFullName(t *testing.T) {
cases := []struct {
in, expected string
}{
{"myshop", "myshop.myshopify.com"},
{"myshop.", "myshop.myshopify.com"},
{" myshop", "myshop.myshopify.com"},
{"myshop ", "myshop.myshopify.com"},
{"myshop \n", "myshop.myshopify.com"},
{"myshop.myshopify.com", "myshop.myshopify.com"},
}
for _, c := range cases {
actual := ShopFullName(c.in)
if actual != c.expected {
t.Errorf("ShopFullName(%s): expected %s, actual %s", c.in, c.expected, actual)
}
}
}
func TestShopShortName(t *testing.T) {
cases := []struct {
in, expected string
}{
{"myshop", "myshop"},
{"myshop.", "myshop"},
{" myshop", "myshop"},
{"myshop ", "myshop"},
{"myshop \n", "myshop"},
{"myshop.myshopify.com", "myshop"},
{".myshop.myshopify.com.", "myshop"},
}
for _, c := range cases {
actual := ShopShortName(c.in)
if actual != c.expected {
t.Errorf("ShopShortName(%s): expected %s, actual %s", c.in, c.expected, actual)
}
}
}
func TestShopBaseUrl(t *testing.T) {
cases := []struct {
in, expected string
}{
{"myshop", "https://myshop.myshopify.com"},
{"myshop.", "https://myshop.myshopify.com"},
{" myshop", "https://myshop.myshopify.com"},
{"myshop ", "https://myshop.myshopify.com"},
{"myshop \n", "https://myshop.myshopify.com"},
{"myshop.myshopify.com", "https://myshop.myshopify.com"},
}
for _, c := range cases {
actual := ShopBaseUrl(c.in)
if actual != c.expected {
t.Errorf("ShopBaseUrl(%s): expected %s, actual %s", c.in, c.expected, actual)
}
}
}
func TestMetafieldPathPrefix(t *testing.T) {
cases := []struct {
resource string
resourceID int64
expected string
}{
{"", 0, "metafields"},
{"products", 123, "products/123/metafields"},
}
for _, c := range cases {
actual := MetafieldPathPrefix(c.resource, c.resourceID)
if actual != c.expected {
t.Errorf("MetafieldPathPrefix(%s, %d): expected %s, actual %s", c.resource, c.resourceID, c.expected, actual)
}
}
}
func TestFulfillmentPathPrefix(t *testing.T) {
cases := []struct {
resource string
resourceID int64
expected string
}{
{"", 0, "fulfillments"},
{"orders", 123, "orders/123/fulfillments"},
}
for _, c := range cases {
actual := FulfillmentPathPrefix(c.resource, c.resourceID)
if actual != c.expected {
t.Errorf("FulfillmentPathPrefix(%s, %d): expected %s, actual %s", c.resource, c.resourceID, c.expected, actual)
}
}
}