summaryrefslogtreecommitdiffstats
blob: ae051de83169e028756db510aa79076c962ac09c (plain)
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
665
666
667
668
669
670
671
672
/*  Copyright (c) 2016, Isode Limited, London, England.
 *  All rights reserved.
 *
 *  Acquisition and use of this software and related materials for any
 *  purpose requires a written license agreement from Isode Limited,
 *  or a written license from an organisation licensed by Isode Limited
 *  to grant such a license.
 *
 */
package com.isode.stroke.whiteboard;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;

import org.junit.Test;

import com.isode.stroke.elements.WhiteboardDeleteOperation;
import com.isode.stroke.elements.WhiteboardElement;
import com.isode.stroke.elements.WhiteboardEllipseElement;
import com.isode.stroke.elements.WhiteboardInsertOperation;
import com.isode.stroke.elements.WhiteboardOperation;
import com.isode.stroke.elements.WhiteboardUpdateOperation;


/**
 * Tests for {@link WhiteboardClient}
 */
public class WhiteboardClientTest {

    /*!
     *  /\
     *  \/
     *   \
     */
    @Test
    public void testSynchronize_simplestSync() {
        WhiteboardClient client = new WhiteboardClient();
        WhiteboardInsertOperation serverOp = createInsertOperation("0", "", 0);
        WhiteboardClient.Result pairResult = client.handleServerOperationReceived(serverOp);
        assertEquals(serverOp, pairResult.client);
        assertNull(pairResult.server);

        //Client receives first local operation, because it's parented off "0" which exists
        //in server history and client doesn't wait for any operation ack from server,
        //so this operation could be send
        WhiteboardInsertOperation clientOp = createInsertOperation("a", "0", 1);
        WhiteboardEllipseElement aElement = new WhiteboardEllipseElement(0,0,0,0);
        clientOp.setElement(aElement);
        checkOperation(client.handleLocalOperationReceived(clientOp), "a", "0", 1, aElement);

        //Client receives server operation parented off "0", which isn't last client operation
        //so it have to be transformed against local operations and then transformed value can
        //be returned to draw
        serverOp = createInsertOperation("b", "0", 1);
        WhiteboardEllipseElement bElement = new WhiteboardEllipseElement(0,0,0,0);
        serverOp.setElement(bElement);
        pairResult = client.handleServerOperationReceived(serverOp);
        checkOperation(pairResult.client, "b", "a", 2, bElement);
        assertNull(pairResult.server);

        //Client receives confirmation from the server about processed "a" operation, it had to
        //be transformed against "b" on the server side to receive operation parented off "b".
        //There aren't any waiting operations to send to server, this operation should return
        //nothing
        serverOp = createInsertOperation("a", "b", 1);
        pairResult = client.handleServerOperationReceived(serverOp);
        assertNull(pairResult.client);
        assertNull(pairResult.server);

        //Client receives local operation, it doesn't have to be transformed against anything
        //but operation returned to send to the server should be parented off last server
        //operation, which is "b"
        clientOp = createInsertOperation("c", "b", 3);
        WhiteboardEllipseElement cElement = new WhiteboardEllipseElement(0,0,0,0);
        clientOp.setElement(cElement);
        checkOperation(client.handleLocalOperationReceived(clientOp), "c", "a", 3, cElement);

        //Client receives confirmation from the server about processed "a" operation, it
        //should be the same operation as it was sent because server didn't have to
        //transform it
        clientOp = createInsertOperation("c", "a", 3);
        clientOp.setElement(cElement);
        pairResult = client.handleServerOperationReceived(clientOp);
        assertNull(pairResult.client);
        assertNull(pairResult.server);

        //Results:
        //Client operations:
        //ID    pos
        //0     0
        //a     1
        //b     2
        //c     3
        //
        //Server operations:
        //ID    pos
        //0     0
        //b     1
        //a     1
        //c     3
        //
        //what gives 0abc on both sides
    }
    
