Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3c2fdc08be26bb274a324f3618b68b87b792f5f2 (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) 2018 CEA LIST, EclipseSource 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:
 *   EclipseSource - Initial API and implementation
 *
 *****************************************************************************/

package org.eclipse.papyrus.uml.diagram.sequence.tests.bug;

import java.util.ArrayList;
import java.util.List;

import org.eclipse.gmf.runtime.emf.type.core.requests.SetRequest;
import org.eclipse.papyrus.infra.emf.utils.EMFHelper;
import org.eclipse.papyrus.infra.services.edit.service.ElementEditServiceUtils;
import org.eclipse.papyrus.infra.services.edit.service.IElementEditService;
import org.eclipse.papyrus.junit.utils.rules.ActiveDiagram;
import org.eclipse.papyrus.junit.utils.rules.PluginResource;
import org.eclipse.papyrus.uml.diagram.sequence.figures.DurationLinkFigure;
import org.eclipse.uml2.uml.DurationObservation;
import org.eclipse.uml2.uml.Element;
import org.eclipse.uml2.uml.UMLPackage.Literals;

/**
 * Test class to verify that DurationObservation links are properly displayed, and properly
 * react to changes in the diagram around them (Visual or semantic).
 */
@PluginResource({ "resource/bugs/bug536631-durationLinks.di", "resource/bugs/style.css" })
@ActiveDiagram("durationObservationsLinksTest")
public class TestDurationObservationDisplay extends AbstractOccurrenceLinkTest<DurationObservation> {

	public TestDurationObservationDisplay() {
		super(new String[] {
				"DurationObservation1",
				"DurationObservation2",
				"DurationObservation3",
				"DurationObservation4",
				"DurationObservation5",
				"DurationObservation6",
				"DurationObservation7"
		}, DurationObservation.class,
				DurationLinkFigure.class);
	}

	@Override
	protected void doUnrelatedChange(DurationObservation linkToChange) {
		DurationObservation duration2 = (DurationObservation) EMFHelper.getEObject(links[1]);

		List<Element> values = new ArrayList<>(linkToChange.getEvents());
		values.add(duration2.getEvents().get(1));

		IElementEditService provider = ElementEditServiceUtils.getCommandProvider(linkToChange);
		SetRequest request = new SetRequest(linkToChange, Literals.DURATION_OBSERVATION__EVENT, values);
		editor.execute(provider.getEditCommand(request));
	}

	@Override
	protected void doChangeTarget(DurationObservation linkToChange) {
		List<Element> values = new ArrayList<>(linkToChange.getEvents());
		values.remove(1);

		IElementEditService provider = ElementEditServiceUtils.getCommandProvider(linkToChange);
		SetRequest request = new SetRequest(linkToChange, Literals.DURATION_OBSERVATION__EVENT, values);
		editor.execute(provider.getEditCommand(request));
	}

}

Back to the top