blob: f18dbb69141a1e7b1977bfde048a565e57b4c8c2 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2012 CEA LIST.
*
* 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:
*
* CEA LIST - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.sysml.diagram.parametric.tests.creation.node;
import static org.eclipse.papyrus.sysml.diagram.parametric.tests.utils.EditorUtils.getDiagramView;
import static org.eclipse.papyrus.sysml.diagram.parametric.tests.utils.TestPrepareUtils.createGraphicalNode;
import static org.eclipse.papyrus.sysml.diagram.parametric.tests.utils.TestUtils.createNodeFromPalette;
import org.eclipse.gmf.runtime.diagram.core.util.ViewUtil;
import org.eclipse.gmf.runtime.notation.View;
import org.eclipse.papyrus.sysml.diagram.common.utils.SysMLGraphicalTypes;
import org.eclipse.papyrus.sysml.diagram.parametric.tests.AbstractTest4CB;
import org.eclipse.papyrus.sysml.service.types.element.SysMLElementTypes;
import org.junit.BeforeClass;
import org.junit.Test;
/**
* JUnit tests for element creation test (via palette tools) in diagram.
*/
public class TestNodeCreationOnConstraintProperty4CB extends AbstractTest4CB {
public static View constraintPropertyView;
@BeforeClass
public static void prepareContainerForTest() throws Exception {
try {
View blockView = ViewUtil.getChildBySemanticHint(getDiagramView(), SysMLGraphicalTypes.SHAPE_SYSML_BLOCK_AS_COMPOSITE_ID);
View blockStructureView = ViewUtil.getChildBySemanticHint(blockView, SysMLGraphicalTypes.COMPARTMENT_SYSML_STRUCTURE_ID);
if(blockStructureView == null) {
throw new Exception("Unable to prepare container for test.");
}
constraintPropertyView = createGraphicalNode(SysMLElementTypes.CONSTRAINT_PROPERTY, SysMLGraphicalTypes.SHAPE_SYSML_CONSTRAINTBLOCKPROPERTY_AS_COMPOSITE_ID, blockStructureView);
} catch (Exception e) {
throw new Exception("Unable to prepare container for test.", e);
}
}
@Test
public void testCreationConstraintProperty() throws Exception {
createNodeFromPalette("parametric.tool.constraintblockpropertycomposite", constraintPropertyView, false);
}
@Test
public void testCreationConstraintParameter() throws Exception {
createNodeFromPalette("parametric.tool.parameter", constraintPropertyView, true);
}
@Test
public void testCreationPart() throws Exception {
createNodeFromPalette("parametric.tool.blockpropertycomposite", constraintPropertyView, false);
}
@Test
public void testCreationReference() throws Exception {
createNodeFromPalette("parametric.tool.reference", constraintPropertyView, false);
}
@Test
public void testCreationValue() throws Exception {
createNodeFromPalette("parametric.tool.value", constraintPropertyView, false);
}
@Test
public void testCreationComment() throws Exception {
createNodeFromPalette("parametric.tool.comment", constraintPropertyView, false);
}
@Test
public void testCreationConstraint() throws Exception {
createNodeFromPalette("parametric.tool.constraint", constraintPropertyView, false);
}
}