forked from FirebaseExtended/firepad
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathclient.spec.ts
220 lines (181 loc) · 7.59 KB
/
client.spec.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
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
import { Client, ClientEvent, IClient } from "../src/client";
import { EventListenerType } from "../src/emitter";
import { ITextOperation, TextOperation } from "../src/text-operation";
describe("Client", () => {
let client: IClient;
let applyOperationStub: EventListenerType<ITextOperation>;
let eventListenerStub: EventListenerType<ITextOperation>;
let sendOperationStub: EventListenerType<ITextOperation>;
beforeAll(() => {
applyOperationStub = jest.fn<void, [ITextOperation]>();
eventListenerStub = jest.fn<void, [ITextOperation]>();
sendOperationStub = jest.fn<void, [ITextOperation]>();
});
beforeEach(() => {
client = new Client();
});
afterEach(() => {
client.dispose();
jest.clearAllMocks();
});
afterAll(() => {
jest.resetAllMocks();
});
describe("#on", () => {
it("should attach event listener to emitter for valid event", () => {
const fn = () => client.on(ClientEvent.ApplyOperation, eventListenerStub);
expect(fn).not.toThrowError();
});
});
describe("#off", () => {
it("should detach event listener to emitter for valid event", () => {
const fn = () =>
client.off(ClientEvent.ApplyOperation, eventListenerStub);
expect(fn).not.toThrowError();
});
});
describe("#isSynchronized", () => {
it("should start with `Synchronized` state", () => {
expect(client.isSynchronized()).toEqual(true);
});
});
describe("#applyClient", () => {
it("should transition to `AwaitingConfirm` state on receiving operation from document in `Synchronized` state", () => {
client.applyClient(new TextOperation());
expect(client.isAwaitingConfirm()).toEqual(true);
});
it("should send operation to server on receiving operation from document in `Synchronized` state", (done) => {
client.on(ClientEvent.SendOperation, (operation) => {
sendOperationStub(operation);
done();
});
const operation = new TextOperation();
client.applyClient(operation);
expect(sendOperationStub).toHaveBeenCalledWith(operation);
});
it("should transition to `AwaitingWithBuffer` state on receiving operation from document in `AwaitingConfirm` state", () => {
client.applyClient(new TextOperation());
client.applyClient(new TextOperation());
expect(client.isAwaitingWithBuffer()).toEqual(true);
});
it("should stay in `AwaitingWithBuffer` state on receiving operation from document in `AwaitingWithBuffer` state", () => {
client.applyClient(new TextOperation());
client.applyClient(new TextOperation());
client.applyClient(new TextOperation());
expect(client.isAwaitingWithBuffer()).toEqual(true);
});
});
describe("#applyServer", () => {
it("should stay in `Synchronized` state on receiving operation from server in `Synchronized` state", () => {
client.applyServer(new TextOperation());
expect(client.isSynchronized()).toEqual(true);
});
it("should apply changes to document on receiving operation from server in `Synchronized` state", (done) => {
client.on(ClientEvent.ApplyOperation, (operation) => {
applyOperationStub(operation);
done();
});
const operation = new TextOperation();
client.applyServer(operation);
expect(applyOperationStub).toHaveBeenCalledWith(operation);
});
it("should stay in `AwaitingConfirm` state on receiving operation from server in `AwaitingConfirm` state", () => {
client.applyClient(new TextOperation());
client.applyServer(new TextOperation());
expect(client.isAwaitingConfirm()).toEqual(true);
});
it("should apply changes to document on receiving operation from server in `AwaitingConfirm` state", (done) => {
client.on(ClientEvent.ApplyOperation, (operation) => {
applyOperationStub(operation);
done();
});
client.applyClient(new TextOperation());
const operation = new TextOperation();
client.applyServer(operation);
expect(applyOperationStub).toHaveBeenCalledWith(operation);
});
it("should stay in `AwaitingWithBuffer` state on receiving operation from server in `AwaitingWithBuffer` state", () => {
client.applyClient(new TextOperation());
client.applyClient(new TextOperation());
client.applyServer(new TextOperation());
expect(client.isAwaitingWithBuffer()).toEqual(true);
});
it("should apply changes to document on receiving operation from server in `AwaitingWithBuffer` state", (done) => {
client.on(ClientEvent.ApplyOperation, (operation) => {
applyOperationStub(operation);
done();
});
client.applyClient(new TextOperation());
client.applyClient(new TextOperation());
const operation = new TextOperation();
client.applyServer(operation);
expect(applyOperationStub).toHaveBeenCalledWith(operation);
});
});
describe("#serverAck", () => {
it("should throw error if called in `Synchronized` state", () => {
const fn = () => client.serverAck();
expect(fn).toThrowError();
});
it("should transition to `Synchronized` state on receiving acknowledgement from document in `AwaitingConfirm` state", () => {
client.applyClient(new TextOperation());
client.serverAck();
expect(client.isSynchronized()).toEqual(true);
});
it("should transition to `AwaitingConfirm` state on receiving acknowledgement from server in `AwaitingWithBuffer` state", () => {
client.applyClient(new TextOperation());
client.applyClient(new TextOperation());
client.serverAck();
expect(client.isAwaitingConfirm()).toEqual(true);
});
it("should send outstanding operation to server on receiving acknowledgement from document in `AwaitingWithBuffer` state", (done) => {
client.on(ClientEvent.SendOperation, (operation) => {
sendOperationStub(operation);
});
const operation = new TextOperation();
client.applyClient(new TextOperation());
client.on(ClientEvent.SendOperation, () => {
done();
});
client.applyClient(operation);
client.serverAck();
expect(sendOperationStub).toHaveBeenNthCalledWith(2, operation);
});
});
describe("#serverRetry", () => {
it("should throw error if called in `Synchronized` state", () => {
const fn = () => client.serverRetry();
expect(fn).toThrowError();
});
it("should stay in `AwaitingConfirm` state on receiving error from server in `AwaitingConfirm` state", () => {
client.applyClient(new TextOperation());
client.serverRetry();
expect(client.isAwaitingConfirm()).toEqual(true);
});
it("should resend operation on receiving error from server in `AwaitingConfirm` state", (done) => {
client.on(ClientEvent.SendOperation, (operation) => {
sendOperationStub(operation);
});
const operation = new TextOperation();
client.applyClient(operation);
client.on(ClientEvent.SendOperation, () => {
done();
});
client.serverRetry();
expect(sendOperationStub).toHaveBeenNthCalledWith(2, operation);
});
it("should resend operation on receiving error from server in `AwaitingWithBuffer` state", (done) => {
client.on(ClientEvent.SendOperation, (operation) => {
sendOperationStub(operation);
});
client.applyClient(new TextOperation());
const operation = new TextOperation();
client.applyClient(operation);
client.on(ClientEvent.SendOperation, () => {
done();
});
client.serverRetry();
expect(sendOperationStub).toHaveBeenNthCalledWith(2, operation);
});
});
});