tmf.core: Introduce TmfTimestamp factory methods
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.ui.tests / src / org / eclipse / tracecompass / tmf / ui / tests / views / uml2sd / loader / TmfUml2SDSyncLoaderSignalTest.java
CommitLineData
73005152 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2011, 2014 Ericsson
64636df8 3 *
73005152
BH
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
64636df8 8 *
73005152
BH
9 * Contributors:
10 * Bernd Hufmann - Initial API and implementation
90ed5958 11 * Alexandre Montplaisir - Port to JUnit4
0fcf3b09 12 * Patrick Tasse - Support selection range
73005152 13 *******************************************************************************/
90ed5958 14
2bdf0193 15package org.eclipse.tracecompass.tmf.ui.tests.views.uml2sd.loader;
73005152 16
90ed5958
AM
17import static org.junit.Assert.assertEquals;
18import static org.junit.Assert.assertFalse;
19import static org.junit.Assert.assertTrue;
73005152 20
97c71024 21import org.eclipse.tracecompass.tmf.core.signal.TmfSelectionRangeUpdatedSignal;
b2c971ec 22import org.eclipse.tracecompass.tmf.core.signal.TmfWindowRangeUpdatedSignal;
2bdf0193
AM
23import org.eclipse.tracecompass.tmf.core.timestamp.TmfTimeRange;
24import org.eclipse.tracecompass.tmf.core.timestamp.TmfTimestamp;
25import org.eclipse.tracecompass.tmf.ui.views.uml2sd.core.GraphNode;
90ed5958
AM
26import org.junit.AfterClass;
27import org.junit.BeforeClass;
28import org.junit.Test;
73005152 29
64636df8
BH
30/**
31 * Test cases for signal handling.
32 *
33 * @author Bernd Hufmann
64636df8 34 */
90ed5958 35public class TmfUml2SDSyncLoaderSignalTest {
73005152 36
90ed5958
AM
37 private static Uml2SDTestFacility fFacility;
38 private static Uml2SDSignalValidator fTmfComponent;
4f5d9f9b 39
90ed5958
AM
40 private static TmfTimeRange range;
41 private static TmfTimestamp rangeWindow;
4f5d9f9b
BH
42
43 /**
90ed5958 44 * Initialization
4f5d9f9b 45 */
90ed5958
AM
46 @BeforeClass
47 public static void setUpClass() {
73005152 48 fFacility = Uml2SDTestFacility.getInstance();
8e47a700 49 fFacility.init();
73005152 50 fFacility.selectExperiment();
90ed5958
AM
51
52 range = new TmfTimeRange(new Uml2SDTestTimestamp(9789689220871L), new Uml2SDTestTimestamp(9789773881426L));
53 // Get range window for tests below
54 rangeWindow = (TmfTimestamp) range.getEndTime().getDelta(range.getStartTime());
6cfc180e 55 TmfTimestamp currentTime = new Uml2SDTestTimestamp(9789773782043L);
90ed5958 56
97c71024
AM
57 fFacility.getTrace().broadcast(new TmfWindowRangeUpdatedSignal(fFacility, range));
58 fFacility.getTrace().broadcast(new TmfSelectionRangeUpdatedSignal(fFacility, currentTime));
90ed5958
AM
59 fFacility.delay(IUml2SDTestConstants.BROADCAST_DELAY);
60
61 fTmfComponent = new Uml2SDSignalValidator();
73005152
BH
62 }
63
90ed5958
AM
64 /**
65 * Cleanup
66 */
67 @AfterClass
68 public static void tearDownClass() {
73005152 69 fFacility.disposeExperiment();
8e47a700 70 fFacility.dispose();
73005152 71 fFacility = null;
73005152 72 }
64636df8
BH
73
74 /**
90ed5958
AM
75 * Test Case: 001
76 * Description: Verify that time range signal is send with correct values when going to first page
77 * Verified Methods: broadcast()
78 * Expected result: Time range sync signal is sent with correct range and current time.
64636df8 79 */
90ed5958
AM
80 @Test
81 public void verifyFirstPageSignal() {
6cfc180e 82 TmfTimestamp currentTime = new Uml2SDTestTimestamp(9788641608418L);
73005152 83 range = new TmfTimeRange(currentTime, new Uml2SDTestTimestamp(currentTime.getValue() + rangeWindow.getValue()));
64636df8 84
73005152
BH
85 fTmfComponent.setSignalError(false);
86 fTmfComponent.setSignalReceived(false);
87 fTmfComponent.setCurrentTimeError(false);
88 fTmfComponent.setRangeError(false);
89 fTmfComponent.setSourceError(false);
90
91 // set expected values
92 fTmfComponent.setSource(fFacility.getLoader());
93 fTmfComponent.setCurrentTime(currentTime);
94 fTmfComponent.setCurrentRange(range);
95
96 fFacility.firstPage();
97 assertTrue("TmfRangeSynchSignal", fTmfComponent.isSignalReceived());
98 assertFalse("TmfRangeSynchSignal", fTmfComponent.isSignalError());
99 assertFalse("TmfRangeSynchSignal", fTmfComponent.isCurrentTimeError());
100 assertFalse("TmfRangeSynchSignal", fTmfComponent.isSourceError());
101 assertFalse("TmfRangeSynchSignal", fTmfComponent.isRangeError());
90ed5958 102 }
64636df8 103
90ed5958
AM
104 /**
105 * Test Case: 002
106 * Description: Verify that time sync signal is sent correctly after selection
107 * Verified Methods: loader.broadcast(), testSelectionChanged
108 * Expected result: Time sync signal is sent with correct current time.
109 */
110 @Test
111 public void verifySelectionSignal() {
73005152
BH
112 fTmfComponent.setSignalReceived(false);
113
114 int count = fFacility.getSdView().getFrame().syncMessageCount();
115 assertEquals("Test Preparation", IUml2SDTestConstants.MAX_MESSEAGES_PER_PAGE, count);
116 GraphNode node = fFacility.getSdView().getFrame().getSyncMessage(3);
117
118 // set expected values
119 fTmfComponent.setSource(fFacility.getLoader());
120 fTmfComponent.setCurrentTime(new Uml2SDTestTimestamp(9788642113228L));
121 fTmfComponent.setCurrentRange(null); // not used
122
123 fFacility.getSdView().getSDWidget().moveTo(node); // selects the given node
814969ed 124 // Wait for the selection to finish - needed due to new platform behavior in Juno
d5efe032 125 fFacility.delay(IUml2SDTestConstants.GUI_REFESH_DELAY);
73005152
BH
126 assertTrue("TmfTimeSynchSignal", fTmfComponent.isSignalReceived());
127 assertFalse("TmfTimeSynchSignal", fTmfComponent.isSignalError());
128 assertFalse("TmfTimeSynchSignal", fTmfComponent.isCurrentTimeError());
129 assertFalse("TmfTimeSynchSignal", fTmfComponent.isSourceError());
130
131 fTmfComponent.setSignalReceived(false);
64636df8 132
73005152
BH
133 fTmfComponent.dispose();
134 }
135}
This page took 0.101611 seconds and 5 git commands to generate.