    /*!
     *    /
     *   /
     *   \
     */
    @Test
    public void testSynchronize_withoutTranslation() {
        WhiteboardClient client = new WhiteboardClient();
        WhiteboardInsertOperation serverOp = createInsertOperation("0", "", 0);
        WhiteboardClient.Result pairResult = client.handleServerOperationReceived(serverOp);
        assertEquals(serverOp, pairResult.client);
        assertNull(pairResult.server);

        //Client receives first local operation, because it's parented off "0" which exists
        //in server history and client doesn't wait for any operation ack from server,
        //so this operation could be send
        WhiteboardInsertOperation clientOp = createInsertOperation("c", "0", 1);
        WhiteboardEllipseElement cElement = new WhiteboardEllipseElement(0,0,0,0);
        clientOp.setElement(cElement);
        checkOperation(client.handleLocalOperationReceived(clientOp), "c", "0", 1, cElement);

        //Client receives second local operation, client didn't receive ack about previous
        //operation from the server so it can't be send.
        clientOp = createInsertOperation("d", "c", 2);
        WhiteboardEllipseElement dElement = new WhiteboardEllipseElement(0,0,0,0);
        clientOp.setElement(dElement);
        assertNull(client.handleLocalOperationReceived(clientOp));

        //Client receives confirmation about processing "c" operation, it should be the
        //same as sent operation because it wasn't transformed, client could send now
        //operation "d"
        clientOp = createInsertOperation("c", "0", 1);
        clientOp.setElement(cElement);
        pairResult = client.handleServerOperationReceived(clientOp);
        checkOperation(pairResult.server, "d", "c", 2, dElement);
        assertNull(pairResult.client);

        //Client receives confirmation about processing "d", it should be the same as
        //sent operation. There aren't any operations in queue to send.
        clientOp = createInsertOperation("d", "c", 2);
        clientOp.setElement(dElement);
        pairResult = client.handleServerOperationReceived(clientOp);
        assertNull(pairResult.client);
        assertNull(pairResult.server);

        //Client receives new operation from server, it's parented off "d" which is at
        //the end of local history so it doesn't have to be transformed, so operation
        //to pass to window should be the same
        serverOp = createInsertOperation("e", "d", 3);
        WhiteboardEllipseElement eElement = new WhiteboardEllipseElement(0,0,0,0);
        serverOp.setElement(eElement);
        pairResult = client.handleServerOperationReceived(serverOp);
        WhiteboardInsertOperation result = (WhiteboardInsertOperation) pairResult.client;
        assertEquals(serverOp, pairResult.client);
        assertNull(pairResult.server);


        //Client operations:
        //ID    pos
        //0     0
        //c     1
        //d     2
        //e     3
        //
        //Server operations:
        //ID    pos
        //0     0
        //c     1
        //d     2
        //e     3
    }
    
    /*!
     *     /\
     *    /  \
     *    \  /
     *     \/
     */
    @Test
    public void testSynchronize_nonInterrupted() {
        WhiteboardClient client = new WhiteboardClient();
        WhiteboardInsertOperation serverOp = createInsertOperation("0", "", 0);
        WhiteboardClient.Result pairResult = client.handleServerOperationReceived(serverOp);
        assertEquals(serverOp, pairResult.client);
        assertEquals(null, pairResult.server);

        //Client receives first local operation, because it's parented off "0" which exists
        //in server history and client doesn't wait for any operation ack from server,
        //so this operation could be send
        WhiteboardInsertOperation clientOp = createInsertOperation("a", "0", 1);
        WhiteboardEllipseElement aElement = new WhiteboardEllipseElement(0,0,0,0);
        clientOp.setElement(aElement);
        checkOperation(client.handleLocalOperationReceived(clientOp), "a", "0", 1, aElement);

        //Client receives second local operation, client didn't receive ack about previous
        //operation from the server so it can't be send.
        clientOp = createInsertOperation("b", "a", 2);
        WhiteboardEllipseElement bElement = new WhiteboardEllipseElement(0,0,0,0);
        clientOp.setElement(bElement);
        assertNull(client.handleLocalOperationReceived(clientOp));

        //Client receives new operation from server, it should be transformed against
        //"a" and "b" before adding to local operations history because it's parented off "0".
        //Because client is waiting for ack of "a", there is no operation to send to server
        serverOp = createInsertOperation("c", "0", 1);
        WhiteboardEllipseElement cElement = new WhiteboardEllipseElement(0,0,0,0);
        serverOp.setElement(cElement);
        pairResult = client.handleServerOperationReceived(serverOp);
        checkOperation(pairResult.client, "c", "b", 3, cElement);
        assertNull(pairResult.server);

        //Client receives new operation from server, it should be transformed against
        //results of previous transformations, returned operation should be parented off
        //"c" existing in local history.
        //Because client is waiting for ack of "a", there is no operation to send to server
        serverOp = createInsertOperation("d", "c", 2);
        WhiteboardEllipseElement dElement = new WhiteboardEllipseElement(0,0,0,0);
        serverOp.setElement(dElement);
        pairResult = client.handleServerOperationReceived(serverOp);
        checkOperation(pairResult.client, "d", "c", 4, dElement);
        assertNull(pairResult.server);

        //Client receives confirmation about processing "a", it should send next operation
        //to server which is "b", but it should be version parented of transformed "a"
        serverOp = createInsertOperation("a", "d", 1);
        pairResult = client.handleServerOperationReceived(serverOp);
        checkOperation(pairResult.server, "b", "a", 2, bElement);
        assertNull(pairResult.client);


        //Client receives confirmation about processing "b", there aren't any operations
        //waiting so it should return nothing.
        serverOp = createInsertOperation("b", "a", 2);
        pairResult = client.handleServerOperationReceived(serverOp);
        assertNull(pairResult.client);
        assertNull(pairResult.server);

        //Client operations:
        //ID    pos
        //0     0
        //a     1
        //b     2
        //c     3
        //d     4
        //
        //Server operations:
        //ID    pos
        //0     0
        //c     1
        //d     2
        //a     1
        //b     2
        //
        //what gives 0abcd on both sides.
    }
    
