Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7e7f205b60ebd35d0367e83f200cfd887dc5700f (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*****************************************************************************
 * Copyright (c) 2014, 2016 CEA LIST, Christian W. Damus, and others.
 *
 * All rights reserved. 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:
 *  Camille Letavernier (CEA LIST) camille.letavernier@cea.fr - Initial API and implementation
 *  Christian W. Damus - bug 485220
 *
 *****************************************************************************/
package org.eclipse.papyrus.uml.diagram.clazz.test.legacy;

import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IProject;
import org.eclipse.emf.common.ui.URIEditorInput;
import org.eclipse.emf.ecore.util.EcoreUtil;
import org.eclipse.gmf.runtime.notation.Diagram;
import org.eclipse.papyrus.infra.core.sashwindows.di.service.IPageManager;
import org.eclipse.papyrus.infra.core.utils.ServiceUtils;
import org.eclipse.papyrus.infra.ui.editor.IMultiDiagramEditor;
import org.eclipse.papyrus.junit.framework.classification.tests.AbstractPapyrusTest;
import org.eclipse.papyrus.junit.utils.rules.HouseKeeper;
import org.eclipse.papyrus.uml.diagram.clazz.UmlClassDiagramForMultiEditor;
import org.eclipse.ui.IEditorInput;
import org.eclipse.ui.IEditorPart;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;

/**
 * Test class for opening Papyrus 0.10.x Package Diagrams in Papyrus >= 1.0.x
 *
 * @author Camille Letavernier
 *
 */
public class PackageDiagramLegacyTest extends AbstractPapyrusTest {

	@Rule
	public final HouseKeeper houseKeeper = new HouseKeeper();

	protected IMultiDiagramEditor editor;

	protected IPageManager pageManager;

	@Before
	public void initModel() throws Exception {
		IProject project = houseKeeper.createProject("uml2.4diagrams");
		IFile diFile = houseKeeper.createFile(project, "package24.di", "model/legacyPackage/package24.di");
		houseKeeper.createFile(project, "package24.uml", "model/legacyPackage/package24.uml");
		houseKeeper.createFile(project, "package24.notation", "model/legacyPackage/package24.notation");

		editor = houseKeeper.openPapyrusEditor(diFile);
		pageManager = ServiceUtils.getInstance().getService(IPageManager.class, editor.getServicesRegistry());
	}

	@Test
	public void testOpening24PackageModel() throws Exception {
		Assert.assertEquals(3, pageManager.allPages().size());

		Diagram diagram1 = getDiagram("Diagram1");
		Assert.assertEquals("PapyrusUMLClassDiagram", diagram1.getType());
		pageManager.openPage(diagram1);

		IEditorPart diagram1Editor = editor.getActiveEditor();
		Assert.assertTrue(diagram1Editor instanceof UmlClassDiagramForMultiEditor);
	}

	protected Diagram getDiagram(String name) {
		for (Object page : pageManager.allPages()) {
			if (page instanceof Diagram) {
				if (name.equals(((Diagram) page).getName())) {
					return (Diagram) page;
				}
			}
		}
		return null;
	}

	@Test
	public void testOpening24PackageDiagram() throws Exception {
		Assert.assertEquals(3, pageManager.allPages().size());

		Diagram closedDiagram = getDiagram("ClosedDiagram");
		Diagram invalidDiagram = getDiagram("InvalidDiagram");

		pageManager.closePage(invalidDiagram);

		pageManager.openPage(closedDiagram);

		// Assert.assertEquals("PapyrusUMLClassDiagram", closedDiagram.getType());

		pageManager.selectPage(closedDiagram); // Workaround for an unrelated bug: the page is not immediately selected after it has been opened

		IEditorPart closedDiagramEditor = editor.getActiveEditor();

		Assert.assertEquals(closedDiagramEditor.getClass(), UmlClassDiagramForMultiEditor.class);

		IEditorInput input = closedDiagramEditor.getEditorInput();
		Assert.assertTrue(input instanceof URIEditorInput);
		URIEditorInput uriInput = (URIEditorInput) input;

		Assert.assertTrue(uriInput.getURI().equals(EcoreUtil.getURI(closedDiagram)));
	}
}

Back to the top