blob: fad751651d9236c69f2c280a6a6c6576461f9f71 [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.internalblock.provider.ElementTypes;
import org.eclipse.papyrus.sysml.diagram.parametric.tests.AbstractTest4B;
import org.eclipse.papyrus.uml.service.types.element.UMLElementTypes;
import org.junit.BeforeClass;
import org.junit.Test;
/**
* JUnit tests for element creation test (via palette tools) in diagram.
*/
public class TestNodeCreationOnComment4CB extends AbstractTest4B {
public static View commentView;
@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);
commentView = createGraphicalNode(UMLElementTypes.COMMENT, ElementTypes.COMMENT.getSemanticHint(), blockStructureView);
if(commentView == null) {
throw new Exception("Unable to prepare container for test.");
}
} catch (Exception e) {
throw new Exception("Unable to prepare container for test.", e);
}
}
@Test
public void testCreationConstraintProperty() throws Exception {
createNodeFromPalette("parametric.tool.constraintblockpropertycomposite", commentView, false);
}
@Test
public void testCreationConstraintParameter() throws Exception {
createNodeFromPalette("parametric.tool.parameter", commentView, false);
}
@Test
public void testCreationPart() throws Exception {
createNodeFromPalette("parametric.tool.blockpropertycomposite", commentView, false);
}
@Test
public void testCreationReference() throws Exception {
createNodeFromPalette("parametric.tool.reference", commentView, false);
}
@Test
public void testCreationValue() throws Exception {
createNodeFromPalette("parametric.tool.value", commentView, false);
}
@Test
public void testCreationComment() throws Exception {
createNodeFromPalette("parametric.tool.comment", commentView, false);
}
@Test
public void testCreationConstraint() throws Exception {
createNodeFromPalette("parametric.tool.constraint", commentView, false);
}
}