deno.land / std@0.177.1 / examples / chat / server_test.ts

server_test.ts
نووسراو ببینە
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
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.import { assert, assertEquals } from "../../testing/asserts.ts";import { dirname, fromFileUrl, resolve } from "../../path/mod.ts";
const moduleDir = resolve(dirname(fromFileUrl(import.meta.url)));
async function startServer(): Promise<Deno.ChildProcess> { const server = new Deno.Command(Deno.execPath(), { args: [ "run", "--quiet", "--allow-net", "--allow-read", "server.ts", ], cwd: moduleDir, stdout: "piped", stderr: "null", stdin: "null", }); const child = server.spawn(); const reader = child.stdout.getReader();
try { const { value } = await reader.read(); assert( value && new TextDecoder().decode(value).includes("chat server starting"), ); } catch { await child.stdout.cancel(); } finally { reader.releaseLock(); }
return child;}
Deno.test({ name: "[examples/chat] GET / should serve html", async fn() { const child = await startServer(); try { const resp = await fetch("http://127.0.0.1:8080/"); assertEquals(resp.status, 200); assertEquals(resp.headers.get("content-type"), "text/html"); const html = await resp.text(); assert(html.includes("ws chat example"), "body is ok"); } finally { child.stdout.cancel(); child.kill(); } await child.status; },});
Deno.test({ name: "[examples/chat] GET /ws should upgrade conn to ws", async fn() { const child = await startServer(); let ws: WebSocket; try { ws = new WebSocket("ws://127.0.0.1:8080/ws"); await new Promise<void>((resolve) => { ws.onmessage = (message) => { assertEquals(message.data, "Connected: [1]");
ws.onmessage = (message) => { assertEquals(message.data, "[1]: Hello"); ws.close(); };
ws.send("Hello"); };
ws.onclose = () => { resolve(); }; }); } catch (err) { console.log(err); } finally { child.stdout.cancel(); child.kill(); } await child.status; },});
std

Version Info

Tagged at
11 months ago