-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconnection.test.ts
More file actions
690 lines (632 loc) · 24.2 KB
/
Copy pathconnection.test.ts
File metadata and controls
690 lines (632 loc) · 24.2 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
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
import { readFileSync } from "fs";
import { resolve } from "path";
import { expect, test, describe, vi, beforeEach } from "vitest";
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
import fetchMockBuilder, { FetchMock } from "vitest-fetch-mock";
import WebSocket from "ws";
import { Connection } from "./connection";
import { CLIENT_HEADER_NAME, buildHop } from "./clientHeader";
import { Runtime, SessionType } from "./constants";
import {
SESSION_LIFECYCLE_RESPONSES,
simulateImmediatelyReadySession,
simulateSessionCreateInvalidResponse,
simulateSessionCreateTimeout,
simulateSessionCreateTransientNetworkError,
simulateSessionCreateUnauthenticated,
simulateSessionCreationLifecycle,
simulateSessionPollInvalidResponse,
simulateSessionPollTransientNetworkError,
simulateSessionServiceError,
} from "./testing/mockSessionBehaviors";
import {
createMockWebSocket,
expectAllSocketListenersRemoved,
getSentMessages,
resetMockWebSocket,
simulateImmediatelyOpenSocket,
simulateSocketWithConnectionClosed,
simulateSocketWithConnectionError,
simulateSocketWithConnectionTimeout,
simulateSocketWithMultipleExecutions,
simulateSocketWithMultipleExecutionsOneError,
simulateSocketWithSingleExecution,
simulateSocketWithSingleExecutionError,
simulateSocketWithSingleExecutionPaused,
simulateSocketWithTransitentConnectionErrors,
wasSocketClosed,
mockWebSocketDefaultImplementation,
simulateHandleOpen,
simulateStateUpdateSuccess,
simulateWebSocketEvent,
simulateExecutionResult,
} from "./testing/mockSocketBehaviors";
import { NUM_RESLIENCY_RETRIES } from "./api-utils";
import { OpenSocket } from "./platform/types";
// unfortunately, AbortController.timeout functionality can't be mocked using
// vitest fake timers, so we have to replace it with an equivalent implementation
// that uses setTimeout
global.AbortSignal.timeout = (delay: number) => {
const controller = new AbortController();
setTimeout(
() =>
controller.abort(
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
new global.DOMException("The operation timed out.", "TimeoutError"),
),
delay,
);
return controller.signal;
};
const showSchemasExpectedPayload = JSON.parse(
readFileSync(resolve(__dirname, "./testing/payloads/showSchemas.json"), {
encoding: "utf-8",
}),
);
const showTablesExpectedPayload = JSON.parse(
readFileSync(resolve(__dirname, "./testing/payloads/showTables.json"), {
encoding: "utf-8",
}),
);
const showSchemasPayloadBrotli = new Uint8Array(
readFileSync(resolve(__dirname, "./testing/payloads/showSchemas.br")),
);
const fetchMock = fetchMockBuilder(vi);
const MockWebSocket = createMockWebSocket();
const testHarness = {
fetch: fetchMock as unknown as typeof fetch,
// The connection opens sockets through `openSocket`; route it to the mock
// constructor so the existing simulate* helpers (which inspect the mock's
// calls/results) keep working unchanged.
openSocket: (() => MockWebSocket()) as unknown as OpenSocket,
};
const testApiKey = "12345678-1234-1234-1234-123456789ab";
const expectCorrectApiKey = () => {
expect(fetchMock).toHaveBeenCalledWith(
expect.any(String),
expect.objectContaining({
headers: expect.objectContaining({
"X-API-Key": testApiKey,
}),
}),
);
};
const expectMatchingSessionCreateBody = (
fetchMock: FetchMock,
expectedBody: unknown,
) => {
const createCall = fetchMock.mock.calls.find(
(call) => call[1]?.method === "POST",
);
const body = JSON.parse(createCall?.[1]?.body as string);
expect(body).toEqual(expect.objectContaining(expectedBody));
};
const createConnectionUnderTest = () =>
Connection.connect(
{
apiKey: testApiKey,
runtime: Runtime.TINY,
},
{ ...testHarness },
);
beforeEach(() => {
fetchMock.mockReset();
resetMockWebSocket(MockWebSocket);
vi.useFakeTimers();
});
describe("Connection.connect, when passed connection options", () => {
test("accepts valid arguments", async () => {
simulateImmediatelyReadySession(fetchMock);
simulateImmediatelyOpenSocket(MockWebSocket);
const connection = createConnectionUnderTest();
vi.runAllTimersAsync();
await expect(connection).resolves.toBeInstanceOf(Connection);
expectCorrectApiKey();
});
test("identifies itself with a well-formed client-attribution hop", async () => {
simulateImmediatelyReadySession(fetchMock);
simulateImmediatelyOpenSocket(MockWebSocket);
const connection = createConnectionUnderTest();
vi.runAllTimersAsync();
await connection;
expect(fetchMock).toHaveBeenCalledWith(
expect.any(String),
expect.objectContaining({
headers: expect.objectContaining({
[CLIENT_HEADER_NAME]: buildHop(),
}),
}),
);
});
test("keeps a caller-supplied chain to the left of its own hop", async () => {
simulateImmediatelyReadySession(fetchMock);
simulateImmediatelyOpenSocket(MockWebSocket);
const connection = Connection.connect(
{ apiKey: testApiKey, clientChain: "client=studio-frontend" },
testHarness,
);
vi.runAllTimersAsync();
await connection;
expect(fetchMock).toHaveBeenCalledWith(
expect.any(String),
expect.objectContaining({
headers: expect.objectContaining({
[CLIENT_HEADER_NAME]: `client=studio-frontend, ${buildHop()}`,
}),
}),
);
});
test("rejects if API key is missing", async () => {
if (process.env["WHEROBOTS_API_KEY"]) {
throw new Error(
"this test is invalid if WHEROBOTS_API_KEY environment variable is set",
);
}
const connection = Connection.connect(
{
runtime: Runtime.TINY,
},
testHarness,
);
vi.runAllTimersAsync();
await expect(connection).rejects.toBeInstanceOf(Error);
expect(fetchMock).not.toHaveBeenCalled();
});
test("does not reject if API key is set via env variable", async () => {
simulateImmediatelyReadySession(fetchMock);
simulateImmediatelyOpenSocket(MockWebSocket);
const previousApiKey = process.env["WHEROBOTS_API_KEY"];
process.env["WHEROBOTS_API_KEY"] = testApiKey;
try {
const connection = Connection.connect(
{
runtime: Runtime.TINY,
},
testHarness,
);
vi.runAllTimersAsync();
await expect(connection).resolves.toBeInstanceOf(Connection);
expectCorrectApiKey();
} finally {
process.env["WHEROBOTS_API_KEY"] = previousApiKey;
}
});
test("rejects if given invalid arguments", async () => {
const connection = Connection.connect(
{
apiKey: testApiKey,
// A non-string runtime is still invalid (region/runtime now accept
// any string, but not arbitrary types).
runtime: 123 as unknown as Runtime,
},
testHarness,
);
vi.runAllTimersAsync();
await expect(connection).rejects.toBeInstanceOf(Error);
expect(fetchMock).not.toHaveBeenCalled();
});
test("passes raw region/runtime strings through (e.g. BYOC)", async () => {
simulateImmediatelyReadySession(fetchMock);
simulateImmediatelyOpenSocket(MockWebSocket);
const connection = Connection.connect(
{
apiKey: testApiKey,
runtime: "x-large",
region: "byoc-acme-us-east-1",
},
{ ...testHarness },
);
vi.runAllTimersAsync();
await connection;
const createCall = fetchMock.mock.calls.find(
(call) => call[1]?.method === "POST",
);
expect(createCall?.[0]).toContain("region=byoc-acme-us-east-1");
const body = JSON.parse(createCall?.[1]?.body as string);
expect(body.runtimeId).toBe("x-large");
});
test("omits region and runtime when not provided", async () => {
simulateImmediatelyReadySession(fetchMock);
simulateImmediatelyOpenSocket(MockWebSocket);
const connection = Connection.connect(
{
apiKey: testApiKey,
},
{ ...testHarness },
);
vi.runAllTimersAsync();
await connection;
const createCall = fetchMock.mock.calls.find(
(call) => call[1]?.method === "POST",
);
expect(createCall?.[0]).not.toContain("region=");
const body = JSON.parse(createCall?.[1]?.body as string);
expect(body.runtimeId).toBeUndefined();
});
test("defaults to 'single' session type", async () => {
simulateImmediatelyReadySession(fetchMock);
simulateImmediatelyOpenSocket(MockWebSocket);
Connection.connect(
{
apiKey: testApiKey,
runtime: Runtime.TINY,
},
testHarness,
);
vi.runAllTimersAsync();
expectMatchingSessionCreateBody(fetchMock, {
sessionType: "single",
});
});
test("can be set to 'multi' session type", async () => {
simulateImmediatelyReadySession(fetchMock);
simulateImmediatelyOpenSocket(MockWebSocket);
Connection.connect(
{
apiKey: testApiKey,
runtime: Runtime.TINY,
sessionType: SessionType.MULTI,
},
testHarness,
);
vi.runAllTimersAsync();
expectMatchingSessionCreateBody(fetchMock, {
sessionType: "multi",
});
});
test("can be set with shutdownAfterInactiveSeconds", async () => {
simulateImmediatelyReadySession(fetchMock);
simulateImmediatelyOpenSocket(MockWebSocket);
Connection.connect(
{
apiKey: testApiKey,
runtime: Runtime.TINY,
shutdownAfterInactiveSeconds: 3600,
},
testHarness,
);
vi.runAllTimersAsync();
expectMatchingSessionCreateBody(fetchMock, {
shutdownAfterInactiveSeconds: 3600,
});
});
test("rejects if shutdownAfterInactiveSeconds is invalid", async () => {
const connection = Connection.connect(
{
apiKey: testApiKey,
runtime: Runtime.TINY,
shutdownAfterInactiveSeconds: -100,
},
testHarness,
);
vi.runAllTimersAsync();
await expect(connection).rejects.toBeInstanceOf(Error);
expect(fetchMock).not.toHaveBeenCalled();
});
});
describe("Connection.connect, when establishing SQL session", () => {
test("polls until READY state is reached", async () => {
simulateSessionCreationLifecycle(fetchMock);
simulateImmediatelyOpenSocket(MockWebSocket);
const connection = createConnectionUnderTest();
vi.runAllTimersAsync();
await expect(connection).resolves.toBeInstanceOf(Connection);
expect(fetchMock).toHaveBeenCalledTimes(SESSION_LIFECYCLE_RESPONSES.length);
expect(wasSocketClosed(MockWebSocket)).toEqual(false);
});
test("rejects if session create fails", async () => {
simulateSessionCreateUnauthenticated(fetchMock);
simulateImmediatelyOpenSocket(MockWebSocket);
const connection = createConnectionUnderTest();
await expect(connection).rejects.toBeInstanceOf(Error);
expect(fetchMock).toHaveBeenCalledTimes(1);
});
test("rejects if session create has invalid response", async () => {
simulateSessionCreateInvalidResponse(fetchMock);
simulateImmediatelyOpenSocket(MockWebSocket);
const connection = createConnectionUnderTest();
await expect(connection).rejects.toBeInstanceOf(Error);
expect(fetchMock).toHaveBeenCalledTimes(1);
});
test("retries if session create fails with a networ error", async () => {
simulateSessionCreateTransientNetworkError(fetchMock, {
numInitialFailures: NUM_RESLIENCY_RETRIES,
});
simulateImmediatelyOpenSocket(MockWebSocket);
const connection = createConnectionUnderTest();
vi.runAllTimersAsync();
await expect(connection).resolves.toBeInstanceOf(Connection);
});
test("stops retrying if session create consistently fails with a networ error", async () => {
simulateSessionCreateTransientNetworkError(fetchMock, {
numInitialFailures: NUM_RESLIENCY_RETRIES + 1,
});
simulateImmediatelyOpenSocket(MockWebSocket);
const connection = createConnectionUnderTest();
vi.runAllTimersAsync();
await expect(connection).rejects.toBeInstanceOf(Error);
});
test("retries if session create times out", async () => {
simulateSessionCreateTimeout(fetchMock, {
numTimeouts: NUM_RESLIENCY_RETRIES,
});
simulateImmediatelyOpenSocket(MockWebSocket);
const connection = createConnectionUnderTest();
vi.runAllTimersAsync();
await expect(connection).resolves.toBeInstanceOf(Connection);
});
test("stops retrying if session create times out consistently", async () => {
simulateSessionCreateTimeout(fetchMock, {
numTimeouts: NUM_RESLIENCY_RETRIES + 1,
});
simulateImmediatelyOpenSocket(MockWebSocket);
const connection = createConnectionUnderTest();
vi.runAllTimersAsync();
await expect(connection).rejects.toBeInstanceOf(Error);
});
test("rejects if session server returns error while polling", async () => {
simulateSessionServiceError(fetchMock, { numInitialSuccesses: 2 });
simulateImmediatelyOpenSocket(MockWebSocket);
const connection = createConnectionUnderTest();
await expect(connection).rejects.toBeInstanceOf(Error);
expect(fetchMock).toHaveBeenCalledTimes(3);
});
test("rejects if session server returns invalid response while polling", async () => {
simulateSessionPollInvalidResponse(fetchMock, { numInitialSuccesses: 2 });
simulateImmediatelyOpenSocket(MockWebSocket);
const connection = createConnectionUnderTest();
await expect(connection).rejects.toBeInstanceOf(Error);
expect(fetchMock).toHaveBeenCalledTimes(3);
});
test("retries if session polling fails with network error", async () => {
simulateSessionPollTransientNetworkError(fetchMock, {
numFailures: NUM_RESLIENCY_RETRIES,
});
simulateImmediatelyOpenSocket(MockWebSocket);
const connection = createConnectionUnderTest();
vi.runAllTimersAsync();
await expect(connection).resolves.toBeInstanceOf(Connection);
});
test("stops retrying if session polling consistently fails with network error", async () => {
simulateSessionPollTransientNetworkError(fetchMock, {
numFailures: NUM_RESLIENCY_RETRIES + 1,
});
simulateImmediatelyOpenSocket(MockWebSocket);
const connection = createConnectionUnderTest();
vi.runAllTimersAsync();
await expect(connection).rejects.toBeInstanceOf(Error);
});
test("removes all socket listeners when connection is closed", async () => {
simulateImmediatelyReadySession(fetchMock);
simulateImmediatelyOpenSocket(MockWebSocket);
const connection = createConnectionUnderTest();
vi.runAllTimersAsync();
(await connection).close();
expectAllSocketListenersRemoved(MockWebSocket);
});
test("retries if websocket connection fails", async () => {
simulateImmediatelyReadySession(fetchMock);
simulateSocketWithTransitentConnectionErrors(MockWebSocket, {
numInitialFailures: NUM_RESLIENCY_RETRIES,
});
const connection = createConnectionUnderTest();
vi.runAllTimersAsync();
await expect(connection).resolves.toBeInstanceOf(Connection);
});
test("stops retrying if websocket connection fails consistently", async () => {
simulateImmediatelyReadySession(fetchMock);
simulateSocketWithTransitentConnectionErrors(MockWebSocket, {
numInitialFailures: NUM_RESLIENCY_RETRIES + 1,
});
const connection = createConnectionUnderTest();
vi.runAllTimersAsync();
await expect(connection).rejects.toBeInstanceOf(Error);
});
test('retries if websocket connection times out"', async () => {
simulateImmediatelyReadySession(fetchMock);
simulateSocketWithConnectionTimeout(MockWebSocket, {
numTimeouts: NUM_RESLIENCY_RETRIES,
});
const connection = createConnectionUnderTest();
vi.runAllTimersAsync();
await expect(connection).resolves.toBeInstanceOf(Connection);
});
test("stops retrying if websocket connection times out consistently", async () => {
simulateImmediatelyReadySession(fetchMock);
simulateSocketWithConnectionTimeout(MockWebSocket, {
numTimeouts: NUM_RESLIENCY_RETRIES + 1,
});
const connection = createConnectionUnderTest();
vi.runAllTimersAsync();
await expect(connection).rejects.toBeInstanceOf(Error);
});
});
describe("Connection#execute, when executing a single SQL statement", async () => {
test("resolves with the result of the statement", async () => {
simulateImmediatelyReadySession(fetchMock);
simulateSocketWithSingleExecution(MockWebSocket);
const connection = createConnectionUnderTest();
vi.runAllTimersAsync();
const result = (await connection)
.execute("SHOW SCHEMAS IN wherobots_open_data")
.then((table) => table.toArray().map((row) => row.toJSON()));
vi.runAllTimersAsync();
await expect(result).resolves.toEqual(showSchemasExpectedPayload);
expect(getSentMessages(MockWebSocket)).toEqual([
expect.objectContaining({ kind: "execute_sql" }),
expect.objectContaining({ kind: "retrieve_results" }),
]);
});
test("rejects if the execution returns an error", async () => {
simulateImmediatelyReadySession(fetchMock);
simulateSocketWithSingleExecutionError(MockWebSocket);
const connection = createConnectionUnderTest();
vi.runAllTimersAsync();
const result = (await connection).execute(
"SHOW SCHEMAS IN wherobots_open_data",
);
vi.runAllTimersAsync();
await expect(result).rejects.toBeInstanceOf(Error);
});
test("rejects if there is a connection error", async () => {
simulateImmediatelyReadySession(fetchMock);
simulateSocketWithConnectionError(MockWebSocket);
const connection = createConnectionUnderTest();
vi.runAllTimersAsync();
const result = (await connection).execute(
"SHOW SCHEMAS IN wherobots_open_data",
);
vi.runAllTimersAsync();
await expect(result).rejects.toBeInstanceOf(Error);
expect(wasSocketClosed(MockWebSocket)).toEqual(true);
});
test("rejects if the connection is closed remotely", async () => {
simulateImmediatelyReadySession(fetchMock);
simulateSocketWithConnectionClosed(MockWebSocket);
const connection = createConnectionUnderTest();
vi.runAllTimersAsync();
const result = (await connection).execute(
"SHOW SCHEMAS IN wherobots_open_data",
);
vi.runAllTimersAsync();
await expect(result).rejects.toBeInstanceOf(Error);
});
test("removes all socket listeners when connection is closed", async () => {
simulateImmediatelyReadySession(fetchMock);
simulateSocketWithSingleExecution(MockWebSocket);
const connection = createConnectionUnderTest();
vi.runAllTimersAsync();
const result = (await connection)
.execute("SHOW SCHEMAS IN wherobots_open_data")
.then((table) => table.toArray().map((row) => row.toJSON()));
vi.runAllTimersAsync();
await result;
(await connection).close();
expectAllSocketListenersRemoved(MockWebSocket);
});
test("sends cancellation if execution is aborted", async () => {
simulateImmediatelyReadySession(fetchMock);
const { resume } = simulateSocketWithSingleExecutionPaused(MockWebSocket);
const connection = createConnectionUnderTest();
vi.runAllTimersAsync();
const abortController = new AbortController();
const result = (await connection).execute(
"SHOW SCHEMAS IN wherobots_open_data",
{ signal: abortController.signal },
);
vi.runAllTimersAsync();
expect(getSentMessages(MockWebSocket)).toEqual([
expect.objectContaining({ kind: "execute_sql" }),
]);
// aborting the execution before resuming the simulated socket should cause the promise to reject
// and no additional messages to be sent for this execution
abortController.abort();
resume();
vi.runAllTimersAsync();
await expect(result).rejects.toBeInstanceOf(Error);
expect(getSentMessages(MockWebSocket)).toEqual([
expect.objectContaining({ kind: "execute_sql" }),
expect.objectContaining({ kind: "cancel" }),
]);
expect(wasSocketClosed(MockWebSocket)).toEqual(false);
});
test("filters error events by execution ID to prevent cross-contamination between parallel executions", async () => {
// This test verifies the fix for the execution ID filtering in waitForMessage
// It simulates the case where an error event with a different execution_id
// should NOT affect other executions waiting for messages
simulateImmediatelyReadySession(fetchMock);
MockWebSocket.mockImplementation(() => {
const instance = mockWebSocketDefaultImplementation();
simulateHandleOpen(instance);
// Handle the first execute_sql message
instance.send.mockImplementationOnce((data: string) => {
simulateStateUpdateSuccess(instance, data);
});
// Handle the retrieve_results message
instance.send.mockImplementationOnce((data: string) => {
// Send an error event with a DIFFERENT execution_id to test filtering
const wrongExecutionId = "wrong-execution-id-12345";
setTimeout(() => {
simulateWebSocketEvent(instance, {
type: "message",
data: JSON.stringify({
kind: "error",
execution_id: wrongExecutionId, // Different ID!
message: "Error from different execution",
}),
} as WebSocket.MessageEvent);
}, 10);
// Then send the actual result with correct execution_id
setTimeout(() => {
simulateExecutionResult(instance, data, {
result_bytes: showSchemasPayloadBrotli,
});
}, 50);
});
return instance;
});
const connection = createConnectionUnderTest();
vi.runAllTimersAsync();
// This execution should complete successfully despite the error event with wrong ID
const resultPromise = (await connection).execute(
"SHOW SCHEMAS IN wherobots_open_data",
);
vi.runAllTimersAsync();
// The execution should succeed because the error with wrong execution_id is filtered out
const result = await resultPromise;
expect(result).toBeDefined();
expect(wasSocketClosed(MockWebSocket)).toEqual(false);
});
});
describe("Connection#execute, when executing multiple SQL statements", async () => {
test("maps results to the correct execution if they are received out of order", async () => {
simulateImmediatelyReadySession(fetchMock);
simulateSocketWithMultipleExecutions(MockWebSocket);
const connection = createConnectionUnderTest();
vi.runAllTimersAsync();
const resultOne = (await connection)
.execute("SHOW SCHEMAS IN wherobots_open_data")
.then((table) => table.toArray().map((row) => row.toJSON()));
const resultTwo = (await connection)
.execute("SHOW tables IN wherobots_open_data.overture")
.then((table) => table.toArray().map((row) => row.toJSON()));
vi.runAllTimersAsync();
await expect(resultOne).resolves.toEqual(showSchemasExpectedPayload);
await expect(resultTwo).resolves.toEqual(showTablesExpectedPayload);
});
test("rejects only a specific execution if it fails", async () => {
simulateImmediatelyReadySession(fetchMock);
simulateSocketWithMultipleExecutionsOneError(MockWebSocket);
const connection = createConnectionUnderTest();
vi.runAllTimersAsync();
const resultOne = (await connection)
.execute("SHOW SCHEMAS IN wherobots_open_data")
.then((table) => table.toArray().map((row) => row.toJSON()));
const resultTwo = (await connection)
.execute("SHOW tables IN wherobots_open_data.overture")
.then((table) => table.toArray().map((row) => row.toJSON()));
vi.runAllTimersAsync();
await expect(resultOne).rejects.toBeInstanceOf(Error);
await expect(resultTwo).resolves.toEqual(showTablesExpectedPayload);
expect(wasSocketClosed(MockWebSocket)).toEqual(false);
});
test("removes all socket listeners when connection is closed", async () => {
simulateImmediatelyReadySession(fetchMock);
simulateSocketWithMultipleExecutions(MockWebSocket);
const connection = createConnectionUnderTest();
vi.runAllTimersAsync();
const resultOne = (await connection)
.execute("SHOW SCHEMAS IN wherobots_open_data")
.then((table) => table.toArray().map((row) => row.toJSON()));
const resultTwo = (await connection)
.execute("SHOW tables IN wherobots_open_data.overture")
.then((table) => table.toArray().map((row) => row.toJSON()));
vi.runAllTimersAsync();
await resultOne;
await resultTwo;
(await connection).close();
expectAllSocketListenersRemoved(MockWebSocket);
});
});