Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 9428d1f0b66d04acf896554379f98a5fbdbf82ec (plain) (blame)
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
/*
 * Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Ibrahim Sallam - initial API and implementation
 */
package org.eclipse.emf.cdo.tests.objectivity;

import static org.junit.Assert.assertEquals;

import org.eclipse.emf.cdo.server.internal.objectivity.db.FdManager;
import org.eclipse.emf.cdo.server.internal.objectivity.db.ObjyConnection;
import org.eclipse.emf.cdo.server.internal.objectivity.db.ObjySession;
import org.eclipse.emf.cdo.server.internal.objectivity.schema.ObjyBranch;
import org.eclipse.emf.cdo.server.internal.objectivity.schema.ObjyBranchManager;
import org.eclipse.emf.cdo.server.internal.objectivity.utils.ObjyDb;
import org.eclipse.emf.cdo.spi.common.branch.InternalCDOBranchManager.BranchLoader.BranchInfo;

import com.objy.db.app.oo;
import com.objy.db.app.ooObj;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

class Temp extends ooObj
{
  protected long lValue = 0;

  protected int revision = 0;

  private int branchId = 0;

  public Temp(long value)
  {
    lValue = value;
    revision = 1;
  }

  public void revisionIt()
  {
    markModified();
    revision++;
  }

  public void setBranch(int id)
  {
    markModified();
    branchId = id;
  }

  public int getRevision()
  {
    fetch();
    return revision;
  }

  public int getBranchId()
  {
    fetch();
    return branchId;
  }

  public long getValue()
  {
    fetch();
    return lValue;
  }
}

/**
 * This class will hide access to Objectivity/Db
 *
 * @author Ibrahim Sallam
 */
class ObjyDbStore
{
  // private final String fdName = "c:\\data\\objyBranchTest.boot"; // TODO - this is windows path style, generalise it.

  private final String repoName = "TestRepo";

  private FdManager fdManager;

  private ObjyConnection objyConnection;

  private ObjySession objySession;

  public ObjyDbStore()
  {
    fdManager = new FdManager();
    objyConnection = ObjyConnection.INSTANCE;
  }

  public void startup()
  {
    fdManager.setFdDirPath("\\temp");
    fdManager.configure("objyBrnachTest");
    objyConnection.connect(fdManager.getFd(), oo.LogNone);
    objySession = objyConnection.getWriteSessionFromPool("TestSession");
  }

  public void shutdown()
  {
    fdManager.removeData();
    objyConnection.disconnect();
  }

  public ObjyBranchManager getBranchManager()
  {
    return ObjyDb.getOrCreateBranchManager(repoName);
  }

  public void begin()
  {
    objySession.begin();
  }

  public void commit()
  {
    objySession.commit();
  }

  public Temp newObject()
  {
    return new Temp(System.currentTimeMillis());
  }
}

/**
 * @author Ibrahim Sallam
 */
public class ObjyBranchManagementTest
{
  private static final String BRANCH_NAME_A = "MyBranchA";

  private static final String BRANCH_NAME_B = "MyBranchB";

  private final int baseBranchId = 0;

  private final long baseBranchTimeStamp = System.currentTimeMillis();

  ObjyDbStore dbStore = null;

  BranchInfo branchInfoA = null;

  BranchInfo branchInfoB = null;

  public static final int NEW_BRANCH = Integer.MAX_VALUE;

  public static final int NEW_LOCAL_BRANCH = Integer.MIN_VALUE;

  @Before
  public void setUp()
  {
    dbStore = new ObjyDbStore();
    branchInfoA = new BranchInfo(BRANCH_NAME_A, baseBranchId, baseBranchTimeStamp);
    branchInfoB = new BranchInfo(BRANCH_NAME_B, baseBranchId, baseBranchTimeStamp);
    dbStore.startup();
  }

  @Test
  public void getNextBranchId()
  {
    dbStore.begin();
    int branchId = dbStore.getBranchManager().nextBranchId();
    dbStore.commit();
    assertEquals(true, branchId > 0);
  }

  @Test
  public void createBranch()
  {
    dbStore.begin();
    int nextBranchId = dbStore.getBranchManager().getLastBranchId() + 1;
    dbStore.commit();

    dbStore.begin();
    int branchId = dbStore.getBranchManager().createBranch(NEW_BRANCH, branchInfoA).getElement1();
    dbStore.commit();
    assertEquals(branchId, nextBranchId);
  }

