forked from FirebaseExtended/firepad
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathwrapped-operation.spec.ts
664 lines (613 loc) · 23.3 KB
/
wrapped-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
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
import { Cursor } from "../src/cursor";
import { OperationMeta } from "../src/operation-meta";
import { TextOp, TextOptType } from "../src/text-op";
import { TextOperation } from "../src/text-operation";
import { WrappedOperation } from "../src/wrapped-operation";
describe("Wrapped Operation", () => {
describe("#isWrappedOperation", () => {
it("should return false", () => {
const operation = new WrappedOperation(new TextOperation());
expect(operation.isWrappedOperation()).toEqual(true);
});
});
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 wrappedOperation = new WrappedOperation(operation);
const ops = [
new TextOp(TextOptType.Retain, retainCount, null),
new TextOp(TextOptType.Insert, insertText, null),
new TextOp(TextOptType.Delete, deleteCount, null),
];
expect(wrappedOperation.getOps()).toEqual(ops);
});
});
describe("#getCursor", () => {
it("should return final position of the cursor after the operation", () => {
const cursorAfter = new Cursor(4, 9);
const operationMeta = new OperationMeta(null, cursorAfter);
const retainCount = 32,
deleteCount = 2,
insertText = "Hello";
const operation = new WrappedOperation(new TextOperation(), operationMeta)
.retain(retainCount, null)
.insert(insertText, null)
.delete(deleteCount);
expect((operation as WrappedOperation).getCursor()).toEqual(cursorAfter);
});
it("should return null if the operation does not contain operation metadata", () => {
const retainCount = 32,
deleteCount = 2,
insertText = "Hello";
const operation = new WrappedOperation(new TextOperation())
.retain(retainCount, null)
.insert(insertText, null)
.delete(deleteCount);
expect((operation as WrappedOperation).getCursor()).toEqual(null);
});
});
describe("#equals", () => {
it("should return true if a text operation makes the same effect", () => {
const retainCount = 32,
deleteCount = 2,
insertText = "Hello";
const operation1 = new WrappedOperation(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 true if another wrapped operation makes the same effect", () => {
const retainCount = 32,
deleteCount = 2,
insertText = "Hello";
const operation1 = new WrappedOperation(new TextOperation())
.retain(retainCount, null)
.delete(deleteCount)
.insert(insertText, null);
const operation2 = new WrappedOperation(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 WrappedOperation(new TextOperation())
.retain(retainCount, null)
.delete(deleteCount)
.insert(insertText, null);
const operation2 = new WrappedOperation(new TextOperation())
.retain(retainCount, null)
.delete(deleteCount);
expect(operation1.equals(operation2)).toEqual(false);
});
});
describe("#retain", () => {
it("should create retain operation", () => {
const retainCount = 32;
const operation = new WrappedOperation(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 WrappedOperation(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 WrappedOperation(new TextOperation()).retain(
0,
null
);
expect(operation.getOps()).toEqual([]);
});
it("should throw error if non-positive number passed as param", () => {
const fn = () =>
new WrappedOperation(new TextOperation()).retain(-5, null);
expect(fn).toThrowError();
});
});
describe("#insert", () => {
it("should create insert operation", () => {
const insertText = "Hello World";
const operation = new WrappedOperation(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 WrappedOperation(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 WrappedOperation(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 WrappedOperation(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 WrappedOperation(new TextOperation()).insert(
"",
null
);
expect(operation.getOps()).toEqual([]);
});
});
describe("#delete", () => {
it("should create delete operation", () => {
const deleteCount = 32;
const operation = new WrappedOperation(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 WrappedOperation(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 WrappedOperation(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 WrappedOperation(new TextOperation()).delete(0);
expect(operation.getOps()).toEqual([]);
});
it("should throw error if non-positive number passed as param", () => {
const fn = () => new WrappedOperation(new TextOperation()).delete(-5);
expect(fn).toThrowError();
});
});
describe("#isNoop", () => {
it("should return true if there is no ops", () => {
const operation = new WrappedOperation(new TextOperation());
expect(operation.isNoop()).toEqual(true);
});
it("should return true if the ops does not change document", () => {
const operation = new WrappedOperation(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 WrappedOperation(new TextOperation())
.retain(5, null)
.delete(3);
expect(operation.isNoop()).toEqual(false);
});
});
describe("#getOperation", () => {
it("should return text operation from deep cloned ops", () => {
const retainCount = 32,
deleteCount = 2,
insertText = "Hello";
const wrappedOperation = new WrappedOperation(new TextOperation())
.retain(retainCount, null)
.insert(insertText, null)
.delete(deleteCount);
const textOperation = new TextOperation()
.retain(retainCount, null)
.insert(insertText, null)
.delete(deleteCount);
expect((wrappedOperation as WrappedOperation).getOperation()).toEqual(
textOperation
);
});
});
describe("#clone", () => {
it("should deep clone ops into new wrapped operation", () => {
const retainCount = 32,
deleteCount = 2,
insertText = "Hello";
const operation = new WrappedOperation(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);
});
it("should shallow clone metadata into new wrapped operation", () => {
const cursorAfter = new Cursor(4, 9);
const operationMeta = new OperationMeta(null, cursorAfter);
const retainCount = 32,
deleteCount = 2,
insertText = "Hello";
const operation = new WrappedOperation(new TextOperation(), operationMeta)
.retain(retainCount, null)
.insert(insertText, null)
.delete(deleteCount);
expect((operation.clone() as WrappedOperation).getCursor()).toEqual(
cursorAfter
);
});
});
describe("#apply", () => {
it("should apply a wrapped operation to given text content", () => {
const content = "Hello World";
const operation = new WrappedOperation(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 WrappedOperation(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 WrappedOperation(new TextOperation()).retain(
12,
null
);
const fn = () => operation.apply(content);
expect(fn).toThrowError();
});
});
describe("#invert", () => {
it("should return a wrapped operation that undoes effect of the given one", () => {
const content = "Hello World";
const operation = new WrappedOperation(new TextOperation())
.retain(6, null)
.insert("Me", null)
.delete("World");
const invertedOperation = new WrappedOperation(new TextOperation())
.retain(6, null)
.insert("World", null)
.delete("Me");
expect(operation.invert(content)).toEqual(invertedOperation);
});
it("should return a wrapped operation that undoes positions of cursors", () => {
const content = "Hello World";
const cursorBefore = new Cursor(4, 9);
const operationMeta = new OperationMeta(cursorBefore, null);
const operation = new WrappedOperation(new TextOperation(), operationMeta)
.retain(6, null)
.insert("Me", null)
.delete("World");
const invertedOperationMeta = new OperationMeta(null, cursorBefore);
const invertedOperation = new WrappedOperation(
new TextOperation(),
invertedOperationMeta
)
.retain(6, null)
.insert("World", null)
.delete("Me");
expect(operation.invert(content)).toEqual(invertedOperation);
});
});
describe("#transform", () => {
it("should transform two operation such that they can be reversed", () => {
const operation1 = new WrappedOperation(new TextOperation())
.retain(2, null)
.insert("Me", null)
.delete(4)
.retain(2, null);
const operation2 = new WrappedOperation(new TextOperation())
.retain(3, null)
.insert("!", null)
.retain(5, null);
const transformedOperation = new WrappedOperation(new TextOperation())
.retain(4, null)
.insert("!", null)
.retain(2, null);
expect(operation1.transform(operation2)).toContainEqual(
transformedOperation
);
});
it("should transform cursor positions of two operation such that they can be reversed", () => {
const operationMeta1 = new OperationMeta(
new Cursor(0, 0),
new Cursor(2, 4)
);
const operation1 = new WrappedOperation(
new TextOperation(),
operationMeta1
)
.retain(2, null)
.insert("Me", null)
.delete(4)
.retain(2, null);
const operationMeta2 = new OperationMeta(
new Cursor(3, 3),
new Cursor(4, 4)
);
const operation2 = new WrappedOperation(
new TextOperation(),
operationMeta2
)
.retain(3, null)
.insert("!", null)
.retain(5, null);
const transformedOperation = operation1.transform(operation2);
expect(transformedOperation[1].getCursor()).toEqual(new Cursor(4, 4));
});
});
describe("#canMergeWith", () => {
it("should return True if two operation can be applied sequentially", () => {
const operation = new WrappedOperation(new TextOperation())
.retain(6, null)
.insert("Me", null);
const otherOperation = new WrappedOperation(new TextOperation())
.retain(8, null)
.insert("!", null);
expect(operation.canMergeWith(otherOperation)).toEqual(true);
});
});
describe("#compose", () => {
it("should return a wrapped operation that produces same effect as two individual ones applied sequentially", () => {
const content = "Hello World";
const operation = new WrappedOperation(new TextOperation())
.retain(6, null)
.insert("Me", null)
.delete("World");
const otherOperation = new WrappedOperation(new TextOperation())
.retain(6, null)
.insert("World", null)
.delete("Me");
const composedOperation = operation.compose(otherOperation);
expect(composedOperation.apply(content)).toEqual(content);
});
it("should return a wrapped operation that combines cursor movement of two individual ones applied sequentially", () => {
const operationMeta = new OperationMeta(
new Cursor(2, 9),
new Cursor(3, 5)
);
const operation = new WrappedOperation(new TextOperation(), operationMeta)
.retain(6, null)
.insert("Me", null)
.delete("World");
const cursorAfter = new Cursor(4, 7);
const otherOperationMeta = new OperationMeta(
new Cursor(3, 9),
cursorAfter
);
const otherOperation = new WrappedOperation(
new TextOperation(),
otherOperationMeta
)
.retain(6, null)
.insert("World", null)
.delete("Me");
const composedOperation = operation.compose(otherOperation);
expect(composedOperation.getCursor()).toEqual(cursorAfter);
});
it("should keep metadata of current operation if the next one does not have any", () => {
const cursorAfter = new Cursor(4, 7);
const operationMeta = new OperationMeta(new Cursor(2, 9), cursorAfter);
const operation = new WrappedOperation(new TextOperation(), operationMeta)
.retain(6, null)
.insert("Me", null)
.delete("World");
const otherOperation = new WrappedOperation(new TextOperation())
.retain(6, null)
.insert("World", null)
.delete("Me");
const composedOperation = operation.compose(otherOperation);
expect(composedOperation.getCursor()).toEqual(cursorAfter);
});
});
describe("#shouldBeComposedWith", () => {
it("should return true if either operation has no effect", () => {
const operation = new WrappedOperation(new TextOperation())
.retain(6, null)
.insert("Me", null)
.delete(5);
const otherOperation = new WrappedOperation(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 WrappedOperation(new TextOperation())
.retain(6, null)
.insert("Me", null);
const otherOperation = new WrappedOperation(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 WrappedOperation(new TextOperation())
.retain(6, null)
.delete("Me");
const otherOperation = new WrappedOperation(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 WrappedOperation(new TextOperation())
.retain(6, null)
.insert("Me", null);
const otherOperation = new WrappedOperation(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 WrappedOperation(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 WrappedOperation(new TextOperation())
.retain(6, null)
.insert("Me", null);
const otherOperation = new WrappedOperation(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 WrappedOperation(new TextOperation())
.retain(6, null)
.insert("Me", null);
const otherOperation = new WrappedOperation(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 WrappedOperation(new TextOperation())
.retain(7, null)
.delete("Me");
const otherOperation = new WrappedOperation(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 WrappedOperation(new TextOperation())
.retain(6, null)
.insert("Me", null);
const otherOperation = new WrappedOperation(new TextOperation())
.retain(6, null)
.delete("!");
expect(operation.shouldBeComposedWithInverted(otherOperation)).toEqual(
false
);
});
});
describe("#toString", () => {
it("should pretty print a text operation", () => {
const retainCount = 32,
deleteCount = 2,
insertText = "Hello";
const operation = new WrappedOperation(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 WrappedOperation(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 WrappedOperation(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 WrappedOperation(new TextOperation());
const ops = [0];
expect(operation.toJSON()).toEqual(ops);
});
});
});