Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: fd9fd9c5d6a516e1bece37b5618cb38fb36699e6 (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
/*
 * Copyright (c) 2013 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:
 *    Esteban Dugueperoux - initial API and implementation
 */
package org.eclipse.emf.cdo.tests.bugzilla;

import org.eclipse.emf.cdo.common.branch.CDOBranch;
import org.eclipse.emf.cdo.common.branch.CDOBranchHandler;
import org.eclipse.emf.cdo.common.branch.CDOBranchManager;
import org.eclipse.emf.cdo.session.CDOSession;
import org.eclipse.emf.cdo.tests.AbstractCDOTest;
import org.eclipse.emf.cdo.tests.config.IRepositoryConfig;
import org.eclipse.emf.cdo.tests.config.impl.ConfigTest.Skips;

/**
 * Bug 414270: Do not access sub branches if repository does not support branching.
 * 
 * @author Eike Stepper
 */
@Skips(IRepositoryConfig.CAPABILITY_BRANCHING)
public class Bugzilla_414270_Test extends AbstractCDOTest
{
  public void testGetBranches() throws Exception
  {
    CDOSession session = openSession();
    CDOBranch mainBranch = session.getBranchManager().getMainBranch();
    CDOBranch[] branches = mainBranch.getBranches();
    assertEquals(0, branches.length);
  }

  public void testGetBranch() throws Exception
  {
    CDOSession session = openSession();
    CDOBranch mainBranch = session.getBranchManager().getMainBranch();
    CDOBranch branch = mainBranch.getBranch("blabla");
    assertEquals(null, branch);
  }

  public void testCreateBranch() throws Exception
  {
    CDOSession session = openSession();
    CDOBranch mainBranch = session.getBranchManager().getMainBranch();

    try
    {
      mainBranch.createBranch("blabla");
      fail("IllegalStateException expected");
    }
    catch (IllegalStateException expected)
    {
      // SUCCESS
    }
  }

  public void testManagerGetBranchByID() throws Exception
  {
    CDOSession session = openSession();
    CDOBranchManager branchManager = session.getBranchManager();
    CDOBranch mainBranch = branchManager.getBranch(CDOBranch.MAIN_BRANCH_ID);
    assertEquals(branchManager.getMainBranch(), mainBranch);

    CDOBranch branch = branchManager.getBranch(4711);
    assertEquals(null, branch);
  }

  public void testManagerGetBranchByPath() throws Exception
  {
    CDOSession session = openSession();
    CDOBranchManager branchManager = session.getBranchManager();
    CDOBranch mainBranch = branchManager.getBranch(CDOBranch.MAIN_BRANCH_NAME);
    assertEquals(branchManager.getMainBranch(), mainBranch);

    CDOBranch branch = branchManager.getBranch("/MAIN/blabla");
    assertEquals(null, branch);
  }

  public void testManagerQuery() throws Exception
  {
    CDOSession session = openSession();
    CDOBranchManager branchManager = session.getBranchManager();

    final CDOBranch[] result = { null };
    int count = branchManager.getBranches(CDOBranch.MAIN_BRANCH_ID, CDOBranch.MAIN_BRANCH_ID + 1,
        new CDOBranchHandler()
        {
          public void handleBranch(CDOBranch branch)
          {
            if (result[0] != null)
            {
              fail("Only one result branch expected: the main branch");
            }

            result[0] = branch;
          }
        });

    assertEquals(1, count);
    assertEquals(branchManager.getMainBranch(), result[0]);
  }

  public void testManagerQueryNoResult() throws Exception
  {
    CDOSession session = openSession();
    CDOBranchManager branchManager = session.getBranchManager();

    int count = branchManager.getBranches(CDOBranch.MAIN_BRANCH_ID + 1, CDOBranch.MAIN_BRANCH_ID + 2,
        new CDOBranchHandler()
        {
          public void handleBranch(CDOBranch branch)
          {
            fail("No result branch expected");
          }
        });

    assertEquals(0, count);
  }
}

Back to the top