Skip to main content
summaryrefslogtreecommitdiffstats
blob: d61a82bba3ca0d8fb7babf358c731a89dd9881f9 (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
/*******************************************************************************
 * Copyright (c) 2010 Boeing.
 * 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:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.framework.skynet.core.test.branch;

import static org.junit.Assert.assertFalse;
import java.util.Arrays;
import org.junit.Assert;
import org.eclipse.osee.framework.core.data.SystemUser;
import org.eclipse.osee.framework.core.model.Branch;
import org.eclipse.osee.framework.skynet.core.UserManager;
import org.eclipse.osee.framework.skynet.core.artifact.BranchManager;
import org.eclipse.osee.framework.skynet.core.test.util.FrameworkTestUtil;
import org.eclipse.osee.support.test.util.TestUtil;
import org.junit.After;
import org.junit.Before;

/**
 * @author Donald G. Dunne
 */
public class BranchManagerTest {

   public static String branchName = "BranchManagerTest";
   public static String branchReNamed = "BranchManagerTest-Renamed";

   @Before
   public void setUp() throws Exception {
      // This test should only be run on test db
      assertFalse(TestUtil.isProductionDb());
      cleanup();
   }

   @org.junit.Test
   public void testRenameBranch() throws Exception {

      Assert.assertEquals("Branch should not exist", 0, BranchManager.getBranchesByName(branchName).size());
      Assert.assertEquals("Branch should not exist", 0, BranchManager.getBranchesByName(branchReNamed).size());

      // create a new working branch
      Branch branch =
         BranchManager.createWorkingBranch(BranchManager.getCommonBranch(), branchName,
            UserManager.getUser(SystemUser.OseeSystem));

      Assert.assertNotNull(BranchManager.getBranch(branchName));
      Assert.assertEquals("Branch should not exist", 0, BranchManager.getBranchesByName(branchReNamed).size());

      branch.setName(branchReNamed);
      BranchManager.persist(branch);

      Assert.assertEquals("Branch should not exist", 0, BranchManager.getBranchesByName(branchName).size());
      Assert.assertNotNull(BranchManager.getBranch(branchReNamed));

   }

   @After
   public void testCleanupPost() throws Exception {
      cleanup();
   }

   private static void cleanup() throws Exception {
      if (BranchManager.getBranchesByName(branchName).size() > 0) {
         FrameworkTestUtil.purgeWorkingBranches(Arrays.asList(branchName));
      }
      if (BranchManager.getBranchesByName(branchReNamed).size() > 0) {
         FrameworkTestUtil.purgeWorkingBranches(Arrays.asList(branchReNamed));
      }
   }

}

Back to the top