-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata_structs_test.go
163 lines (146 loc) · 3.25 KB
/
data_structs_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
162
163
package jsonapi
import (
"encoding/json"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
var _ = Describe("JSONAPI Struct tests", func() {
Context("Testing array and object data payload", func() {
It("detects object payload", func() {
sampleJSON := `{
"data": {
"type": "test",
"id": "1",
"attributes": {"foo": "bar"},
"relationships": {
"author": {
"data": {"type": "author", "id": "1"}
}
}
}
}`
expectedData := &Data{
Type: "test",
ID: "1",
Attributes: json.RawMessage([]byte(`{"foo": "bar"}`)),
Relationships: map[string]Relationship{
"author": {
Data: &RelationshipDataContainer{
DataObject: &RelationshipData{
Type: "author",
ID: "1",
},
},
},
},
}
target := Document{}
err := json.Unmarshal([]byte(sampleJSON), &target)
Expect(err).ToNot(HaveOccurred())
Expect(target.Data.DataObject).To(Equal(expectedData))
})
It("detects array payload", func() {
sampleJSON := `{
"data": [
{
"type": "test",
"id": "1",
"attributes": {"foo": "bar"},
"relationships": {
"comments": {
"data": [
{"type": "comments", "id": "1"},
{"type": "comments", "id": "2"}
]
}
}
}
]
}`
expectedData := Data{
Type: "test",
ID: "1",
Attributes: json.RawMessage([]byte(`{"foo": "bar"}`)),
Relationships: map[string]Relationship{
"comments": {
Data: &RelationshipDataContainer{
DataArray: []RelationshipData{
{
Type: "comments",
ID: "1",
},
{
Type: "comments",
ID: "2",
},
},
},
},
},
}
target := Document{}
err := json.Unmarshal([]byte(sampleJSON), &target)
Expect(err).ToNot(HaveOccurred())
Expect(target.Data.DataArray).To(Equal([]Data{expectedData}))
})
})
It("return an error for invalid relationship data format", func() {
sampleJSON := `
{
"data": [
{
"type": "test",
"id": "1",
"attributes": {"foo": "bar"},
"relationships": {
"comments": {
"data": "foo"
}
}
}
]
}`
target := Document{}
err := json.Unmarshal([]byte(sampleJSON), &target)
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(Equal("Invalid json for relationship data array/object"))
})
It("creates an empty slice for empty to-many relationships and nil for empty toOne", func() {
sampleJSON := `{
"data": [
{
"type": "test",
"id": "1",
"attributes": {"foo": "bar"},
"relationships": {
"comments": {
"data": []
},
"author": {
"data": null
}
}
}
]
}`
expectedData := Data{
Type: "test",
ID: "1",
Attributes: json.RawMessage([]byte(`{"foo": "bar"}`)),
Relationships: map[string]Relationship{
"comments": {
Data: &RelationshipDataContainer{
DataArray: []RelationshipData{},
},
},
"author": {
Data: nil,
},
},
}
target := Document{}
err := json.Unmarshal([]byte(sampleJSON), &target)
Expect(err).ToNot(HaveOccurred())
Expect(target.Data.DataArray).To(Equal([]Data{expectedData}))
})
})