  @Test
  public void getUnavailableBranch()
  {
    dbStore.begin();
    ObjyBranch objyBranch = dbStore.getBranchManager().getBranch(1);
    dbStore.commit();
    assertEquals(true, objyBranch == null);
  }

  @Test
  public void getBranch()
  {
    dbStore.begin();
    int branchId = dbStore.getBranchManager().createBranch(NEW_LOCAL_BRANCH, branchInfoB).getElement1();
    dbStore.commit();
    // using the branchId we'll get it from the dbStore.
    dbStore.begin();
    BranchInfo branchInfo = dbStore.getBranchManager().getBranch(branchId).getBranchInfo();
    dbStore.commit();
    assertEquals(baseBranchId, branchInfo.getBaseBranchID());
    assertEquals(baseBranchTimeStamp, branchInfo.getBaseTimeStamp());
    assertEquals(BRANCH_NAME_B, branchInfo.getName());
  }

  @Test
  public void createBranches()
  {
    // Create a group of branches (no sub-branches)
    dbStore.begin();
    int branchIdA = dbStore.getBranchManager().createBranch(NEW_BRANCH, branchInfoA).getElement1();
    int branchIdB = dbStore.getBranchManager().createBranch(NEW_BRANCH, branchInfoB).getElement1();
    dbStore.commit();

    dbStore.begin();
    int nextBranchId = dbStore.getBranchManager().nextBranchId();
    dbStore.commit();
    assertEquals(true, branchIdA < nextBranchId);
    assertEquals(true, branchIdB < nextBranchId);
  }

  @Test
  public void getBranches()
  {
    // Get all branches from a created group.

    // Create a group of branches (no sub-branches)
    dbStore.begin();
    int branchIdA = dbStore.getBranchManager().createBranch(NEW_BRANCH, branchInfoA).getElement1();
    int branchIdB = dbStore.getBranchManager().createBranch(NEW_BRANCH, branchInfoB).getElement1();
    dbStore.commit();

    // using the branchId we'll get it from the dbStore.
    dbStore.begin();
    BranchInfo branchInfoB = dbStore.getBranchManager().getBranch(branchIdB).getBranchInfo();
    dbStore.commit();
    assertEquals(baseBranchId, branchInfoB.getBaseBranchID());
    assertEquals(baseBranchTimeStamp, branchInfoB.getBaseTimeStamp());
    assertEquals(BRANCH_NAME_B, branchInfoB.getName());

    // using the branchId we'll get it from the dbStore.
    dbStore.begin();
    BranchInfo branchInfoA = dbStore.getBranchManager().getBranch(branchIdA).getBranchInfo();
    dbStore.commit();
    assertEquals(baseBranchId, branchInfoA.getBaseBranchID());
    assertEquals(baseBranchTimeStamp, branchInfoA.getBaseTimeStamp());
    assertEquals(BRANCH_NAME_A, branchInfoA.getName());
  }

  @Test
  public void getBrancheRange()
  {
    // Get a range of branches from a created group.
    int thisBaseBranchId = 0;
    long thisBaseBranchTimeStamp = System.currentTimeMillis();

    // Create a group of branches (no sub-branches)
    dbStore.begin();
    String prefixString = "Branch_";
    List<Integer> branchList = new ArrayList<Integer>();
    for (int i = 0; i < 20; i++)
    {
      dbStore.begin();
      BranchInfo branchInfo = new BranchInfo(prefixString + i, thisBaseBranchId, thisBaseBranchTimeStamp);
      int id = dbStore.getBranchManager().createBranch(NEW_BRANCH, branchInfo).getElement1();
      branchList.add(id);
      dbStore.commit();
    }
    dbStore.commit();

    // Get range from 5 to 10.
    {
      dbStore.begin();
      List<ObjyBranch> branchRangeList = dbStore.getBranchManager().getBranches(branchList.get(5), branchList.get(10));
      int index = 5;
      for (ObjyBranch objyBranch : branchRangeList)
      {
        int expectedId = branchList.get(index);
        assertEquals(expectedId, objyBranch.getBranchId());
        assertEquals(thisBaseBranchId, objyBranch.getBaseBranchId());
        assertEquals(thisBaseBranchTimeStamp, objyBranch.getBaseBranchTimeStamp());
        assertEquals("Branch_" + index, objyBranch.getBranchName());
        index++;
      }
      dbStore.commit();
    }

    // Get range from 7 to end.
    {
      dbStore.begin();
      List<ObjyBranch> branchRangeList = dbStore.getBranchManager().getBranches(branchList.get(7), 0);
      assertEquals(13, branchRangeList.size());

      int index = 7;
      for (ObjyBranch objyBranch : branchRangeList)
      {
        int expectedId = branchList.get(index);
        assertEquals(expectedId, objyBranch.getBranchId());
        assertEquals(thisBaseBranchId, objyBranch.getBaseBranchId());
        assertEquals(thisBaseBranchTimeStamp, objyBranch.getBaseBranchTimeStamp());
        assertEquals("Branch_" + index, objyBranch.getBranchName());
        index++;
      }
      dbStore.commit();
    }
  }