    /*!
     *     /\
     *    /  \
     *    \  /
     *    / /
     *    \/
     */
    @Test
    public void testSynchronize_clientInterruption() {
        WhiteboardClient client = new WhiteboardClient();
        WhiteboardInsertOperation serverOp = createInsertOperation("0", "", 0);
        WhiteboardClient.Result pairResult = client.handleServerOperationReceived(serverOp);
        assertEquals(serverOp, pairResult.client);
        assertNull(pairResult.server);

        //Client receives first local operation, because it's parented off "0" which exists
        //in server history and client doesn't wait for any operation ack from server,
        //so this operation could be send
        WhiteboardInsertOperation clientOp = createInsertOperation("a", "0", 1);
        WhiteboardEllipseElement aElement = new WhiteboardEllipseElement(0,0,0,0);
        clientOp.setElement(aElement);
        checkOperation(client.handleLocalOperationReceived(clientOp), "a", "0", 1, aElement);

        //Client receives second local operation, client didn't receive ack about previous
        //operation from the server so it can't be send.
        clientOp = createInsertOperation("b", "a", 2);
        WhiteboardEllipseElement bElement = new WhiteboardEllipseElement(0,0,0,0);
        clientOp.setElement(bElement);
        assertNull(client.handleLocalOperationReceived(clientOp));

        //Client receives new operation from server, it should be transformed against
        //"a" and "b" before adding to local operations history because it's parented off "0".
        //Because client is waiting for ack of "a", there is no operation to send to server
        serverOp = createInsertOperation("c", "0", 1);
        WhiteboardEllipseElement cElement = new WhiteboardEllipseElement(0,0,0,0);
        serverOp.setElement(cElement);
        pairResult = client.handleServerOperationReceived(serverOp);
        checkOperation(pairResult.client, "c", "b", 3, cElement);
        assertNull(pairResult.server);

        //Client receives new local operation, client is still waiting for ack so, it
        //should return nothing
        clientOp = createInsertOperation("e", "a", 4);
        WhiteboardEllipseElement eElement = new WhiteboardEllipseElement(0,0,0,0);
        clientOp.setElement(eElement);
        assertNull(client.handleLocalOperationReceived(clientOp));

        //Client receives new server operation, to add it to local history it should be transformed
        //against result of previous transformations and operation "e", returned operation should
        //be parented off "e", which was last local operation
        serverOp = createInsertOperation("d", "c", 2);
        WhiteboardEllipseElement dElement = new WhiteboardEllipseElement(0,0,0,0);
        serverOp.setElement(dElement);
        pairResult = client.handleServerOperationReceived(serverOp);
        checkOperation(pairResult.client, "d", "e", 5, dElement);
        assertNull(pairResult.server);

        //Client receives confirmation about processing "a", it had to be transformed against
        //"c" and "d" and it is now parented off "d", returned value should be next operation
        //which have to be send to server("b" parented off server version of "a").
        serverOp = createInsertOperation("a", "d", 1);
        pairResult = client.handleServerOperationReceived(serverOp);
        checkOperation(pairResult.server, "b", "a", 2, bElement);
        assertNull(pairResult.client);

        //Client receives confirmation about processing "b", it is the same operation as sent because
        //it didn't have to be transformed, returned value should be next operation
        //which have to be send to server("e" parented off server version of "b").
        serverOp = createInsertOperation("b", "a", 2);
        pairResult = client.handleServerOperationReceived(serverOp);
        checkOperation(pairResult.server, "e", "b", 4, eElement);
        assertNull(pairResult.client);

        //Client receives confirmation about processing "b", it is the same operation as sent because
        //it didn't have to be transformed, there aren't any operations to send so this function returns
        //nothing
        serverOp = createInsertOperation("e", "b", 4);
        pairResult = client.handleServerOperationReceived(serverOp);
        assertNull(pairResult.client);
        assertNull(pairResult.server);

        //Result:
        //Client operations:
        //ID    pos
        //0     0
        //a     1
        //b     2
        //c     3
        //e     4
        //d     5
        //
        //Server operations:
        //0     0
        //c     1
        //d     2
        //a     1
        //b     2
        //e     4
        //what gives 0abced on both sides
    }
    
