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
/
scripttag_test.go
120 lines (94 loc) · 2.97 KB
/
scripttag_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
package goshopify
import (
"reflect"
"testing"
"gopkg.in/jarcoal/httpmock.v1"
)
func TestScriptTagList(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/script_tags.json",
httpmock.NewStringResponder(200, `{"script_tags": [{"id": 1},{"id": 2}]}`))
scriptTags, err := client.ScriptTag.List(nil)
if err != nil {
t.Errorf("ScriptTag.List returned error: %v", err)
}
expected := []ScriptTag{{ID: 1}, {ID: 2}}
if !reflect.DeepEqual(scriptTags, expected) {
t.Errorf("ScriptTag.List returned %+v, expected %+v", scriptTags, expected)
}
}
func TestScriptTagCount(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/script_tags/count.json",
httpmock.NewStringResponder(200, `{"count": 3}`))
cnt, err := client.ScriptTag.Count(nil)
if err != nil {
t.Errorf("ScriptTag.Count returned error: %v", err)
}
expected := 3
if cnt != expected {
t.Errorf("ScriptTag.Count returned %d, expected %d", cnt, expected)
}
}
func TestScriptTagGet(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", "https://fooshop.myshopify.com/admin/script_tags/1.json",
httpmock.NewStringResponder(200, `{"script_tag": {"id": 1}}`))
scriptTag, err := client.ScriptTag.Get(1, nil)
if err != nil {
t.Errorf("ScriptTag.Get returned error: %v", err)
}
expected := &ScriptTag{ID: 1}
if !reflect.DeepEqual(scriptTag, expected) {
t.Errorf("ScriptTag.Get returned %+v, expected %+v", scriptTag, expected)
}
}
func scriptTagTests(t *testing.T, tag ScriptTag) {
expected := 870402688
if tag.ID != expected {
t.Errorf("tag.ID is %+v, expected %+v", tag.ID, expected)
}
}
func TestScriptTagCreate(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("POST", "https://fooshop.myshopify.com/admin/script_tags.json",
httpmock.NewBytesResponder(200, loadFixture("script_tags.json")))
tag0 := ScriptTag{
Src: "https://djavaskripped.org/fancy.js",
Event: "onload",
DisplayScope: "all",
}
returnedTag, err := client.ScriptTag.Create(tag0)
if err != nil {
t.Errorf("ScriptTag.Create returned error: %v", err)
}
scriptTagTests(t, *returnedTag)
}
func TestScriptTagUpdate(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("PUT", "https://fooshop.myshopify.com/admin/script_tags/1.json",
httpmock.NewBytesResponder(200, loadFixture("script_tags.json")))
tag := ScriptTag{
ID: 1,
Src: "https://djavaskripped.org/fancy.js",
}
returnedTag, err := client.ScriptTag.Update(tag)
if err != nil {
t.Errorf("ScriptTag.Update returned error: %v", err)
}
scriptTagTests(t, *returnedTag)
}
func TestScriptTagDelete(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("DELETE", "https://fooshop.myshopify.com/admin/script_tags/1.json",
httpmock.NewStringResponder(200, "{}"))
if err := client.ScriptTag.Delete(1); err != nil {
t.Errorf("ScriptTag.Delete returned error: %v", err)
}
}