forked from shurcooL/graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraphql_test.go
More file actions
236 lines (220 loc) · 6.04 KB
/
Copy pathgraphql_test.go
File metadata and controls
236 lines (220 loc) · 6.04 KB
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
package graphql_test
import (
"context"
"io"
"io/ioutil"
"net/http"
"net/http/httptest"
"testing"
"github.com/merico-ai/graphql"
)
func TestClient_Query_MergeItems(t *testing.T) {
mux := http.NewServeMux()
mux.HandleFunc("/graphql", func(w http.ResponseWriter, req *http.Request) {
w.Header().Set("Content-Type", "application/json")
mustWrite(w, `{
"data": {
"node__0": {
"id": "1"
},
"node__1": {
"id": "2"
}
}
}`)
})
client := graphql.NewClient("/graphql", &http.Client{Transport: localRoundTripper{handler: mux}})
var q struct {
AnotherName []struct {
ID graphql.ID
} `graphql:"node(id: $id)" graphql-extend:"true"`
}
variables := map[string]interface{}{
"node": []map[string]interface{}{
{"id": "1"},
{"id": "2"},
},
}
dataErrors, err := client.Query(context.Background(), &q, variables)
if dataErrors != nil {
t.Fatal("got dataErrors: non-nil, want: nil")
}
if err != nil {
t.Fatal("got error: non-nil, want: nil")
}
if q.AnotherName == nil {
t.Fatal("q.AnotherName got error: nil, want: non-nil")
}
if q.AnotherName[0].ID != "1" || q.AnotherName[1].ID != "2" {
t.Errorf("got wrong q.AnotherName: %v", q.AnotherName)
}
}
func TestClient_Query_partialDataWithErrorResponse(t *testing.T) {
mux := http.NewServeMux()
mux.HandleFunc("/graphql", func(w http.ResponseWriter, req *http.Request) {
w.Header().Set("Content-Type", "application/json")
mustWrite(w, `{
"data": {
"node1": {
"id": "MDEyOklzc3VlQ29tbWVudDE2OTQwNzk0Ng=="
},
"node2": null
},
"errors": [
{
"message": "Could not resolve to a node with the global id of 'NotExist'",
"type": "NOT_FOUND",
"path": [
"node2"
],
"locations": [
{
"line": 10,
"column": 4
}
]
}
]
}`)
})
client := graphql.NewClient("/graphql", &http.Client{Transport: localRoundTripper{handler: mux}})
var q struct {
Node1 *struct {
ID graphql.ID
} `graphql:"node1: node(id: \"MDEyOklzc3VlQ29tbWVudDE2OTQwNzk0Ng==\")"`
Node2 *struct {
ID graphql.ID
} `graphql:"node2: node(id: \"NotExist\")"`
}
dataErrors, err := client.Query(context.Background(), &q, nil)
if dataErrors == nil {
t.Fatal("got dataErrors: nil, want: non-nil")
}
if err != nil {
t.Fatal("got error: non-nil, want: nil")
}
if got, want := dataErrors[0].Error(), "Could not resolve to a node with the global id of 'NotExist'"; got != want {
t.Errorf("got error: %v, want: %v", got, want)
}
if q.Node1 == nil || q.Node1.ID != "MDEyOklzc3VlQ29tbWVudDE2OTQwNzk0Ng==" {
t.Errorf("got wrong q.Node1: %v", q.Node1)
}
if q.Node2 != nil {
t.Errorf("got non-nil q.Node2: %v, want: nil", *q.Node2)
}
}
func TestClient_Query_noDataWithErrorResponse(t *testing.T) {
mux := http.NewServeMux()
mux.HandleFunc("/graphql", func(w http.ResponseWriter, req *http.Request) {
w.Header().Set("Content-Type", "application/json")
mustWrite(w, `{
"errors": [
{
"message": "Field 'user' is missing required arguments: login",
"locations": [
{
"line": 7,
"column": 3
}
]
}
]
}`)
})
client := graphql.NewClient("/graphql", &http.Client{Transport: localRoundTripper{handler: mux}})
var q struct {
User struct {
Name graphql.String
}
}
dataErrors, err := client.Query(context.Background(), &q, nil)
if dataErrors == nil {
t.Fatal("got dataErrors: nil, want: non-nil")
}
if err != nil {
t.Fatal("got error: non-nil, want: nil")
}
if got, want := dataErrors[0].Error(), "Field 'user' is missing required arguments: login"; got != want {
t.Errorf("got error: %v, want: %v", got, want)
}
if q.User.Name != "" {
t.Errorf("got non-empty q.User.Name: %v", q.User.Name)
}
}
func TestClient_Query_errorStatusCode(t *testing.T) {
mux := http.NewServeMux()
mux.HandleFunc("/graphql", func(w http.ResponseWriter, req *http.Request) {
http.Error(w, "important message", http.StatusInternalServerError)
})
client := graphql.NewClient("/graphql", &http.Client{Transport: localRoundTripper{handler: mux}})
var q struct {
User struct {
Name graphql.String
}
}
dataErrors, err := client.Query(context.Background(), &q, nil)
if dataErrors != nil {
t.Fatal("got dataErrors: non-nil, want: nil")
}
if err == nil {
t.Fatal("got error: nil, want: non-nil")
}
if got, want := err.Error(), `non-200 OK status code: 500 Internal Server Error body: "important message\n"`; got != want {
t.Errorf("got error: %v, want: %v", got, want)
}
if q.User.Name != "" {
t.Errorf("got non-empty q.User.Name: %v", q.User.Name)
}
}
// Test that an empty (but non-nil) variables map is
// handled no differently than a nil variables map.
func TestClient_Query_emptyVariables(t *testing.T) {
mux := http.NewServeMux()
mux.HandleFunc("/graphql", func(w http.ResponseWriter, req *http.Request) {
body := mustRead(req.Body)
if got, want := body, `{"query":"{user{name}}"}`+"\n"; got != want {
t.Errorf("got body: %v, want %v", got, want)
}
w.Header().Set("Content-Type", "application/json")
mustWrite(w, `{"data": {"user": {"name": "Gopher"}}}`)
})
client := graphql.NewClient("/graphql", &http.Client{Transport: localRoundTripper{handler: mux}})
var q struct {
User struct {
Name string
}
}
dataErrors, err := client.Query(context.Background(), &q, map[string]interface{}{})
if dataErrors != nil {
t.Fatal(dataErrors)
}
if err != nil {
t.Fatal(err)
}
if got, want := q.User.Name, "Gopher"; got != want {
t.Errorf("got q.User.Name: %q, want: %q", got, want)
}
}
// localRoundTripper is an http.RoundTripper that executes HTTP transactions
// by using handler directly, instead of going over an HTTP connection.
type localRoundTripper struct {
handler http.Handler
}
func (l localRoundTripper) RoundTrip(req *http.Request) (*http.Response, error) {
w := httptest.NewRecorder()
l.handler.ServeHTTP(w, req)
return w.Result(), nil
}
func mustRead(r io.Reader) string {
b, err := ioutil.ReadAll(r)
if err != nil {
panic(err)
}
return string(b)
}
func mustWrite(w io.Writer, s string) {
_, err := io.WriteString(w, s)
if err != nil {
panic(err)
}
}