forked from shurcooL/graphql
-
Notifications
You must be signed in to change notification settings - Fork 93
/
subscription_graphql_ws_test.go
378 lines (317 loc) · 8.02 KB
/
subscription_graphql_ws_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
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
package graphql
import (
"context"
"encoding/json"
"errors"
"fmt"
"io"
"log"
"math/rand"
"net/http"
"testing"
"time"
"github.com/coder/websocket"
)
const (
hasuraTestHost = "http://localhost:8080"
hasuraTestAdminSecret = "hasura"
)
type headerRoundTripper struct {
setHeaders func(req *http.Request)
rt http.RoundTripper
}
func (h headerRoundTripper) RoundTrip(req *http.Request) (*http.Response, error) {
h.setHeaders(req)
return h.rt.RoundTrip(req)
}
type user_insert_input map[string]interface{}
func hasura_setupClients(protocol SubscriptionProtocolType) (*Client, *SubscriptionClient) {
endpoint := fmt.Sprintf("%s/v1/graphql", hasuraTestHost)
client := NewClient(endpoint, &http.Client{Transport: headerRoundTripper{
setHeaders: func(req *http.Request) {
req.Header.Set("x-hasura-admin-secret", hasuraTestAdminSecret)
},
rt: http.DefaultTransport,
}})
subscriptionClient := NewSubscriptionClient(endpoint).
WithProtocol(protocol).
WithConnectionParams(map[string]interface{}{
"headers": map[string]string{
"x-hasura-admin-secret": hasuraTestAdminSecret,
},
}).WithLog(log.Println)
return client, subscriptionClient
}
func waitService(endpoint string, timeoutSecs int) error {
var err error
var res *http.Response
for i := 0; i < timeoutSecs; i++ {
res, err = http.Get(endpoint)
if err == nil && res.StatusCode == 200 {
return nil
}
time.Sleep(time.Second)
}
if err != nil {
return err
}
if res != nil {
body, err := io.ReadAll(res.Body)
if err != nil {
return errors.New(res.Status)
}
return errors.New(string(body))
}
return errors.New("unknown error")
}
func randomID() string {
var letter = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789")
b := make([]rune, 16)
for i := range b {
b[i] = letter[rand.Intn(len(letter))]
}
return string(b)
}
func waitHasuraService(timeoutSecs int) error {
return waitService(fmt.Sprintf("%s/healthz", hasuraTestHost), timeoutSecs)
}
func TestGraphqlWS_Subscription(t *testing.T) {
stop := make(chan bool)
client, subscriptionClient := hasura_setupClients(GraphQLWS)
msg := randomID()
hasKeepAlive := false
subscriptionClient = subscriptionClient.
OnConnectionAlive(func() {
hasKeepAlive = true
}).
OnError(func(sc *SubscriptionClient, err error) error {
return err
})
/*
subscription {
user {
id
name
}
}
*/
var sub struct {
Users []struct {
ID int `graphql:"id"`
Name string `graphql:"name"`
} `graphql:"user(order_by: { id: desc }, limit: 5)"`
}
_, err := subscriptionClient.Subscribe(sub, nil, func(data []byte, e error) error {
if e != nil {
t.Fatalf("got error: %v, want: nil", e)
return nil
}
log.Println("result", string(data))
e = json.Unmarshal(data, &sub)
if e != nil {
t.Fatalf("got error: %v, want: nil", e)
return nil
}
if len(sub.Users) > 0 && sub.Users[0].Name != msg {
t.Fatalf("subscription message does not match. got: %s, want: %s", sub.Users[0].Name, msg)
}
return errors.New("exit")
})
if err != nil {
t.Fatalf("got error: %v, want: nil", err)
}
go func() {
if err := subscriptionClient.Run(); err == nil || err.Error() != "exit" {
t.Errorf("got error: %v, want: exit", err)
}
stop <- true
}()
defer subscriptionClient.Close()
// wait until the subscription client connects to the server
if err := waitHasuraService(60); err != nil {
t.Fatalf("failed to start hasura service: %s", err)
}
// call a mutation request to send message to the subscription
/*
mutation InsertUser($objects: [user_insert_input!]!) {
insert_user(objects: $objects) {
id
name
}
}
*/
var q struct {
InsertUser struct {
Returning []struct {
ID int `graphql:"id"`
Name string `graphql:"name"`
} `graphql:"returning"`
} `graphql:"insert_user(objects: $objects)"`
}
variables := map[string]interface{}{
"objects": []user_insert_input{
{
"name": msg,
},
},
}
err = client.Mutate(context.Background(), &q, variables, OperationName("InsertUser"))
if err != nil {
t.Fatalf("got error: %v, want: nil", err)
}
<-stop
if !hasKeepAlive {
t.Fatalf("expected OnConnectionAlive event, got none")
}
}
func TestGraphqlWS_SubscriptionRerun(t *testing.T) {
client, subscriptionClient := hasura_setupClients(GraphQLWS)
msg := randomID()
subscriptionClient = subscriptionClient.
OnError(func(sc *SubscriptionClient, err error) error {
return err
})
/*
subscription {
user {
id
name
}
}
*/
var sub struct {
Users []struct {
ID int `graphql:"id"`
Name string `graphql:"name"`
} `graphql:"user(order_by: { id: desc }, limit: 5)"`
}
subId1, err := subscriptionClient.Subscribe(sub, nil, func(data []byte, e error) error {
if e != nil {
t.Fatalf("got error: %v, want: nil", e)
return nil
}
log.Println("result", string(data))
e = json.Unmarshal(data, &sub)
if e != nil {
t.Fatalf("got error: %v, want: nil", e)
return nil
}
if len(sub.Users) > 0 && sub.Users[0].Name != msg {
t.Fatalf("subscription message does not match. got: %s, want: %s", sub.Users[0].Name, msg)
}
return nil
})
if err != nil {
t.Fatalf("got error: %v, want: nil", err)
}
go func() {
if err := subscriptionClient.Run(); err != nil {
t.Errorf("got error: %v, want: nil", err)
}
}()
defer subscriptionClient.Close()
// wait until the subscription client connects to the server
if err := waitHasuraService(60); err != nil {
t.Fatalf("failed to start hasura service: %s", err)
}
// call a mutation request to send message to the subscription
/*
mutation InsertUser($objects: [user_insert_input!]!) {
insert_user(objects: $objects) {
id
name
}
}
*/
var q struct {
InsertUser struct {
Returning []struct {
ID int `graphql:"id"`
Name string `graphql:"name"`
} `graphql:"returning"`
} `graphql:"insert_user(objects: $objects)"`
}
variables := map[string]interface{}{
"objects": []user_insert_input{
{
"name": msg,
},
},
}
err = client.Mutate(context.Background(), &q, variables, OperationName("InsertUser"))
if err != nil {
t.Fatalf("got error: %v, want: nil", err)
}
time.Sleep(2 * time.Second)
go func() {
time.Sleep(2 * time.Second)
_ = subscriptionClient.Unsubscribe(subId1)
}()
if err := subscriptionClient.Run(); err != nil {
t.Fatalf("got error: %v, want: nil", err)
}
}
func TestGraphQLWS_OnError(t *testing.T) {
stop := make(chan bool)
subscriptionClient := NewSubscriptionClient(fmt.Sprintf("%s/v1/graphql", hasuraTestHost)).
WithProtocol(GraphQLWS).
WithConnectionParams(map[string]interface{}{
"headers": map[string]string{
"x-hasura-admin-secret": "test",
},
}).WithLog(log.Println)
msg := randomID()
subscriptionClient = subscriptionClient.
OnConnected(func() {
log.Println("client connected")
}).
OnError(func(sc *SubscriptionClient, err error) error {
log.Println("OnError: ", err)
return err
})
/*
subscription {
user {
id
name
}
}
*/
var sub struct {
Users []struct {
ID int `graphql:"id"`
Name string `graphql:"name"`
} `graphql:"user(order_by: { id: desc }, limit: 5)"`
}
_, err := subscriptionClient.Subscribe(sub, nil, func(data []byte, e error) error {
if e != nil {
t.Fatalf("got error: %v, want: nil", e)
return nil
}
log.Println("result", string(data))
e = json.Unmarshal(data, &sub)
if e != nil {
t.Fatalf("got error: %v, want: nil", e)
return nil
}
if len(sub.Users) > 0 && sub.Users[0].Name != msg {
t.Fatalf("subscription message does not match. got: %s, want: %s", sub.Users[0].Name, msg)
}
return nil
})
if err != nil {
t.Fatalf("got error: %v, want: nil", err)
}
go func() {
if err := subscriptionClient.Run(); err == nil || websocket.CloseStatus(err) != 4400 {
t.Errorf("got error: %v, want: 4400", err)
}
stop <- true
}()
defer subscriptionClient.Close()
// wait until the subscription client connects to the server
if err := waitHasuraService(60); err != nil {
t.Fatalf("failed to start hasura service: %s", err)
}
<-stop
}