-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintegration_test.ts
More file actions
496 lines (426 loc) · 13.8 KB
/
integration_test.ts
File metadata and controls
496 lines (426 loc) · 13.8 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
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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
/**
* Integration tests for @probitas/client-graphql using echo-graphql.
*
* Run with:
* docker compose up -d echo-graphql
* deno test -A packages/probitas-client-graphql/integration_test.ts
* docker compose down
*/
import {
assert,
assertEquals,
assertExists,
assertFalse,
assertInstanceOf,
assertLess,
} from "@std/assert";
import { createGraphqlClient, GraphqlNetworkError, outdent } from "./mod.ts";
const GRAPHQL_URL = Deno.env.get("GRAPHQL_URL") ??
"http://localhost:8100/graphql";
async function isGraphqlServerAvailable(): Promise<boolean> {
try {
const res = await fetch(GRAPHQL_URL, {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ query: "{ __typename }" }),
signal: AbortSignal.timeout(1000),
});
await res.body?.cancel();
return res.ok;
} catch {
return false;
}
}
Deno.test({
name: "Integration: echo-graphql",
ignore: !(await isGraphqlServerAvailable()),
async fn(t) {
const client = createGraphqlClient({ url: GRAPHQL_URL });
await t.step("introspection query - __typename", async () => {
const res = await client.query<{ __typename: string }>(
"{ __typename }",
);
assert(res.ok);
assertEquals(res.status, 200);
assertExists(res.data);
assertEquals(res.data?.__typename, "Query");
});
await t.step("introspection query - __schema", async () => {
const res = await client.query<{
__schema: { queryType: { name: string } };
}>("{ __schema { queryType { name } } }");
assert(res.ok);
assertExists(res.data);
assertEquals(res.data?.__schema.queryType.name, "Query");
});
await t.step("echo query - basic message", async () => {
const res = await client.query<{ echo: string }>(
outdent`
query Echo($message: String!) {
echo(message: $message)
}
`,
{ message: "Hello, Probitas!" },
);
assert(res.ok);
assertExists(res.data);
assertEquals(res.data?.echo, "Hello, Probitas!");
});
await t.step("echoWithDelay for latency testing", async () => {
const start = Date.now();
const res = await client.query<{ echoWithDelay: string }>(
outdent`
query EchoWithDelay($message: String!, $delayMs: Int!) {
echoWithDelay(message: $message, delayMs: $delayMs)
}
`,
{ message: "Delayed message", delayMs: 500 },
);
const elapsed = Date.now() - start;
assert(res.ok);
assertExists(res.data);
assertEquals(res.data?.echoWithDelay, "Delayed message");
// Should have taken at least 500ms
assertEquals(
elapsed >= 450,
true,
`Expected elapsed >= 450ms, got ${elapsed}ms`,
);
});
await t.step("echoError returns GraphQL error", async () => {
const clientNoThrow = createGraphqlClient({
url: GRAPHQL_URL,
throwOnError: false,
});
const res = await clientNoThrow.query<{ echoError: string }>(
outdent`
query EchoError($message: String!) {
echoError(message: $message)
}
`,
{ message: "This should fail" },
);
assertFalse(res.ok);
await clientNoThrow.close();
});
await t.step(
"echoPartialError returns partial data with errors",
async () => {
const clientNoThrow = createGraphqlClient({
url: GRAPHQL_URL,
throwOnError: false,
});
// echoPartialError takes [String!]! and returns [EchoResult!]!
// Messages containing "error" should fail per documentation
const res = await clientNoThrow.query<{
echoPartialError: Array<
{ message: string | null; error: string | null }
>;
}>(
outdent`
query PartialError($messages: [String!]!) {
echoPartialError(messages: $messages) {
message
error
}
}
`,
{ messages: ["success", "error", "also success"] },
);
assert(res.ok);
assertExists(res.data);
const results = res.data?.echoPartialError;
// First and third should succeed, second should have error
assertEquals(results?.[0]?.message, "success");
assertEquals(results?.[0]?.error, null);
assertEquals(results?.[1]?.message, null);
assertEquals(results?.[1]?.error, "message contains 'error'");
assertEquals(results?.[2]?.message, "also success");
assertEquals(results?.[2]?.error, null);
await clientNoThrow.close();
},
);
await t.step("query with operationName", async () => {
const res = await client.query(
outdent`
query FirstQuery { __typename }
query SecondQuery { __schema { queryType { name } } }
`,
undefined,
{ operationName: "FirstQuery" },
);
assert(res.ok);
});
await t.step("includes duration in response", async () => {
const res = await client.query("{ __typename }");
assertEquals(typeof res.duration, "number");
assertEquals(res.duration >= 0, true);
});
await t.step("includes status in response", async () => {
const res = await client.query("{ __typename }");
assertEquals(res.status, 200);
});
await t.step("includes raw response", async () => {
const res = await client.query("{ __typename }");
assertInstanceOf(res.raw, Response);
});
await t.step("using await using (AsyncDisposable)", async () => {
await using c = createGraphqlClient({ url: GRAPHQL_URL });
const res = await c.query("{ __typename }");
assert(res.ok);
});
await t.step("default headers from config", async () => {
const clientWithHeaders = createGraphqlClient({
url: GRAPHQL_URL,
headers: {
"Authorization": "Bearer test-token",
"X-Custom-Header": "custom-value",
},
});
const res = await clientWithHeaders.query("{ __typename }");
assert(res.ok);
await clientWithHeaders.close();
});
await t.step("request headers override config headers", async () => {
const clientWithHeaders = createGraphqlClient({
url: GRAPHQL_URL,
headers: { "X-Header": "from-config" },
});
const res = await clientWithHeaders.query(
"{ __typename }",
undefined,
{ headers: { "X-Header": "from-request" } },
);
assert(res.ok);
await clientWithHeaders.close();
});
await t.step(
"throws GraphqlNetworkError on validation error (HTTP 422)",
async () => {
// echo-graphql returns HTTP 422 for invalid queries
// Use throwOnError: true to test throwing behavior
const throwingClient = createGraphqlClient({
url: GRAPHQL_URL,
throwOnError: true,
});
try {
await throwingClient.query("{ nonExistentField }");
throw new Error("Expected GraphqlNetworkError");
} catch (error) {
assertInstanceOf(error, GraphqlNetworkError);
assertEquals(error.message.includes("422"), true);
}
await throwingClient.close();
},
);
await t.step(
"echoError query returns GraphQL error in response",
async () => {
const clientNoThrow = createGraphqlClient({
url: GRAPHQL_URL,
throwOnError: false,
});
const res = await clientNoThrow.query<{ echoError: string }>(
outdent`
query EchoError($message: String!) {
echoError(message: $message)
}
`,
{ message: "This triggers an error" },
);
assertFalse(res.ok);
await clientNoThrow.close();
},
);
await t.step("execute() works for queries", async () => {
const res = await client.execute("query { __typename }");
assert(res.ok);
});
await t.step("mutation - createMessage", async () => {
const res = await client.mutation<{
createMessage: { id: string; text: string; createdAt: string };
}>(
outdent`
mutation CreateMessage($text: String!) {
createMessage(text: $text) {
id
text
createdAt
}
}
`,
{ text: "Hello from integration test" },
);
assert(res.ok);
assertExists(res.data);
const message = res.data?.createMessage;
assertEquals(message?.text, "Hello from integration test");
assertEquals(typeof message?.id, "string");
assertEquals(typeof message?.createdAt, "string");
});
await t.step("standard assertion chaining", async () => {
const res = await client.query<{ __typename: string }>("{ __typename }");
assert(res.ok);
assertEquals(res.status, 200);
assertExists(res.data);
assertEquals(res.data?.__typename, "Query");
assertLess(res.duration, 5000);
});
await t.step(
"echoWithExtensions returns data with extensions",
async () => {
const res = await client.query<{
echoWithExtensions: string;
}>(
outdent`
query EchoWithExtensions($message: String!) {
echoWithExtensions(message: $message)
}
`,
{ message: "Hello" },
);
assert(res.ok);
assertExists(res.data);
assertEquals(res.data?.echoWithExtensions, "Hello");
// Server includes timing and tracing extensions
assertEquals(typeof res.extensions?.timing, "object");
assertEquals(typeof res.extensions?.tracing, "object");
},
);
await t.step("mutation - updateMessage", async () => {
// First create a message
const createRes = await client.mutation<{
createMessage: { id: string; text: string };
}>(
outdent`
mutation CreateMessage($text: String!) {
createMessage(text: $text) {
id
text
}
}
`,
{ text: "Original text" },
);
const messageId = createRes.data?.createMessage.id;
// Then update it
const updateRes = await client.mutation<{
updateMessage: { id: string; text: string };
}>(
outdent`
mutation UpdateMessage($id: ID!, $text: String!) {
updateMessage(id: $id, text: $text) {
id
text
}
}
`,
{ id: messageId, text: "Updated text" },
);
assert(updateRes.ok);
assertExists(updateRes.data);
assertEquals(updateRes.data?.updateMessage.id, messageId);
assertEquals(updateRes.data?.updateMessage.text, "Updated text");
});
await t.step("mutation - deleteMessage", async () => {
// First create a message
const createRes = await client.mutation<{
createMessage: { id: string };
}>(
outdent`
mutation CreateMessage($text: String!) {
createMessage(text: $text) {
id
}
}
`,
{ text: "To be deleted" },
);
const messageId = createRes.data?.createMessage.id;
// Then delete it
const deleteRes = await client.mutation<{
deleteMessage: boolean;
}>(
outdent`
mutation DeleteMessage($id: ID!) {
deleteMessage(id: $id)
}
`,
{ id: messageId },
);
assert(deleteRes.ok);
assertExists(deleteRes.data);
assertEquals(deleteRes.data?.deleteMessage, true);
});
await t.step("subscription - countdown", async () => {
const wsClient = createGraphqlClient({
url: GRAPHQL_URL,
wsEndpoint: GRAPHQL_URL.replace("http", "ws"),
});
try {
const numbers: number[] = [];
for await (
const res of wsClient.subscribe<{ countdown: number }>(
outdent`
subscription Countdown($from: Int!) {
countdown(from: $from)
}
`,
{ from: 3 },
)
) {
assert(res.ok);
assertExists(res.data);
numbers.push(res.data?.countdown ?? -1);
}
assertEquals(numbers, [3, 2, 1, 0]);
} finally {
await wsClient.close();
}
});
await t.step("echoHeaders - verify headers delivery", async () => {
const clientWithHeaders = createGraphqlClient({
url: GRAPHQL_URL,
headers: {
"Authorization": "Bearer test-token-123",
"X-Client-Id": "probitas-integration-test",
},
});
try {
const res = await clientWithHeaders.query<{
echoHeaders: {
authorization: string | null;
custom: string | null;
all: Array<{ name: string; value: string }>;
};
}>(
outdent`
query EchoHeaders {
echoHeaders {
authorization
custom(name: "x-client-id")
all { name value }
}
}
`,
undefined,
{ headers: { "X-Request-Id": "req-789" } },
);
assert(res.ok);
assertExists(res.data);
const headers = res.data?.echoHeaders;
// Verify config-level headers were sent
assertEquals(headers?.authorization, "Bearer test-token-123");
assertEquals(headers?.custom, "probitas-integration-test");
// Verify request-level headers were sent via all field
const requestIdHeader = headers?.all.find((h) =>
h.name.toLowerCase() === "x-request-id"
);
assertEquals(requestIdHeader?.value, "req-789");
} finally {
await clientWithHeaders.close();
}
});
await client.close();
},
});