    /*!
     *    /\
     *   / /
     *   \ \
     *    \/
     */
    @Test
    public void testSynchronize_serverInterruption() {
        WhiteboardClient client = new WhiteboardClient();
        WhiteboardInsertOperation serverOp = createInsertOperation("0", "", 0);
        WhiteboardClient.Result pairResult = client.handleServerOperationReceived(serverOp);
        assertEquals(serverOp, pairResult.client);
        assertNull(pairResult.server);

        //Client receives first local operation, because it's parented off "0" which exists
        //in server history and client doesn't wait for any operation ack from server,
        //so this operation could be send
        WhiteboardInsertOperation clientOp = createInsertOperation("a", "0", 1);
        WhiteboardEllipseElement aElement = new WhiteboardEllipseElement(0,0,0,0);
        clientOp.setElement(aElement);
        checkOperation(client.handleLocalOperationReceived(clientOp), "a", "0", 1, aElement);

        //Client receives second local operation, client didn't receive ack about previous
        //operation from the server so it can't be send.
        clientOp = createInsertOperation("b", "a", 2);
        WhiteboardEllipseElement bElement = new WhiteboardEllipseElement(0,0,0,0);
        clientOp.setElement(bElement);
        assertNull(client.handleLocalOperationReceived(clientOp));

        //Client receives new operation from server, it should be transformed against
        //"a" and "b" before adding to local operations history because it's parented off "0".
        //Because client is waiting for ack of "a", there is no operation to send to server
        serverOp = createInsertOperation("c", "0", 1);
        WhiteboardEllipseElement cElement = new WhiteboardEllipseElement(0,0,0,0);
        serverOp.setElement(cElement);
        pairResult = client.handleServerOperationReceived(serverOp);
        checkOperation(pairResult.client, "c", "b", 3, cElement);
        assertNull(pairResult.server);

        //Client receives confirmation about processing "a", it had to be transformed against
        //"c" and it is now parented off "c", returned value should be next operation
        //which have to be send to server("b" parented off server version of "a").
        serverOp = createInsertOperation("a", "c", 1);
        serverOp.setElement(aElement);
        pairResult = client.handleServerOperationReceived(serverOp);
        checkOperation(pairResult.server, "b", "a", 2, bElement);
        assertNull(pairResult.client);

        //Client receives new server operation, to add it to local history it should be transformed
        //against result of previous transformation(but only with transformation of "b"), returned
        //operation should be parented off "c", which was last local operation
        serverOp = createInsertOperation("d", "a", 3);
        WhiteboardEllipseElement dElement = new WhiteboardEllipseElement(0,0,0,0);
        serverOp.setElement(dElement);
        pairResult = client.handleServerOperationReceived(serverOp);
        checkOperation(pairResult.client, "d", "c", 4, dElement);
        assertNull(pairResult.server);

        //Client receives confirmation about processing "b", it had to be transformed against
        //"d" because both operations was parented off server version of "a".
        //there aren't any operations to send so this function returns nothing.
        serverOp = createInsertOperation("b", "d", 2);
        serverOp.setElement(bElement);
        pairResult = client.handleServerOperationReceived(serverOp);
        assertNull(pairResult.client);
        assertNull(pairResult.server);

        //Client operations:
        //ID    pos
        //0     0
        //a     1
        //b     2
        //c     3
        //d     4
        //
        //Server operations:
        //ID    pos
        //0     0
        //c     1
        //a     1
        //d     3
        //b     2
        //
        //what gives 0abcd on both sides
    }
    
