Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4776bb9bb183b8d0b54359d48e835a2286b2762c (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
/*******************************************************************************
 * Copyright (c) 2014 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:
 *     Juan Cadavid <juan.cadavid@cea.fr> implementation
 ******************************************************************************/
package org.eclipse.papyrus.infra.services.controlmode.tests.uncontrol;

import java.io.IOException;

import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.emf.transaction.RunnableWithResult;
import org.eclipse.papyrus.infra.services.controlmode.tests.Messages;
import org.eclipse.papyrus.junit.utils.HandlerUtils;
import org.eclipse.papyrus.junit.utils.PapyrusProjectUtils;
import org.eclipse.papyrus.junit.utils.ProjectUtils;
import org.eclipse.swt.widgets.Display;
import org.junit.Assert;
import org.junit.Test;
import org.osgi.framework.Bundle;

public class UncontrolModelWithProfileTest extends AbstractUncontrolModelTest {

	private static final String PROJECT_NAME = "UncontrolModelWithProfileTestProject"; //$NON-NLS-1$

	private static final String SOURCE_PATH = "/model/UncontrolModeWithProfileTest/"; //$NON-NLS-1$

	private static final String MODEL_FILE_ROOT_NAME = "UncontrolModeWithProfileTestModel"; //$NON-NLS-1$

	private static final String SUBMODEL_FILE_ROOT_NAME = "submodel"; //$NON-NLS-1$

	private static final String PROFILE_FILE_NAME = "testProfile.profile"; //$NON-NLS-1$

	public void initTests(final Bundle bundle) throws CoreException, IOException {
		ProjectUtils.removeAllProjectFromTheWorkspace();
		IProject testProject = ProjectUtils.createProject(PROJECT_NAME);

		//Copy the profile
		PapyrusProjectUtils.copyPapyrusModel(testProject, bundle, SOURCE_PATH, PROFILE_FILE_NAME);

		//Copy the controlled model
		modelFile = PapyrusProjectUtils.copyPapyrusModel(testProject, bundle, SOURCE_PATH, MODEL_FILE_ROOT_NAME);

		//Copy the submodel
		subModelfile = PapyrusProjectUtils.copyPapyrusModel(testProject, bundle, SOURCE_PATH, SUBMODEL_FILE_ROOT_NAME);
		UncontrolModelWithProfileTest.bundle = bundle;
	}

	@Test
	public void uncontrolModelWithProfileTest() {
		RunnableWithResult<?> runnableWithResult = new RunnableWithResult.Impl<Object>() {

			@Override
			public void run() {
				Assert.assertTrue(Messages.UncontrolModelWithProfileTest_5, HandlerUtils.getActiveHandlerFor(COMMAND_ID).isEnabled());
				uncontrolAndSave(selectElementToUncontrol(), HandlerUtils.getCommand(COMMAND_ID));
			}

		};
		Display.getDefault().syncExec(runnableWithResult);
	}


}

Back to the top