Skip to main content
summaryrefslogtreecommitdiffstats
blob: 30f7018e363e4412aa16d26d42f1d320f95bc8a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*******************************************************************************
 * Copyright (c) 2010 Technical University of Denmark.
 * 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:
 *    Patrick Koenemann, DTU Informatics - initial API and implementation
 *******************************************************************************/
package org.eclipse.emf.compare.mpatch.test.junit;

import org.eclipse.emf.compare.mpatch.common.util.ExtensionManager;
import org.eclipse.emf.compare.mpatch.extension.IModelDescriptorCreator;
import org.eclipse.emf.compare.mpatch.extension.ISymbolicReferenceCreator;
import org.eclipse.emf.compare.mpatch.test.util.CommonTestOperations;
import org.eclipse.emf.compare.mpatch.test.util.TestConstants;
import org.junit.Test;


/**
 * Test of difference creation and application for UML models.
 * 
 * @author Patrick Koenemann (pk@imm.dtu.dk)
 *
 */
public class UmlTest {

	/**
	 * Testing the creation and application of mpatches on uml models.
	 */
	@Test
	public void testApplyDifferencesUml() {
		testApply(TestConstants.UML_URI1, TestConstants.UML_URI2);
	}

	/**
	 * Test of adding a UML association explicitly with ID-based symrefs.
	 * 
	 * FIXME: The problem is that the an element which was created by a model descriptor gets a newly created id and
	 * thus cannot be resolved by any existing symbolic reference. The solution is to keep track of all created elements
	 * for each model-descriptor and its symbolic reference, respectively, and use this information to resolve symrefs
	 * which point to such newly created elements.
	 * 
	 * Distinguish between cross-references within one model descriptor only (1) and those which point to another change (2).
	 * (1) is located in EMFModelDescriptorImpl, (2) in the implementation of DiffApplier.
	 */
	@Test
	public void testTestUmlAssocID() {
		CommonTestOperations.applyMPatchAndValidate(TestConstants.UML_ASSOC_URI1, TestConstants.UML_ASSOC_URI2,
				ExtensionManager.getAllSymbolicReferenceCreators().get("ID-based"),
				TestConstants.MODEL_DESCRIPTOR_CREATORS.iterator().next());
	}

	/**
	 * Test of adding a UML association explicitly with condition-based symrefs.
	 */
	@Test
	public void testTestUmlAssocCondition() {
		CommonTestOperations.applyMPatchAndValidate(TestConstants.UML_ASSOC_URI1, TestConstants.UML_ASSOC_URI2,
				ExtensionManager.getAllSymbolicReferenceCreators().get("Condition-based"),
				TestConstants.MODEL_DESCRIPTOR_CREATORS.iterator().next());
	}

	private void testApply(String unchangedUri, String changedUri) {
		for (ISymbolicReferenceCreator symrefCreator : TestConstants.SYM_REF_CREATORS) {
			for (IModelDescriptorCreator descriptorCreator : TestConstants.MODEL_DESCRIPTOR_CREATORS) {
				CommonTestOperations.applyMPatchAndValidate(unchangedUri, changedUri, symrefCreator, descriptorCreator);
			}
		}
	}

}

Back to the top