-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathws.integration.test.ts
More file actions
343 lines (293 loc) · 7.86 KB
/
ws.integration.test.ts
File metadata and controls
343 lines (293 loc) · 7.86 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
import { create } from 'coaction';
import * as Y from 'yjs';
import { bindYjs } from '../src';
const wait = (ms = 0) =>
new Promise<void>((resolve) => {
setTimeout(resolve, ms);
});
const waitFor = async (assertion: () => void, timeout = 1000) => {
const start = Date.now();
let lastError: unknown;
while (Date.now() - start < timeout) {
try {
assertion();
return;
} catch (error) {
lastError = error;
await wait(10);
}
}
throw lastError;
};
type WsMessageData = Uint8Array | ArrayBuffer;
type WsOpenEvent = {
type: 'open';
};
type WsMessageEvent = {
type: 'message';
data: WsMessageData;
};
type WsCloseEvent = {
type: 'close';
};
const normalizeUpdate = (data: WsMessageData) =>
data instanceof Uint8Array ? data : new Uint8Array(data);
class MockWsServer {
private roomClients = new Map<string, Set<MockWebSocket>>();
private roomDocs = new Map<string, Y.Doc>();
connect(client: MockWebSocket) {
const room = client.room;
if (!this.roomClients.has(room)) {
this.roomClients.set(room, new Set());
}
this.roomClients.get(room)!.add(client);
const doc = this.getRoomDoc(room);
const snapshot = Y.encodeStateAsUpdate(doc);
if (snapshot.byteLength > 0) {
client.receive(snapshot);
}
}
disconnect(client: MockWebSocket) {
const clients = this.roomClients.get(client.room);
if (!clients) {
return;
}
clients.delete(client);
if (clients.size === 0) {
this.roomClients.delete(client.room);
this.roomDocs.delete(client.room);
}
}
broadcast(client: MockWebSocket, data: WsMessageData) {
const update = normalizeUpdate(data);
const room = client.room;
const doc = this.getRoomDoc(room);
Y.applyUpdate(doc, update, client);
const peers = this.roomClients.get(room);
if (!peers) {
return;
}
for (const peer of peers) {
if (peer === client || peer.readyState !== MockWebSocket.OPEN) {
continue;
}
peer.receive(update);
}
}
private getRoomDoc(room: string) {
if (!this.roomDocs.has(room)) {
this.roomDocs.set(room, new Y.Doc());
}
return this.roomDocs.get(room)!;
}
}
class MockWebSocket {
static CONNECTING = 0;
static OPEN = 1;
static CLOSED = 3;
readonly room: string;
readonly server: MockWsServer;
readyState = MockWebSocket.CONNECTING;
onopen?: (event: WsOpenEvent) => void;
onmessage?: (event: WsMessageEvent) => void;
onclose?: (event: WsCloseEvent) => void;
constructor(server: MockWsServer, room: string) {
this.server = server;
this.room = room;
queueMicrotask(() => {
if (this.readyState !== MockWebSocket.CONNECTING) {
return;
}
this.readyState = MockWebSocket.OPEN;
this.server.connect(this);
this.onopen?.({
type: 'open'
});
});
}
send(data: WsMessageData) {
if (this.readyState !== MockWebSocket.OPEN) {
return;
}
this.server.broadcast(this, data);
}
close() {
if (this.readyState === MockWebSocket.CLOSED) {
return;
}
this.readyState = MockWebSocket.CLOSED;
this.server.disconnect(this);
this.onclose?.({
type: 'close'
});
}
receive(data: Uint8Array) {
if (this.readyState !== MockWebSocket.OPEN) {
return;
}
this.onmessage?.({
type: 'message',
data: new Uint8Array(data)
});
}
}
class MockWsProvider {
private readonly origin = Symbol('mock-ws-provider');
private readonly pending: Uint8Array[] = [];
private connected = false;
private readonly onDocUpdate = (update: Uint8Array, origin: unknown) => {
if (origin === this.origin) {
return;
}
const next = new Uint8Array(update);
if (!this.connected || this.ws.readyState !== MockWebSocket.OPEN) {
this.pending.push(next);
return;
}
this.ws.send(next);
};
readonly ws: MockWebSocket;
constructor(
private readonly server: MockWsServer,
private readonly room: string,
private readonly doc: Y.Doc
) {
this.ws = new MockWebSocket(server, room);
this.ws.onopen = () => {
this.connected = true;
const snapshot = Y.encodeStateAsUpdate(this.doc);
if (snapshot.byteLength > 0) {
this.ws.send(snapshot);
}
while (this.pending.length > 0) {
const update = this.pending.shift()!;
this.ws.send(update);
}
};
this.ws.onmessage = (event) => {
Y.applyUpdate(this.doc, normalizeUpdate(event.data), this.origin);
};
this.doc.on('update', this.onDocUpdate);
}
destroy() {
this.doc.off('update', this.onDocUpdate);
this.ws.close();
}
}
type PlayerState = {
count: number;
profile: {
name: string;
};
increment: () => void;
rename: (name: string) => void;
};
const createPlayerStore = (id: string) =>
create<PlayerState>(
(set) => ({
count: 0,
profile: {
name: id
},
increment() {
set((draft) => {
draft.count += 1;
});
},
rename(name: string) {
set((draft) => {
draft.profile.name = name;
});
}
}),
{
name: `player-${id}`
}
);
const createPlayer = (server: MockWsServer, id: string, room: string) => {
const doc = new Y.Doc();
const store = createPlayerStore(id);
const binding = bindYjs(store, {
doc,
key: 'room-state'
});
const provider = new MockWsProvider(server, room, doc);
return {
store,
binding,
provider,
destroy: () => {
provider.destroy();
binding.destroy();
store.destroy();
doc.destroy();
}
};
};
test('syncs two players over websocket mock transport', async () => {
const server = new MockWsServer();
const playerA = createPlayer(server, 'alice', 'room-1');
const playerB = createPlayer(server, 'bob', 'room-1');
await waitFor(() => {
expect(playerA.provider.ws.readyState).toBe(MockWebSocket.OPEN);
expect(playerB.provider.ws.readyState).toBe(MockWebSocket.OPEN);
});
playerA.binding.syncNow();
playerB.binding.syncNow();
await waitFor(() => {
expect(playerA.store.getState().count).toBe(0);
expect(playerB.store.getState().count).toBe(0);
expect(playerA.store.getState().profile.name).toBe(
playerB.store.getState().profile.name
);
});
playerA.store.getState().increment();
await waitFor(() => {
expect(playerB.store.getState().count).toBe(1);
});
playerB.store.getState().rename('robert');
await waitFor(() => {
expect(playerA.store.getState().profile.name).toBe('robert');
});
// Verify local methods still work after remote sync.
playerA.store.getState().increment();
await waitFor(() => {
expect(playerA.store.getState().count).toBe(2);
expect(playerB.store.getState().count).toBe(2);
});
playerA.destroy();
playerB.destroy();
});
test('late-joining player hydrates from websocket room state', async () => {
const server = new MockWsServer();
const earlyPlayer = createPlayer(server, 'early', 'room-2');
await waitFor(() => {
expect(earlyPlayer.provider.ws.readyState).toBe(MockWebSocket.OPEN);
});
earlyPlayer.binding.syncNow();
await wait(20);
earlyPlayer.store.getState().increment();
earlyPlayer.store.getState().rename('captain');
earlyPlayer.binding.syncNow();
await wait(30);
const lateDoc = new Y.Doc();
const lateProvider = new MockWsProvider(server, 'room-2', lateDoc);
await waitFor(() => {
expect(lateProvider.ws.readyState).toBe(MockWebSocket.OPEN);
});
await wait(20);
const lateStore = createPlayerStore('late');
const lateBinding = bindYjs(lateStore, {
doc: lateDoc,
key: 'room-state'
});
await waitFor(() => {
expect(lateStore.getState().count).toBe(1);
expect(lateStore.getState().profile.name).toBe('captain');
});
lateProvider.destroy();
lateBinding.destroy();
lateStore.destroy();
lateDoc.destroy();
earlyPlayer.destroy();
});