Skip to main content
summaryrefslogtreecommitdiffstats
blob: 45f908f78a3c1f52a7a9787b3b44e641d996949d (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
/*******************************************************************************
 * Copyright (c) 2004, 2007 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.core.model.type;

import org.junit.Assert;
import org.eclipse.osee.framework.core.enums.StorageState;
import org.eclipse.osee.framework.core.exception.OseeCoreException;
import org.eclipse.osee.framework.core.exception.OseeStateException;
import org.eclipse.osee.framework.core.model.AbstractOseeType;
import org.eclipse.osee.framework.core.model.IOseeStorable;
import org.eclipse.osee.framework.core.model.mocks.ModelAsserts;
import org.eclipse.osee.framework.jdk.core.util.GUID;
import org.junit.Test;

/**
 * @author Roberto E. Escobar
 */
public class AbstractOseeTypeTest<T extends AbstractOseeType> {

   private final T type;
   private final String name;
   private final String guid;

   protected AbstractOseeTypeTest(T type, String guid, String name) {
      this.type = type;
      this.name = name;
      this.guid = guid;
   }

   protected T getType() {
      return type;
   }

   protected String getExpectedName() {
      return name;
   }

   protected String getExpectedGuid() {
      return guid;
   }

   @Test
   public void testSetGetGuid() {
      Assert.assertEquals(getExpectedGuid(), type.getGuid());
   }

   @Test
   public void testGetId() {
      Assert.assertEquals(IOseeStorable.UNPERSISTED_VALUE, Integer.valueOf(type.getId()));
   }

   @Test(expected = OseeStateException.class)
   public void testSetGetId() throws OseeCoreException {
      type.setId(Integer.MAX_VALUE);
      Assert.assertEquals(Integer.MAX_VALUE, type.getId());

      type.setId(Integer.MAX_VALUE - 1);
   }

   @Test
   public void testSetGetName() throws Exception {
      String newName = GUID.create();
      ModelAsserts.assertTypeSetGet(getType(), AbstractOseeType.NAME_FIELD_KEY, "getName", "setName",
         getExpectedName(), newName);
   }

   @Test
   public void testSetGetStorageState() {
      Assert.assertEquals(StorageState.LOADED, type.getStorageState());
      Assert.assertFalse(type.isDirty());

      type.setStorageState(StorageState.MODIFIED);
      Assert.assertFalse(type.isDirty());
      type.clearDirty();
      Assert.assertFalse(type.isDirty());
      Assert.assertEquals(StorageState.LOADED, type.getStorageState());

      type.setStorageState(StorageState.PURGED);
      Assert.assertFalse(type.isDirty());
      type.clearDirty();
      Assert.assertFalse(type.isDirty());
      Assert.assertEquals(StorageState.PURGED, type.getStorageState());

      type.setStorageState(StorageState.CREATED);
      Assert.assertFalse(type.isDirty());
      type.clearDirty();
      Assert.assertFalse(type.isDirty());
      Assert.assertEquals(StorageState.LOADED, type.getStorageState());
   }

   @Test
   public void testToString() {
      Assert.assertEquals(String.format("%s - [%s]", name, guid), type.toString());
   }

}

Back to the top