pcap: Rename packages to org.eclipse.tracecompass.*
[deliverable/tracecompass.git] / org.eclipse.tracecompass.lttng2.control.ui.tests / src / org / eclipse / linuxtools / lttng2 / control / ui / tests / model / component / TraceControlTestFacility.java
CommitLineData
eb1bab5b 1/*******************************************************************************
94cce698 2 * Copyright (c) 2011, 2013 Ericsson
cfdb727a 3 *
eb1bab5b
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
cfdb727a 8 *
eb1bab5b
BH
9 * Contributors:
10 * Bernd Hufmann - Initial API and implementation
11 *******************************************************************************/
2ba3d0a1 12
8e8c0226 13package org.eclipse.linuxtools.lttng2.control.ui.tests.model.component;
eb1bab5b 14
d132bcc7
BH
15import org.eclipse.core.commands.ExecutionException;
16import org.eclipse.core.commands.NotEnabledException;
17import org.eclipse.core.commands.NotHandledException;
18import org.eclipse.core.commands.common.NotDefinedException;
eb1bab5b 19import org.eclipse.core.runtime.jobs.Job;
8e8c0226
AM
20import org.eclipse.linuxtools.internal.lttng2.control.ui.views.ControlView;
21import org.eclipse.linuxtools.internal.lttng2.control.ui.views.model.ITraceControlComponent;
22import org.eclipse.linuxtools.internal.lttng2.control.ui.views.model.impl.TraceSessionComponent;
eb1bab5b
BH
23import org.eclipse.swt.widgets.Display;
24import org.eclipse.ui.IViewPart;
25import org.eclipse.ui.PartInitException;
26import org.eclipse.ui.PlatformUI;
d132bcc7 27import org.eclipse.ui.handlers.IHandlerService;
eb1bab5b
BH
28
29/**
30 * Singleton class to facilitate the test cases. Creates UML2SD view and loader objects as well as provides
cfdb727a 31 * utility methods for interacting with the loader/view.
eb1bab5b 32 */
cfdb727a 33@SuppressWarnings("javadoc")
eb1bab5b
BH
34public class TraceControlTestFacility {
35
36 // ------------------------------------------------------------------------
37 // Constants
38 // ------------------------------------------------------------------------
22a0f8f8 39 public final static int WAIT_FOR_JOBS_DELAY = 50;
a26d90be 40 public final static int GUI_REFESH_DELAY = 500;
cfdb727a 41
4e0b52e0
AM
42 public final static String DIRECTORY = "testfiles";
43 public final static String COMMAND_CATEGORY_PREFIX = "org.eclipse.linuxtools.internal.lttng2.ui.commands.control.";
44 public final static String SCEN_INIT_TEST = "Initialize";
45 public final static String SCEN_SCENARIO_SESSION_HANDLING = "SessionHandling";
46 public final static String SCEN_SCENARIO_SESSION_HANDLING_WITH_PATH = "SessionHandlingWithPath";
cfdb727a 47
eb1bab5b
BH
48 // ------------------------------------------------------------------------
49 // Attributes
50 // ------------------------------------------------------------------------
51 private static TraceControlTestFacility fInstance = null;
52 private ControlView fControlView = null;
53 private boolean fIsInitialized = false;
cfdb727a 54
eb1bab5b
BH
55 // ------------------------------------------------------------------------
56 // Constructors
57 // ------------------------------------------------------------------------
58 private TraceControlTestFacility() {
59 }
60
61 // ------------------------------------------------------------------------
62 // Operations
63 // ------------------------------------------------------------------------
64 public static TraceControlTestFacility getInstance() {
65 if (fInstance == null) {
66 fInstance = new TraceControlTestFacility();
67 }
68 return fInstance;
69 }
70
71 /**
72 * Initial the test facility.
73 */
74 public void init() {
cfdb727a 75
eb1bab5b
BH
76 if (!fIsInitialized) {
77
78 IViewPart view;
79 try {
cfdb727a 80
b957fb8c
BH
81 view = PlatformUI.getWorkbench()
82 .getActiveWorkbenchWindow()
83 .getActivePage()
4e0b52e0 84 .findView("org.eclipse.ui.internal.introview");
cfdb727a 85
b957fb8c
BH
86 if (view != null) {
87 PlatformUI.getWorkbench()
88 .getActiveWorkbenchWindow()
cfdb727a 89 .getActivePage().hideView(view);
b957fb8c
BH
90 }
91
eb1bab5b
BH
92 view = PlatformUI.getWorkbench()
93 .getActiveWorkbenchWindow()
94 .getActivePage()
cfdb727a
AM
95 .showView(ControlView.ID);
96
eb1bab5b
BH
97 } catch (PartInitException e) {
98 throw new RuntimeException(e);
99 }
100
101 fControlView = (ControlView) view;
102
103 delay(3000);
104 fIsInitialized = true;
105 }
106 }
107
cfdb727a 108
a26d90be
BH
109 /**
110 * Disposes the facility (and GUI)
111 */
eb1bab5b
BH
112 public void dispose() {
113 if (fIsInitialized) {
114 waitForJobs();
115
116 PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().hideView(fControlView);
117 fIsInitialized = false;
118 }
119 }
a26d90be
BH
120
121 /**
122 * Creates a delay for given time.
123 * @param waitTimeMillis - time in milli seconds
124 */
eb1bab5b
BH
125 public void delay(long waitTimeMillis) {
126 Display display = Display.getCurrent();
127 if (display != null) {
128 long endTimeMillis = System.currentTimeMillis() + waitTimeMillis;
129 while(System.currentTimeMillis() < endTimeMillis) {
130 if (!display.readAndDispatch()) {
99c3a878
MAL
131 // We do not use Display.sleep because it might never wake up
132 // if there is no user interaction
133 try {
134 Thread.sleep(Math.min(waitTimeMillis, 10));
135 } catch (final InterruptedException e) {
136 // Ignored
b07022a9 137 }
eb1bab5b
BH
138 }
139 display.update();
140 }
141 } else {
142 try {
143 Thread.sleep(waitTimeMillis);
144 } catch (InterruptedException e) {
145 // Ignored
146 }
147 }
148 }
149
150 /**
151 * Waits for all Eclipse jobs to finish
152 */
153 public void waitForJobs() {
154 while (!Job.getJobManager().isIdle()) {
155 delay(WAIT_FOR_JOBS_DELAY);
156 }
157 }
158
eb1bab5b
BH
159 /**
160 * @return current control view
161 */
162 public ControlView getControlView() {
163 return fControlView;
164 }
d132bcc7 165
a26d90be
BH
166 /**
167 * Executes an Eclipse command with command ID after selecting passed component
168 * @param component - component to select in the tree
169 * @param commandId - command ID
170 * @throws ExecutionException
171 * @throws NotDefinedException
172 * @throws NotEnabledException
173 * @throws NotHandledException
174 */
175 public void executeCommand(ITraceControlComponent component, String commandId) throws ExecutionException, NotDefinedException, NotEnabledException, NotHandledException {
176 setSelection(component);
177 executeCommand(commandId);
178 }
cfdb727a 179
a26d90be
BH
180 /**
181 * Executes an Eclipse command with command ID after selecting passed components
182 * @param components - array of components to select in the tree
183 * @param commandId - command ID
184 * @throws ExecutionException
185 * @throws NotDefinedException
186 * @throws NotEnabledException
187 * @throws NotHandledException
188 */
189 public void executeCommand(ITraceControlComponent[] components, String commandId) throws ExecutionException, NotDefinedException, NotEnabledException, NotHandledException {
190 setSelection(components);
191 executeCommand(commandId);
192 }
193
194 /**
195 * Executes an Eclipse command with command ID
196 * @param commandId
197 * @throws ExecutionException
198 * @throws NotDefinedException
199 * @throws NotEnabledException
200 * @throws NotHandledException
201 */
d132bcc7 202 public void executeCommand(String commandId) throws ExecutionException, NotDefinedException, NotEnabledException, NotHandledException {
d132bcc7
BH
203 IHandlerService handlerService = (IHandlerService) fControlView.getSite().getService(IHandlerService.class);
204 handlerService.executeCommand(COMMAND_CATEGORY_PREFIX + commandId, null);
a26d90be
BH
205 waitForJobs();
206 }
207
208 /**
209 * Selects passed component
210 * @param component - component to select in the tree
211 * @param commandId - command ID
212 */
213 public void setSelection(ITraceControlComponent component) {
214 fControlView.setSelection(component);
b957fb8c
BH
215 // Selection is done in own job
216 waitForJobs();
d132bcc7
BH
217 }
218
cfdb727a 219
a26d90be
BH
220 /**
221 * Selects passed components
222 * @param components - array of component to select in the tree
223 * @param commandId - command ID
224 */
225 public void setSelection(ITraceControlComponent[] components) {
226 fControlView.setSelection(components);
227
b957fb8c
BH
228 // Selection is done in own job
229 waitForJobs();
a26d90be 230 }
cfdb727a 231
a26d90be
BH
232 /**
233 * Creates session on passed session group.
234 * @param group - session group
235 * @return - trace session group if it's successful else null
236 * @throws ExecutionException
237 * @throws NotDefinedException
238 * @throws NotEnabledException
239 * @throws NotHandledException
240 */
a26d90be
BH
241 public TraceSessionComponent createSession(ITraceControlComponent group) throws ExecutionException, NotDefinedException, NotEnabledException, NotHandledException {
242 executeCommand(group, "createSession");
cfdb727a 243
a26d90be
BH
244 ITraceControlComponent[] sessions = group.getChildren();
245 if ((sessions == null) || (sessions.length == 0)) {
246 return null;
247 }
248 return (TraceSessionComponent)sessions[0];
249 }
cfdb727a 250
a26d90be
BH
251 /**
252 * Destroys a given session.
253 * @param session - session to destroy
254 * @throws ExecutionException
255 * @throws NotDefinedException
256 * @throws NotEnabledException
257 * @throws NotHandledException
258 */
a26d90be
BH
259 public void destroySession(TraceSessionComponent session) throws ExecutionException, NotDefinedException, NotEnabledException, NotHandledException {
260 executeCommand(session, "destroySession");
261 }
cfdb727a 262
a26d90be
BH
263 /**
264 * Starts a given session
265 * @param session - session to start
266 * @throws ExecutionException
267 * @throws NotDefinedException
268 * @throws NotEnabledException
269 * @throws NotHandledException
270 */
a26d90be
BH
271 public void startSession(TraceSessionComponent session) throws ExecutionException, NotDefinedException, NotEnabledException, NotHandledException {
272 executeCommand(session, "start");
273 }
cfdb727a 274
a26d90be
BH
275 /**
276 * Stops a given session
277 * @param session - session to stop
278 * @throws ExecutionException
279 * @throws NotDefinedException
280 * @throws NotEnabledException
281 * @throws NotHandledException
282 */
a26d90be
BH
283 public void stopSession(TraceSessionComponent session) throws ExecutionException, NotDefinedException, NotEnabledException, NotHandledException {
284 executeCommand(session, "stop");
285 }
eb1bab5b 286}
This page took 0.118743 seconds and 5 git commands to generate.