blob: f1570b12906f878304278faa4927c77e0e147fa9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2020, 2021 Obeo.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.sirius.tests.unit.diagram.format.data;
import java.io.IOException;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.transaction.RecordingCommand;
import org.eclipse.gmf.runtime.diagram.ui.editparts.DiagramEditPart;
import org.eclipse.sirius.business.api.session.Session;
import org.eclipse.sirius.common.ui.tools.api.util.EclipseUIUtil;
import org.eclipse.sirius.diagram.DDiagram;
import org.eclipse.sirius.diagram.formatdata.tools.api.util.FormatHelper.FormatDifference;
import org.eclipse.sirius.diagram.formatdata.tools.api.util.configuration.Configuration;
import org.eclipse.sirius.diagram.ui.tools.api.format.MappingBasedSiriusFormatManagerFactory;
import org.eclipse.sirius.diagram.ui.tools.api.format.semantic.MappingBasedSiriusFormatDataManager;
import org.eclipse.sirius.tests.unit.diagram.format.data.manager.mappingbased.MappingBasedTestConfiguration;
import org.eclipse.sirius.viewpoint.DRepresentationDescriptor;
import org.eclipse.sirius.viewpoint.ViewpointFactory;
import org.junit.Before;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
/**
* Test class for {@link MappingBasedSiriusFormatDataManager}. Inspired from
* {@link SiriusFormatDataManagerForSemanticElementsApplyWithPredefinedDataTest}.
*
* @author adieumegard
*/
@RunWith(value = Parameterized.class)
public class MappingBasedSiriusFormatDataManagerCreateTargetDiagramDiffSessionTest extends MappingBasedSiriusFormatDataManagerCreateTargetDiagramTest {
public MappingBasedSiriusFormatDataManagerCreateTargetDiagramDiffSessionTest(Representation representationToCopyFormat) throws Exception {
super(representationToCopyFormat);
}
protected Session targetSession;
protected EObject targetSemanticModel;
protected EObject targetSemanticTargetModel;
/** Name of the file containing the session target mapped elements */
protected static final String SESSION_TARGET_MODEL_NAME = "My2.aird";
@Override
@Before
public void setUp() throws Exception {
genericSetUp(getSemanticTargetModelPaths(), getModelerPathAsList(), getSessionTargetModelPath());
targetSession = session;
targetSemanticModel = semanticModel;
targetSemanticTargetModel = getModelFromPath(getSemanticTargetModelPaths().get(0), targetSession);
super.setUp();
}
protected List<String> getSemanticTargetModelPaths() {
return Collections.singletonList(PLUGIN_PATH + getPlatformRelatedDataPath() + getSemanticTargetModelName());
}
protected String getSessionTargetModelPath() {
return PLUGIN_PATH + getPlatformRelatedDataPath() + SESSION_TARGET_MODEL_NAME;
}
/**
* Compute configuration for source to target EObjects mapping. Uses all the source model elements.
*
* @return
*/
protected MappingBasedTestConfiguration getFullTestConfiguration() {
Map<String, String> full_map = new HashMap<String, String>();
full_map.put("//p1", "//targetp1");
full_map.put("//p1/C1-1", "//targetp1/targetC1-1");
full_map.put("//p1/C1-1/aC1-2", "//targetp1/targetC1-1/targetaC1-2");
full_map.put("//p1/C1-1/aC1-2/@eGenericType", "//targetp1/targetC1-1/targetaC1-2/@eGenericType");
full_map.put("//p1/C1-1/aC1-1-1", "//targetp1/targetC1-1/targetaC1-1-1");
full_map.put("//p1/C1-1/aC1-1-1/@eGenericType", "//targetp1/targetC1-1/targetaC1-1-1/@eGenericType");
full_map.put("//p1/C1-2", "//targetp1/targetC1-2");
full_map.put("//p1/C1-3", "//targetp1/targetC1-3");
full_map.put("//p1/C1-3/m1", "//targetp1/targetC1-3/targetm1");
full_map.put("//p1/p1-1", "//targetp1/targetp1-1");
full_map.put("//p1/p1-1/C1-1-1", "//targetp1/targetp1-1/targetC1-1-1");
full_map.put("//p1/p1-1/C1-1-1/m1", "//targetp1/targetp1-1/targetC1-1-1/targetm1");
full_map.put("//p1/p1-1/C1-1-2", "//targetp1/targetp1-1/targetC1-1-2");
full_map.put("//p1/p1-2", "//targetp1/targetp1-2");
full_map.put("//p1/p1-2/C1-2-1", "//targetp1/targetp1-2/targetC1-2-1");
full_map.put("//p1/p1-3", "//targetp1/targetp1-3");
full_map.put("//p2", "//targetp2");
full_map.put("//p2/p2-1", "//targetp2/targetp2-1");
full_map.put("//p2/p2-1/new%20EClass%201", "//targetp2/targetp2-1/targetnew%20EClass%201");
full_map.put("//p2/p2-1/new%20EClass%201/m1", "//targetp2/targetp2-1/targetnew%20EClass%201/targetm1");
full_map.put("//p2/p2-2", "//targetp2/targetp2-2");
full_map.put("//p3", "//targetp3");
full_map.put("//p4", "//targetp4");
return new MappingBasedTestConfiguration(semanticModel, targetSemanticTargetModel, full_map, null, "full");
}
/**
* Compute configuration for source to target EObjects mapping. Uses a subset of the source model elements.
*
* @return
*/
@Override
protected MappingBasedTestConfiguration getSubsetTestConfiguration() {
Map<String, String> subset_map = new HashMap<String, String>();
subset_map.put("//p1", "//targetp1");
subset_map.put("//p1/C1-1", "//targetp1/targetC1-1");
subset_map.put("//p1/C1-1/aC1-1-1", "//targetp1/targetC1-1/targetaC1-1-1");
subset_map.put("//p1/C1-1/aC1-1-1/@eGenericType", "//targetp1/targetC1-1/targetaC1-1-1/@eGenericType");
subset_map.put("//p1/C1-2", "//targetp1/targetC1-2");
subset_map.put("//p1/p1-1", "//targetp1/targetp1-1");
subset_map.put("//p1/p1-1/C1-1-1", "//targetp1/targetp1-1/targetC1-1-1");
subset_map.put("//p1/p1-1/C1-1-1/m1", "//targetp1/targetp1-1/targetC1-1-1/targetm1");
subset_map.put("//p2", "//targetp2");
subset_map.put("//p2/p2-1", "//targetp2/targetp2-1");
subset_map.put("//p2/p2-1/new%20EClass%201", "//targetp2/targetp2-1/targetnew%20EClass%201");
subset_map.put("//p2/p2-2", "//targetp2/targetp2-2");
subset_map.put("//p4", "//targetp4");
return new MappingBasedTestConfiguration(semanticModel, targetSemanticTargetModel, subset_map, null, "subset");
}
protected void doTestOnNewDiagram(StringBuilder differences, MappingBasedTestConfiguration explicitMappingTestConfiguration, Configuration configuration, boolean includeNotes) {
List<DRepresentationDescriptor> allDDiagramDescriptors = getRepresentationDescriptors(representationToCopyFormat.name, session).stream().collect(Collectors.toList());
DRepresentationDescriptor dRepresentationDescriptorToFind = ViewpointFactory.eINSTANCE.createDRepresentationDescriptor();
dRepresentationDescriptorToFind.setName(representationToCopyFormat.diagrams.get(0).name);
Collections.sort(allDDiagramDescriptors, USING_NAME);
final int search = Collections.binarySearch(allDDiagramDescriptors, dRepresentationDescriptorToFind, USING_NAME);
assertTrue("Diagram " + dRepresentationDescriptorToFind.getName() + " is not found in representation", search > -1);
final DDiagram dDiagram = (DDiagram) allDDiagramDescriptors.get(search).getRepresentation();
Collection<DiagramEditPart> sourceDiagramEditParts = getDiagramEditPart(session, dDiagram);
if (!sourceDiagramEditParts.isEmpty()) {
DiagramEditPart sourceDiagramEditPart = sourceDiagramEditParts.stream().findFirst().get();
final MappingBasedSiriusFormatDataManager originalManager = new MappingBasedSiriusFormatDataManager(explicitMappingTestConfiguration.getObjectsMap());
originalManager.storeFormatData(sourceDiagramEditPart);
final MappingBasedSiriusFormatDataManager newManager = new MappingBasedSiriusFormatDataManager(explicitMappingTestConfiguration.getObjectsMap());
final String newDiagramName = dDiagram.getName() + " " + explicitMappingTestConfiguration.getName() + " New" + (includeNotes ? " notes" : "");
if (MB_GENERATE_IMAGES_TEST_DATA) {
exportDiagramToTempFolder(newDiagramName + "_from", dDiagram);
}
final RecordingCommand command = new RecordingCommand(targetSession.getTransactionalEditingDomain()) {
DDiagram newDiagram;
@Override
protected void doExecute() {
newDiagram = MappingBasedSiriusFormatManagerFactory.getInstance().applyFormatOnNewDiagram(session, dDiagram, explicitMappingTestConfiguration.getObjectsMap(),
targetSession, newDiagramName, explicitMappingTestConfiguration.getTargetRoot(), includeNotes);
if (MB_GENERATE_IMAGES_TEST_DATA) {
exportDiagramToTempFolder(newDiagramName + "_to", newDiagram);
}
}
@Override
public java.util.Collection<?> getResult() {
return Collections.singleton(newDiagram);
}
};
Collection<DiagramEditPart> targetDiagramEditParts = null;
try {
targetSession.getTransactionalEditingDomain().getCommandStack().execute(command);
// Let the post commit listeners make the draw2d changes
EclipseUIUtil.synchronizeWithUIThread();
// Store the format data
DDiagram newDiagram = (DDiagram) command.getResult().stream().findFirst().get();
targetDiagramEditParts = getDiagramEditPart(targetSession, newDiagram);
assertTrue(!targetDiagramEditParts.isEmpty());
DiagramEditPart targetDiagramEditPart = targetDiagramEditParts.stream().findFirst().get();
newManager.storeFormatData(targetDiagramEditPart);
// Undo the command to let raw diagram unchanged
targetDiagramEditPart.getEditingDomain().getCommandStack().undo();
} finally {
cleanAndDispose(sourceDiagramEditParts);
cleanAndDispose(targetDiagramEditParts);
}
final String diagramToCopyFormatName = representationToCopyFormat.diagrams.get(0).name;
final String partialPath = "from___" + encodeDiagramName(diagramToCopyFormatName) + "___to___" + encodeDiagramName(newDiagramName) + XMI_EXTENSION;
try {
// Enable this if you want to generate referenced files
if (MB_REGENERATE_TEST_DATA) {
final String path = getPlatformRelatedXmiDataPath() + RAW_FOLDER + partialPath;
saveDiagramFiltered(path, explicitMappingTestConfiguration, newManager);
}
String fullPath = getPlatformRelatedFullXmiDataPath() + RAW_FOLDER + partialPath;
String message = "between diagram ";
message += diagramToCopyFormatName + " and diagram " + newDiagramName;
FormatDifference<?> foundDifference = loadAndCompareFiltered(fullPath, newManager, configuration, explicitMappingTestConfiguration);
if (foundDifference != null) {
differences.append("\n. " + message + foundDifference);
}
} catch (IOException e) {
e.printStackTrace();
fail(e.getMessage());
} finally {
}
}
}
}