blob: 9827811c139fc0960242943a590ebdc0472c4356 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2012, 2014 CEA LIST and others.
*
* 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
* Christian W. Damus (CEA) - bug 434993
*
*****************************************************************************/
package org.eclipse.papyrus.sysml.diagram.parametric.tests.creation.link.connector;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import org.eclipse.gmf.runtime.notation.View;
import org.eclipse.papyrus.sysml.diagram.parametric.tests.creation.link.AbstractLinkCreationFromElementTest4CB;
import org.eclipse.uml2.uml.Property;
import org.junit.BeforeClass;
import org.junit.Ignore;
/**
* JUnit tests for Connector link creation test (via palette tools).
*/
@Ignore // not executed by master extra HIPP
public class TestLinkCreationConnectorFromReference4CB extends AbstractLinkCreationFromElementTest4CB {
@BeforeClass
public static void initSource() throws Exception {
sourceView = referenceSourceView;
}
@BeforeClass
public static void initToolID() throws Exception {
toolID = "parametric.tool.connector";
}
@BeforeClass
public static void initExpectedResults() throws Exception {
// Initialize source creation results
isCreationAllowed.put(diagramContainerTargetView, false);
isCreationAllowed.put(constraintPropertyTargetView, false);
isCreationAllowed.put(constraintParameterTargetView, true);
isCreationAllowed.put(nestedConstraintPropertyTargetView, false);
isCreationAllowed.put(nestedConstraintParameterTargetView, true);
isCreationAllowed.put(partTargetView, false);
isCreationAllowed.put(nestedPartTargetView, false);
isCreationAllowed.put(subNestedPartContainer1_1_1TargetView, false);
isCreationAllowed.put(subNestedPartContainer1_2_1TargetView, false);
isCreationAllowed.put(subNestedPartContainer1_1_2TargetView, false);
isCreationAllowed.put(referenceTargetView, false);
isCreationAllowed.put(nestedReferenceTargetView, false);
isCreationAllowed.put(valueTargetView, false);
isCreationAllowed.put(nestedValueTargetView, false);
isCreationAllowed.put(commentTargetView, false);
isCreationAllowed.put(commentCNTargetView, false);
isCreationAllowed.put(constraintTargetView, false);
isCreationAllowed.put(constraintCNTargetView, false);
// Initialize nested property path for tests
List<Property> emptyPath = Collections.emptyList();
for(View view : isCreationAllowed.keySet()) {
expectedSourceNestedPath.put(view, emptyPath);
expectedTargetNestedPath.put(view, emptyPath);
}
List<Property> nestedPath = Arrays.asList(new Property[]{ (Property)constraintPropertyTargetView.getElement() });
expectedTargetNestedPath.put(constraintParameterTargetView, nestedPath);
nestedPath = Arrays.asList(new Property[]{ (Property)partContainer2.getElement(), (Property)nestedConstraintPropertyTargetView.getElement()});
expectedTargetNestedPath.put(nestedConstraintParameterTargetView, nestedPath);
}
}