forked from FirebaseExtended/firepad
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathtext-operation.spec.ts
504 lines (457 loc) · 17.7 KB
/
text-operation.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
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
import { TextOp, TextOptType } from "../src/text-op";
import { TextOperation } from "../src/text-operation";
describe("Text Operation", () => {
describe("#isWrappedOperation", () => {
it("should return false", () => {
const operation = new TextOperation();
expect(operation.isWrappedOperation()).toEqual(false);
});
});
describe("#getOps", () => {
it("should return shallow copy of the ops list", () => {
const retainCount = 32,
deleteCount = 2,
insertText = "Hello";
const operation = new TextOperation()
.retain(retainCount, null)
.insert(insertText, null)
.delete(deleteCount);
const ops = [
new TextOp(TextOptType.Retain, retainCount, null),
new TextOp(TextOptType.Insert, insertText, null),
new TextOp(TextOptType.Delete, deleteCount, null),
];
expect(operation.getOps()).toEqual(ops);
});
});
describe("#equals", () => {
it("should return true if two operation makes the same effect", () => {
const retainCount = 32,
deleteCount = 2,
insertText = "Hello";
const operation1 = new TextOperation()
.retain(retainCount, null)
.delete(deleteCount)
.insert(insertText, null);
const operation2 = new TextOperation()
.retain(retainCount, null)
.insert(insertText, null)
.delete(deleteCount);
expect(operation1.equals(operation2)).toEqual(true);
});
it("should return false if two operation makes different effect", () => {
const retainCount = 32,
deleteCount = 2,
insertText = "Hello";
const operation1 = new TextOperation()
.retain(retainCount, null)
.delete(deleteCount)
.insert(insertText, null);
const operation2 = new TextOperation()
.retain(retainCount, null)
.delete(deleteCount);
expect(operation1.equals(operation2)).toEqual(false);
});
it("should return false if two operation are to be applied to different document", () => {
const retainCount = 32,
deleteCount = 2;
const operation1 = new TextOperation()
.retain(retainCount, null)
.delete(deleteCount);
const operation2 = new TextOperation()
.retain(retainCount + 1, null)
.delete(deleteCount);
expect(operation1.equals(operation2)).toEqual(false);
});
});
describe("#retain", () => {
it("should create retain operation", () => {
const retainCount = 32;
const operation = new TextOperation().retain(retainCount, null);
const ops = [new TextOp(TextOptType.Retain, retainCount, null)];
expect(operation.getOps()).toEqual(ops);
});
it("should add characters to last op if last op is also retain", () => {
const retainCount = 32,
nextRetainCount = 13;
const operation = new TextOperation()
.retain(retainCount, null)
.retain(nextRetainCount, null);
const ops = [
new TextOp(TextOptType.Retain, retainCount + nextRetainCount, null),
];
expect(operation.getOps()).toEqual(ops);
});
it("should not create any new op if 0 characters retained", () => {
const operation = new TextOperation().retain(0, null);
expect(operation.getOps()).toEqual([]);
});
it("should throw error if non-positive number passed as param", () => {
const fn = () => new TextOperation().retain(-5, null);
expect(fn).toThrowError();
});
});
describe("#insert", () => {
it("should create insert operation", () => {
const insertText = "Hello World";
const operation = new TextOperation().insert(insertText, null);
const ops = [new TextOp(TextOptType.Insert, insertText, null)];
expect(operation.getOps()).toEqual(ops);
});
it("should add text to last op if last op is also insert", () => {
const insertText = "Hello ",
nextInsertText = "World";
const operation = new TextOperation()
.insert(insertText, null)
.insert(nextInsertText, null);
const ops = [
new TextOp(TextOptType.Insert, insertText + nextInsertText, null),
];
expect(operation.getOps()).toEqual(ops);
});
it("should add insert op before last op if the last op is delete", () => {
const insertText = "Hello ",
nextInsertText = "World",
deleteCount = 5;
const operation = new TextOperation()
.insert(insertText, null)
.delete(deleteCount)
.insert(nextInsertText, { attr: true });
const ops = [
new TextOp(TextOptType.Insert, insertText, null),
new TextOp(TextOptType.Insert, nextInsertText, { attr: true }),
new TextOp(TextOptType.Delete, deleteCount, null),
];
expect(operation.getOps()).toEqual(ops);
});
it("should add text to next to last op if the op is insert with same attributes followed by a delete op", () => {
const insertText = "Hello ",
nextInsertText = "World",
deleteCount = 5;
const operation = new TextOperation()
.insert(insertText, null)
.delete(deleteCount)
.insert(nextInsertText, null);
const ops = [
new TextOp(TextOptType.Insert, insertText + nextInsertText, null),
new TextOp(TextOptType.Delete, deleteCount, null),
];
expect(operation.getOps()).toEqual(ops);
});
it("should not create any new op if empty string inserted", () => {
const operation = new TextOperation().insert("", null);
expect(operation.getOps()).toEqual([]);
});
});
describe("#delete", () => {
it("should create delete operation", () => {
const deleteCount = 32;
const operation = new TextOperation().delete(deleteCount);
const ops = [new TextOp(TextOptType.Delete, deleteCount, null)];
expect(operation.getOps()).toEqual(ops);
});
it("should add characters to last op if last op is also delete", () => {
const deleteCount = 32,
nextDeleteCount = 13;
const operation = new TextOperation()
.delete(deleteCount)
.delete(nextDeleteCount);
const ops = [
new TextOp(TextOptType.Delete, deleteCount + nextDeleteCount, null),
];
expect(operation.getOps()).toEqual(ops);
});
it("should convert into number of character deleted if deleted text is passed as param", () => {
const deleteText = "Hello World";
const operation = new TextOperation().delete(deleteText);
const ops = [new TextOp(TextOptType.Delete, deleteText.length, null)];
expect(operation.getOps()).toEqual(ops);
});
it("should not create any new op if 0 characters deleted", () => {
const operation = new TextOperation().delete(0);
expect(operation.getOps()).toEqual([]);
});
it("should throw error if non-positive number passed as param", () => {
const fn = () => new TextOperation().delete(-5);
expect(fn).toThrowError();
});
});
describe("#isNoop", () => {
it("should return true if there is no ops", () => {
const operation = new TextOperation();
expect(operation.isNoop()).toEqual(true);
});
it("should return true if the ops does not change document", () => {
const operation = new TextOperation().retain(5, null).retain(3, null);
expect(operation.isNoop()).toEqual(true);
});
it("should return false if the ops change document", () => {
const operation = new TextOperation().retain(5, null).delete(3);
expect(operation.isNoop()).toEqual(false);
});
});
describe("#clone", () => {
it("should deep clone ops into new text operation", () => {
const retainCount = 32,
deleteCount = 2,
insertText = "Hello";
const operation = new TextOperation()
.retain(retainCount, null)
.insert(insertText, null)
.delete(deleteCount);
const ops = [
new TextOp(TextOptType.Retain, retainCount, null),
new TextOp(TextOptType.Insert, insertText, null),
new TextOp(TextOptType.Delete, deleteCount, null),
];
expect(operation.clone().getOps()).toEqual(ops);
});
});
describe("#apply", () => {
it("should apply a text operation to given text content", () => {
const content = "Hello World";
const operation = new TextOperation()
.retain(6, null)
.insert("Me", null)
.delete("World");
expect(operation.apply(content)).toEqual("Hello Me");
});
it("should propagate attributes on applying a text operation", () => {
const content = "Hello World",
attributes = [];
const retainCount = 6,
retainAttrs = { what: "hello" },
insertText = "Me",
insertAttrs = { who: "me" };
const operation = new TextOperation()
.retain(retainCount, retainAttrs)
.insert(insertText, insertAttrs)
.delete(5);
const composedAttributes = [
...Array(retainCount).fill(retainAttrs),
...Array(insertText.length).fill(insertAttrs),
];
operation.apply(content, [], attributes);
expect(attributes).toEqual(composedAttributes);
});
it("should throw error if operated over content length", () => {
const content = "Hello World";
const operation = new TextOperation().retain(12, null);
const fn = () => operation.apply(content);
expect(fn).toThrowError();
});
});
describe("#invert", () => {
it("should return a text operation that undoes effect of the given one", () => {
const content = "Hello World";
const operation = new TextOperation()
.retain(6, null)
.insert("Me", null)
.delete("World");
const invertedOperation = new TextOperation()
.retain(6, null)
.insert("World", null)
.delete("Me");
expect(operation.invert(content)).toEqual(invertedOperation);
});
});
describe("#canMergeWith", () => {
it("should return True if two operation can be applied sequentially", () => {
const operation = new TextOperation().retain(6, null).insert("Me", null);
const otherOperation = new TextOperation()
.retain(8, null)
.insert("!", null);
expect(operation.canMergeWith(otherOperation)).toEqual(true);
});
it("should return False if two operation can not be applied sequentially", () => {
const operation = new TextOperation().retain(6, null).insert("Me", null);
const otherOperation = new TextOperation()
.retain(6, null)
.insert("!", null);
expect(operation.canMergeWith(otherOperation)).toEqual(false);
});
});
describe("#compose", () => {
it("should return a text operation that produces same effect as two individual ones applied sequentially", () => {
const content = "Hello World";
const operation = new TextOperation()
.retain(6, null)
.insert("Me", null)
.delete("World");
const otherOperation = new TextOperation()
.retain(6, null)
.insert("World", null)
.delete("Me");
const composedOperation = operation.compose(otherOperation);
expect(composedOperation.apply(content)).toEqual(content);
});
});
describe("#shouldBeComposedWith", () => {
it("should return true if either operation has no effect", () => {
const operation = new TextOperation()
.retain(6, null)
.insert("Me", null)
.delete(5);
const otherOperation = new TextOperation().retain(12, null);
expect(operation.shouldBeComposedWith(otherOperation)).toEqual(true);
});
it("should return true if insert op from other operation compatible with first one", () => {
const operation = new TextOperation().retain(6, null).insert("Me", null);
const otherOperation = new TextOperation()
.retain(8, null)
.insert("!", null);
expect(operation.shouldBeComposedWith(otherOperation)).toEqual(true);
});
it("should return true if delete op from other operation compatible with first one", () => {
const operation = new TextOperation().retain(6, null).delete("Me");
const otherOperation = new TextOperation().retain(6, null).delete("!");
expect(operation.shouldBeComposedWith(otherOperation)).toEqual(true);
});
it("should return false if two operations are incompatible of each other", () => {
const operation = new TextOperation().retain(6, null).insert("Me", null);
const otherOperation = new TextOperation().retain(6, null).delete("!");
expect(operation.shouldBeComposedWith(otherOperation)).toEqual(false);
});
});
describe("#shouldBeComposedWithInverted", () => {
it("should return true if either operation has no effect", () => {
const operation = new TextOperation()
.retain(6, null)
.insert("Me", null)
.delete(5);
const otherOperation = new TextOperation().retain(12, null);
expect(operation.shouldBeComposedWithInverted(otherOperation)).toEqual(
true
);
});
it("should return true if insert op from other operation compatible with first one", () => {
const operation = new TextOperation().retain(6, null).insert("Me", null);
const otherOperation = new TextOperation()
.retain(8, null)
.insert("!", null);
expect(operation.shouldBeComposedWithInverted(otherOperation)).toEqual(
true
);
});
it("should return true if retain op from other operation compatible with first one", () => {
const operation = new TextOperation().retain(6, null).insert("Me", null);
const otherOperation = new TextOperation()
.retain(6, null)
.insert("!", null);
expect(operation.shouldBeComposedWithInverted(otherOperation)).toEqual(
true
);
});
it("should return true if delete op from other operation compatible with first one", () => {
const operation = new TextOperation().retain(7, null).delete("Me");
const otherOperation = new TextOperation().retain(6, null).delete("!");
expect(operation.shouldBeComposedWithInverted(otherOperation)).toEqual(
true
);
});
it("should return false if two operations are incompatible of each other", () => {
const operation = new TextOperation().retain(6, null).insert("Me", null);
const otherOperation = new TextOperation().retain(6, null).delete("!");
expect(operation.shouldBeComposedWithInverted(otherOperation)).toEqual(
false
);
});
});
describe(".transform", () => {
it("should throw error if two operation came from different document", () => {
const operation1 = new TextOperation().retain(6, null).insert("Me", null);
const operation2 = new TextOperation().retain(8, null).insert("!", null);
const fn = () => TextOperation.transform(operation1, operation2);
expect(fn).toThrowError();
});
it("should transform two operation such that they can be reversed", () => {
const operation1 = new TextOperation()
.retain(2, null)
.insert("Me", null)
.delete(4)
.retain(2, null);
const operation2 = new TextOperation()
.retain(3, null)
.insert("!", null)
.retain(5, null);
const transformedOperation = new TextOperation()
.retain(4, null)
.insert("!", null)
.retain(2, null);
expect(TextOperation.transform(operation1, operation2)).toContainEqual(
transformedOperation
);
});
});
describe("#transform", () => {
it("should transform with another operation and return resulting pair", () => {
const operation = new TextOperation()
.retain(5, null)
.insert("Me", null)
.delete(1);
const otherOperation = new TextOperation()
.retain(6, null)
.insert("!", null);
expect(operation.transform(otherOperation)).toEqual(
TextOperation.transform(operation, otherOperation)
);
});
});
describe("#toString", () => {
it("should pretty print a text operation", () => {
const retainCount = 32,
deleteCount = 2,
insertText = "Hello";
const operation = new TextOperation()
.retain(retainCount, null)
.insert(insertText, null)
.delete(deleteCount);
const opString = `Retain ${retainCount}, Insert "${insertText}", Delete ${deleteCount}`;
expect(operation.toString()).toEqual(opString);
});
});
describe("#toJSON", () => {
it("should convert text operation into JSON representation", () => {
const retainCount = 32,
deleteCount = 2,
insertText = "Hello";
const operation = new TextOperation()
.retain(retainCount, null)
.insert(insertText, null)
.delete(deleteCount);
const ops = [retainCount, insertText, -deleteCount];
expect(operation.toJSON()).toEqual(ops);
});
it("should persist attributes of ops", () => {
const retainCount = 32,
deleteCount = 2,
insertText = "Hello",
attrs = { attr: true };
const operation = new TextOperation()
.retain(retainCount, attrs)
.insert(insertText, null)
.delete(deleteCount);
const ops = [attrs, retainCount, insertText, -deleteCount];
expect(operation.toJSON()).toEqual(ops);
});
it("should return 0 character retained if no ops", () => {
const operation = new TextOperation();
const ops = [0];
expect(operation.toJSON()).toEqual(ops);
});
});
describe(".fromJSON", () => {
it("should convert JSON representation into text operation", () => {
const retainCount = 32,
deleteCount = 2,
insertText = "Hello",
attrs = { attr: true };
const operation = new TextOperation()
.retain(retainCount, attrs)
.insert(insertText, null)
.delete(deleteCount);
const ops = [attrs, retainCount, insertText, -deleteCount];
expect(TextOperation.fromJSON(ops)).toEqual(operation);
});
});
});