-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfake-server.test.js
54 lines (41 loc) · 1.44 KB
/
fake-server.test.js
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
import test from "ava";
import { client } from "./client.js";
import { createFakeServer } from "./fake-server.js";
// firstSocket.sendOnConnection('easley');
test("Server send open event to client", (t) => {
const { firstSocket, firstClient, WebSocket } = createFakeServer();
firstSocket.onConnection(() => {
firstSocket.send("easley");
});
const client = new WebSocket("ws://not-real");
client.on("open", () => {});
t.is(firstClient.fakeMessages[0], "easley");
});
test("Socket recieve message from server", (t) => {
const { firstSocket, firstClient, WebSocket } = createFakeServer();
firstSocket.onConnection(() => {
firstSocket.send("easley");
});
new WebSocket("ws://not-real");
t.is(firstClient.fakeMessages[0], "easley");
});
test("Server send open event to client", (t) => {
const { firstSocket, fakeServer, connectSockets, firstClient, WebSocket } =
createFakeServer();
fakeServer.on("connection", (firstSocket) => {
firstSocket.send("test message from mock server");
firstSocket.on("message", (data) => {
t.is(
data,
"test message from app",
"we have intercepted the message and can assert on it"
);
firstSocket.send("test message from mock server");
});
});
const client = new WebSocket("ws://not-real");
client.on("onmessage", () => {});
client.send("Hello Server");
await connectSockets();
t.is(firstClient.fakeMessages[0], "easley");
});