Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.model.test/src/org/eclipse/osee/framework/core/model/fields/ArtifactTypeAttributesFieldTest.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core.model.test/src/org/eclipse/osee/framework/core/model/fields/ArtifactTypeAttributesFieldTest.java107
1 files changed, 107 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.model.test/src/org/eclipse/osee/framework/core/model/fields/ArtifactTypeAttributesFieldTest.java b/plugins/org.eclipse.osee.framework.core.model.test/src/org/eclipse/osee/framework/core/model/fields/ArtifactTypeAttributesFieldTest.java
new file mode 100644
index 00000000000..d16e587ce4c
--- /dev/null
+++ b/plugins/org.eclipse.osee.framework.core.model.test/src/org/eclipse/osee/framework/core/model/fields/ArtifactTypeAttributesFieldTest.java
@@ -0,0 +1,107 @@
+/*******************************************************************************
+ * 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.fields;
+
+import java.util.Arrays;
+import java.util.Collection;
+import java.util.Collections;
+import java.util.LinkedHashMap;
+import java.util.Map;
+import org.junit.Assert;
+import org.eclipse.osee.framework.core.data.IOseeBranch;
+import org.eclipse.osee.framework.core.exception.OseeCoreException;
+import org.eclipse.osee.framework.core.model.Branch;
+import org.eclipse.osee.framework.core.model.internal.fields.ArtifactTypeAttributesField;
+import org.eclipse.osee.framework.core.model.mocks.MockDataFactory;
+import org.eclipse.osee.framework.core.model.type.AttributeType;
+import org.eclipse.osee.framework.jdk.core.util.Compare;
+import org.junit.BeforeClass;
+import org.junit.Test;
+
+/**
+ * Test Case For {@link ArtifactTypeAttributesField}
+ *
+ * @author Roberto E. Escobar
+ */
+public class ArtifactTypeAttributesFieldTest {
+
+ private static AttributeType attr1;
+ private static AttributeType attr2;
+ private static AttributeType attr3;
+ private static AttributeType attr4;
+ private static Branch br1;
+ private static Branch br2;
+
+ @BeforeClass
+ public static void prepareTest() throws OseeCoreException {
+ attr1 = MockDataFactory.createAttributeType(1, null);
+ attr2 = MockDataFactory.createAttributeType(2, null);
+ attr3 = MockDataFactory.createAttributeType(3, null);
+ attr4 = MockDataFactory.createAttributeType(4, null);
+
+ br1 = MockDataFactory.createBranch(1);
+ br2 = MockDataFactory.createBranch(2);
+ }
+
+ @Test
+ public void testGetSet() throws OseeCoreException {
+ Map<IOseeBranch, Collection<AttributeType>> input = new LinkedHashMap<IOseeBranch, Collection<AttributeType>>();
+ ArtifactTypeAttributesField field = new ArtifactTypeAttributesField(input);
+
+ Assert.assertEquals(false, field.isDirty());
+
+ assertSetGet(field, map(br1, attr1, attr2, attr3), map(br1, attr1, attr2, attr3), true);
+ field.clearDirty();
+
+ // Add again in different order
+ assertSetGet(field, map(br1, attr2, attr3, attr1), map(br1, attr1, attr2, attr3), false);
+
+ // Remove from list
+ assertSetGet(field, map(br1, attr2), map(br1, attr2), true);
+ field.clearDirty();
+
+ // Add to list
+ assertSetGet(field, map(br1, attr2, attr4), map(br1, attr2, attr4), true);
+ field.clearDirty();
+
+ // Add to entry
+ Map<IOseeBranch, Collection<AttributeType>> values = map(br1, attr2, attr4);
+ map(values, br2, attr3, attr1);
+ assertSetGet(field, values, values, true);
+ field.clearDirty();
+
+ // Add to emptylist
+ assertSetGet(field, Collections.<IOseeBranch, Collection<AttributeType>> emptyMap(),
+ Collections.<IOseeBranch, Collection<AttributeType>> emptyMap(), true);
+ field.clearDirty();
+ }
+
+ private static Map<IOseeBranch, Collection<AttributeType>> map(IOseeBranch branch, AttributeType... attrs) {
+ Map<IOseeBranch, Collection<AttributeType>> map = new LinkedHashMap<IOseeBranch, Collection<AttributeType>>();
+ map.put(branch, Arrays.asList(attrs));
+ return map;
+ }
+
+ private static Map<IOseeBranch, Collection<AttributeType>> map(Map<IOseeBranch, Collection<AttributeType>> map, IOseeBranch branch, AttributeType... attrs) {
+ map.put(branch, Arrays.asList(attrs));
+ return map;
+ }
+
+ private static void assertSetGet(ArtifactTypeAttributesField field, Map<IOseeBranch, Collection<AttributeType>> setValues, Map<IOseeBranch, Collection<AttributeType>> expected, boolean expectedDirty) throws OseeCoreException {
+ field.set(setValues);
+ Assert.assertEquals(expectedDirty, field.isDirty());
+
+ Map<IOseeBranch, Collection<AttributeType>> actual = field.get();
+ Assert.assertEquals(expected.size(), actual.size());
+
+ Assert.assertFalse(Compare.isDifferent(actual, expected));
+ }
+}

Back to the top