  @Test
  public void deleteBranch()
  {
    dbStore.begin();
    int branchId = dbStore.getBranchManager().createBranch(NEW_BRANCH, branchInfoA).getElement1();
    dbStore.commit();

    // delete it.
    dbStore.begin();
    assertEquals(true, dbStore.getBranchManager().deleteBranch(branchId));
    dbStore.commit();
  }

  @Test
  public void createSubBranches()
  {
    dbStore.begin();
    int thisBaseBranchId = dbStore.getBranchManager().createBranch(NEW_BRANCH, branchInfoA).getElement1();
    dbStore.getBranchManager().createBranch(NEW_BRANCH, branchInfoB);
    long thisBaseBranchTimeStamp = System.currentTimeMillis();
    // using the created branch we'll create subBranches.
    dbStore.commit();

    String prefixString = "SubBranch_";
    List<Integer> subBranchList = new ArrayList<Integer>();
    for (int i = 0; i < 10; i++)
    {
      dbStore.begin();
      BranchInfo branchInfo = new BranchInfo(prefixString + i, thisBaseBranchId, thisBaseBranchTimeStamp);
      int id = dbStore.getBranchManager().createBranch(NEW_BRANCH, branchInfo).getElement1();
      subBranchList.add(id);
      dbStore.commit();
    }
    // get sub-branches for 0.
    List<ObjyBranch> objyBranchList = new ArrayList<ObjyBranch>();

    dbStore.begin();
    objyBranchList = dbStore.getBranchManager().getSubBranches(0);
    assertEquals(2, objyBranchList.size());
    dbStore.commit();

    dbStore.begin();
    objyBranchList = dbStore.getBranchManager().getSubBranches(thisBaseBranchId);
    assertEquals(10, objyBranchList.size());
    dbStore.commit();

  }

  @Test
  public void getSubBranches()
  {
    dbStore.begin();
    int thisBaseBranchId = dbStore.getBranchManager().createBranch(NEW_LOCAL_BRANCH, branchInfoA).getElement1();
    long thisBaseBranchTimeStamp = System.currentTimeMillis();
    // using the created branch we'll create subBranches.
    dbStore.commit();

    String prefixString = "SubBranch_";
    List<Integer> subBranchList = new ArrayList<Integer>();
    for (int i = 0; i < 10; i++)
    {
      dbStore.begin();
      BranchInfo branchInfo = new BranchInfo(prefixString + i, thisBaseBranchId, thisBaseBranchTimeStamp);
      int id = dbStore.getBranchManager().createBranch(NEW_LOCAL_BRANCH, branchInfo).getElement1();
      subBranchList.add(id);
      dbStore.commit();
    }
    // verify that we have sub-branches.
    dbStore.begin();
    int i = 0;
    for (Integer iValue : subBranchList)
    {
      BranchInfo branchInfo = dbStore.getBranchManager().getBranch(iValue).getBranchInfo();
      assertEquals(thisBaseBranchId, branchInfo.getBaseBranchID());
      assertEquals(thisBaseBranchTimeStamp, branchInfo.getBaseTimeStamp());
      assertEquals(prefixString + i++, branchInfo.getName());
    }
    dbStore.commit();

  }