    /*!
     *     /\
     *    /  \
     *    \  /
     *     \/
     */
    @Test
    public void testSynchronize_nonInterruptedMixOperations() {
        WhiteboardClient client = new WhiteboardClient();
        WhiteboardInsertOperation serverOp = createInsertOperation("0", "", 0);
        WhiteboardClient.Result pairResult = client.handleServerOperationReceived(serverOp);
        assertEquals(serverOp, pairResult.client);
        assertNull(pairResult.server);

        //Client receives first local operation, because it's parented off "0" which exists
        //in server history and client doesn't wait for any operation ack from server,
        //so this operation could be send
        WhiteboardInsertOperation clientOp = createInsertOperation("a", "0", 1);
        WhiteboardEllipseElement aElement = new WhiteboardEllipseElement(0,0,0,0);
        clientOp.setElement(aElement);
        checkOperation(client.handleLocalOperationReceived(clientOp), "a", "0", 1, aElement);

        //Client receives second local operation, client didn't receive ack about previous
        //operation from the server so it can't be send.
        WhiteboardUpdateOperation clientUpdateOp = createUpdateOperation("b", "a", 0);
        WhiteboardEllipseElement bElement = new WhiteboardEllipseElement(0,0,0,0);
        clientUpdateOp.setElement(bElement);
        assertNull(client.handleLocalOperationReceived(clientUpdateOp));

        //Client receives new operation from server, it should be transformed against
        //"a" and "b" before adding to local operations history because it's parented off "0".
        //Because client is waiting for ack of "a", there is no operation to send to server
        WhiteboardUpdateOperation serverUpdateOp = createUpdateOperation("c", "0", 0);
        WhiteboardEllipseElement cElement = new WhiteboardEllipseElement(0,0,0,0);
        serverUpdateOp.setElement(cElement);
        pairResult = client.handleServerOperationReceived(serverUpdateOp);
        checkOperation(pairResult.client, "c", "b", 0, cElement);
        assertNull(pairResult.server);

        //Client receives new operation from server, it should be transformed against
        //results of previous transformations, returned operation should be parented off
        //"c" existing in local history.
        //Because client is waiting for ack of "a", there is no operation to send to server
        serverOp = createInsertOperation("d", "c", 1);
        WhiteboardEllipseElement dElement = new WhiteboardEllipseElement(0,0,0,0);
        serverOp.setElement(dElement);
        pairResult = client.handleServerOperationReceived(serverOp);
        checkOperation(pairResult.client, "d", "c", 2, dElement);
        assertNull(pairResult.server);

        //Client receives confirmation about processing "a", it should send next operation
        //to server which is "b", but it should be version parented of transformed "a"
        serverOp = createInsertOperation("a", "d", 1);
        pairResult = client.handleServerOperationReceived(serverOp);
        checkOperation(pairResult.server, "b", "a", 0, cElement);
        assertNull(pairResult.client);


        //Client receives confirmation about processing "b", there aren't any operations
        //waiting so it should return nothing.
        serverUpdateOp = createUpdateOperation("b", "a", 0);
        pairResult = client.handleServerOperationReceived(serverUpdateOp);
        assertNull(pairResult.client);
        assertNull(pairResult.server);

        //Client operations:
        //ID    pos
        //0     0
        //a     1
        //b     2
        //c     3
        //d     4
        //
        //Server operations:
        //ID    pos
        //0     0
        //c     1
        //d     2
        //a     1
        //b     2
        //
        //what gives 0abcd on both sides.
    }
    