  @Test
  public void addRevisionsToBranch()
  {
    List<Temp> objectList = new ArrayList<Temp>();
    // create 100 objects in Objy (Main Branch).
    dbStore.begin();
    for (int i = 0; i < 100; i++)
    {
      Temp tempObject = dbStore.newObject();
      if (i % 2 == 0)
      {
        objectList.add(tempObject);
      }
    }
    dbStore.commit();

    // create a branch.
    dbStore.begin();
    int branchId = dbStore.getBranchManager().createBranch(NEW_BRANCH, branchInfoA).getElement1();
    dbStore.commit();

    // version what we collected in the array, and put them into a new branch.
    {
      dbStore.begin();
      ObjyBranch objyBranch = dbStore.getBranchManager().getBranch(branchId);

      for (Temp tempObj : objectList)
      {
        tempObj.setBranch(branchId);
        tempObj.revisionIt();
        objyBranch.addRevision(tempObj);
      }
      dbStore.commit();
    }
    // verify that the number of revisions in a branch is the same as what
    // we added.
    {
      dbStore.begin();
      ObjyBranch objyBranch = dbStore.getBranchManager().getBranch(branchId);
      assertEquals(objectList.size(), objyBranch.numberOfRevisions());
      dbStore.commit();
    }
  }

  @Test
  public void getRevisionsFromBranch()
  {
    List<Temp> objectList = new ArrayList<Temp>();
    // create 100 objects in Objy (Main Branch).
    dbStore.begin();
    for (int i = 0; i < 200; i++)
    {
      Temp tempObject = dbStore.newObject();
      if (i % 2 == 0)
      {
        objectList.add(tempObject);
      }
    }
    dbStore.commit();

    // create a branch.
    dbStore.begin();
    int branchId = dbStore.getBranchManager().createBranch(NEW_BRANCH, branchInfoA).getElement1();
    dbStore.commit();

    // version what we collected in the array, and put them into a new branch.
    {
      dbStore.begin();
      ObjyBranch objyBranch = dbStore.getBranchManager().getBranch(branchId);

      for (Temp tempObj : objectList)
      {
        tempObj.setBranch(branchId);
        tempObj.revisionIt();
        objyBranch.addRevision(tempObj);
      }
      dbStore.commit();
    }
    // Get the objects from the branch.
    {
      dbStore.begin();
      ObjyBranch objyBranch = dbStore.getBranchManager().getBranch(branchId);
      Iterator<?> itr = objyBranch.getRevisions().iterator();
      List<Temp> actualList = new ArrayList<Temp>();
      while (itr.hasNext())
      {
        Temp tempObj = (Temp)itr.next();
        assertEquals(tempObj.getBranchId(), branchId);
        assertEquals(true, tempObj.getRevision() > 1);
        actualList.add(tempObj);
      }
      assertEquals(objectList.size(), actualList.size());
      dbStore.commit();
    }
  }

  @Test
  public void deleteRevisionsFromBranch()
  {
    List<Temp> objectList = new ArrayList<Temp>();
    // create 100 objects in Objy (Main Branch).
    dbStore.begin();
    for (int i = 0; i < 100; i++)
    {
      Temp tempObject = dbStore.newObject();
      if (i % 2 == 0)
      {
        objectList.add(tempObject);
      }
    }
    dbStore.commit();

    // create a branch.
    dbStore.begin();
    int branchId = dbStore.getBranchManager().createBranch(NEW_BRANCH, branchInfoA).getElement1();
    dbStore.commit();

    // version what we collected in the array, and put them into a new branch.
    {
      dbStore.begin();
      ObjyBranch objyBranch = dbStore.getBranchManager().getBranch(branchId);

      for (Temp tempObj : objectList)
      {
        tempObj.setBranch(branchId);
        tempObj.revisionIt();
        objyBranch.addRevision(tempObj);
      }
      dbStore.commit();
    }
    // verify that the number of revisions in a branch is the same as what
    // we added.
    {
      dbStore.begin();
      ObjyBranch objyBranch = dbStore.getBranchManager().getBranch(branchId);
      assertEquals(objectList.size(), objyBranch.numberOfRevisions());
      dbStore.commit();
    }

    // delete revisions
    {
      dbStore.begin();
      ObjyBranch objyBranch = dbStore.getBranchManager().getBranch(branchId);
      for (Temp tempObj : objectList)
      {
        assertEquals(true, objyBranch.deleteRevision(tempObj));
      }
      dbStore.commit();
    }

    // verify that the number of revisions are 0
    {
      dbStore.begin();
      ObjyBranch objyBranch = dbStore.getBranchManager().getBranch(branchId);
      assertEquals(0, objyBranch.numberOfRevisions());
      dbStore.commit();
    }
  }

  @Test(expected = IndexOutOfBoundsException.class)
  public void empty()
  {
    new ArrayList<Object>().get(0);
  }

  @After
  public void tearDown()
  {
    dbStore.shutdown();
  }

}

Back to the top