    /*!
     *     /\
     *    /  \
     *    \  /
     *     \/
     */
    @Test
    public void testSynchronize_nonInterruptedMixOperations2() {
        WhiteboardClient client = new WhiteboardClient();
        WhiteboardInsertOperation serverOp = createInsertOperation("0", "", 0);
        WhiteboardClient.Result pairResult = client.handleServerOperationReceived(serverOp);
        assertEquals(serverOp, pairResult.client);
        assertNull(pairResult.server);

        serverOp = createInsertOperation("1", "0", 1);
        pairResult = client.handleServerOperationReceived(serverOp);
        assertEquals(serverOp, pairResult.client);
        assertNull(pairResult.server);
        //Client receives first local operation, because it's parented off "0" which exists
        //in server history and client doesn't wait for any operation ack from server,
        //so this operation could be send
        WhiteboardInsertOperation clientOp;
        WhiteboardUpdateOperation clientUpdateOp;
        WhiteboardDeleteOperation clientDeleteOp;
        clientUpdateOp = createUpdateOperation("a", "1", 0);
        WhiteboardEllipseElement aElement = new WhiteboardEllipseElement(0,0,0,0);
        clientUpdateOp.setElement(aElement);
        checkOperation(client.handleLocalOperationReceived(clientUpdateOp), "a", "1", 0, aElement);

        //Client receives second local operation, client didn't receive ack about previous
        //operation from the server so it can't be send.
        clientDeleteOp = createDeleteOperation("b", "a", 1);
        assertNull(client.handleLocalOperationReceived(clientDeleteOp));

        //Client receives new operation from server, it should be transformed against
        //"a" and "b" before adding to local operations history because it's parented off "0".
        //Because client is waiting for ack of "a", there is no operation to send to server
        serverOp = createInsertOperation("c", "1", 2);
        WhiteboardEllipseElement cElement = new WhiteboardEllipseElement(0,0,0,0);
        serverOp.setElement(cElement);
        pairResult = client.handleServerOperationReceived(serverOp);
        checkOperation(pairResult.client, "c", "b", 1, cElement);
        assertNull(pairResult.server);

        //Client receives new operation from server, it should be transformed against
        //results of previous transformations, returned operation should be parented off
        //"c" existing in local history.
        //Because client is waiting for ack of "a", there is no operation to send to server
        WhiteboardUpdateOperation serverUpdateOp = createUpdateOperation("d", "c", 0);
        WhiteboardEllipseElement dElement = new WhiteboardEllipseElement(0,0,0,0);
        serverUpdateOp.setElement(dElement);
        pairResult = client.handleServerOperationReceived(serverUpdateOp);
        checkOperation(pairResult.client, "d", "c", 0, dElement);
        assertNull(pairResult.server);

        //Client receives confirmation about processing "a", it should send next operation
        //to server which is "b", but it should be version parented of transformed "a"
        serverUpdateOp = createUpdateOperation("a", "d", 0);
        pairResult = client.handleServerOperationReceived(serverUpdateOp);
        checkOperation(pairResult.server, "b", "a", 1);
        assertNull(pairResult.client);


        //Client receives confirmation about processing "b", there aren't any operations
        //waiting so it should return nothing.
        WhiteboardDeleteOperation serverDeleteOp = createDeleteOperation("b", "a", 0);
        pairResult = client.handleServerOperationReceived(serverDeleteOp);
        assertNull(pairResult.client);
        assertNull(pairResult.server);

        //Client operations:
        //ID    pos
        //0     0
        //a     1
        //b     2
        //c     3
        //d     4
        //
        //Server operations:
        //ID    pos
        //0     0
        //c     1
        //d     2
        //a     1
        //b     2
        //
        //what gives 0abcd on both sides.
    }
    
    private WhiteboardInsertOperation createInsertOperation(String id, String parent, int pos) {
        WhiteboardInsertOperation operation = new WhiteboardInsertOperation();
        operation.setParentID(parent);
        operation.setID(id);
        operation.setPos(pos);
        return operation;
    }

    private WhiteboardUpdateOperation createUpdateOperation(String id, String parent, int pos) {
        WhiteboardUpdateOperation operation = new WhiteboardUpdateOperation();
        operation.setParentID(parent);
        operation.setID(id);
        operation.setPos(pos);
        return operation;
    }

    private WhiteboardDeleteOperation createDeleteOperation(String id, String parent, int pos) {
        WhiteboardDeleteOperation operation = new WhiteboardDeleteOperation();
        operation.setParentID(parent);
        operation.setID(id);
        operation.setPos(pos);
        return operation;
    }
    
    private void checkOperation(WhiteboardOperation operation, String id, String parent) {
        checkOperation(operation,id,parent,-1);
    }

    private void checkOperation(WhiteboardOperation operation, String id, String parent, int pos) {
       checkOperation(operation,id,parent,pos,null);
    }
    
    private void checkOperation(WhiteboardOperation operation, String id, String parent, int pos, WhiteboardElement element) {
        assertEquals(id, operation.getID());
        assertEquals(parent, operation.getParentID());
        if (pos != -1) {
            assertEquals(pos, operation.getPos());
        }

        if (element != null) {
            if (operation instanceof WhiteboardInsertOperation) {
                WhiteboardInsertOperation insertOp = (WhiteboardInsertOperation) operation;
                assertEquals(element,insertOp.getElement());
            }
            else if (operation instanceof WhiteboardUpdateOperation) {
                WhiteboardUpdateOperation updateOp = (WhiteboardUpdateOperation) operation;
                assertEquals(element,updateOp.getElement());
            }
        }
    }

}