tmf: Fix PatternScatterChartViewTest intermittent failure
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.ui.swtbot.tests / shared / org / eclipse / tracecompass / tmf / ui / swtbot / tests / shared / SWTBotUtils.java
1 /*******************************************************************************
2 * Copyright (c) 2014, 2015 Ericsson
3 *
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
8 *
9 * Contributors:
10 * Matthew Khouzam - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.tracecompass.tmf.ui.swtbot.tests.shared;
14
15 import static org.junit.Assert.assertNotNull;
16 import static org.junit.Assert.assertTrue;
17 import static org.junit.Assert.fail;
18
19 import java.util.Arrays;
20 import java.util.List;
21 import java.util.TimeZone;
22 import java.util.concurrent.atomic.AtomicBoolean;
23
24 import org.eclipse.core.resources.IFolder;
25 import org.eclipse.core.resources.IProject;
26 import org.eclipse.core.resources.IResource;
27 import org.eclipse.core.resources.IResourceVisitor;
28 import org.eclipse.core.resources.ResourcesPlugin;
29 import org.eclipse.core.runtime.CoreException;
30 import org.eclipse.core.runtime.IPath;
31 import org.eclipse.core.runtime.NullProgressMonitor;
32 import org.eclipse.core.runtime.jobs.Job;
33 import org.eclipse.jdt.annotation.NonNull;
34 import org.eclipse.jface.bindings.keys.IKeyLookup;
35 import org.eclipse.jface.bindings.keys.KeyStroke;
36 import org.eclipse.jface.bindings.keys.ParseException;
37 import org.eclipse.swt.events.ControlAdapter;
38 import org.eclipse.swt.events.ControlEvent;
39 import org.eclipse.swt.graphics.Point;
40 import org.eclipse.swt.graphics.Rectangle;
41 import org.eclipse.swt.widgets.Display;
42 import org.eclipse.swt.widgets.Shell;
43 import org.eclipse.swt.widgets.Table;
44 import org.eclipse.swt.widgets.TableItem;
45 import org.eclipse.swtbot.eclipse.finder.SWTWorkbenchBot;
46 import org.eclipse.swtbot.eclipse.finder.matchers.WidgetMatcherFactory;
47 import org.eclipse.swtbot.eclipse.finder.widgets.SWTBotEditor;
48 import org.eclipse.swtbot.eclipse.finder.widgets.SWTBotView;
49 import org.eclipse.swtbot.swt.finder.SWTBot;
50 import org.eclipse.swtbot.swt.finder.finders.UIThreadRunnable;
51 import org.eclipse.swtbot.swt.finder.keyboard.Keyboard;
52 import org.eclipse.swtbot.swt.finder.keyboard.Keystrokes;
53 import org.eclipse.swtbot.swt.finder.results.Result;
54 import org.eclipse.swtbot.swt.finder.results.VoidResult;
55 import org.eclipse.swtbot.swt.finder.utils.SWTUtils;
56 import org.eclipse.swtbot.swt.finder.waits.Conditions;
57 import org.eclipse.swtbot.swt.finder.waits.DefaultCondition;
58 import org.eclipse.swtbot.swt.finder.widgets.SWTBotButton;
59 import org.eclipse.swtbot.swt.finder.widgets.SWTBotCheckBox;
60 import org.eclipse.swtbot.swt.finder.widgets.SWTBotMenu;
61 import org.eclipse.swtbot.swt.finder.widgets.SWTBotShell;
62 import org.eclipse.swtbot.swt.finder.widgets.SWTBotTable;
63 import org.eclipse.swtbot.swt.finder.widgets.SWTBotTree;
64 import org.eclipse.swtbot.swt.finder.widgets.SWTBotTreeItem;
65 import org.eclipse.swtbot.swt.finder.widgets.TimeoutException;
66 import org.eclipse.tracecompass.internal.tmf.ui.project.operations.NewExperimentOperation;
67 import org.eclipse.tracecompass.tmf.ui.editors.TmfEventsEditor;
68 import org.eclipse.tracecompass.tmf.ui.project.model.TmfExperimentElement;
69 import org.eclipse.tracecompass.tmf.ui.project.model.TmfExperimentFolder;
70 import org.eclipse.tracecompass.tmf.ui.project.model.TmfOpenTraceHelper;
71 import org.eclipse.tracecompass.tmf.ui.project.model.TmfProjectElement;
72 import org.eclipse.tracecompass.tmf.ui.project.model.TmfProjectRegistry;
73 import org.eclipse.tracecompass.tmf.ui.project.model.TmfTraceElement;
74 import org.eclipse.tracecompass.tmf.ui.project.model.TmfTraceFolder;
75 import org.eclipse.tracecompass.tmf.ui.project.model.TmfTracesFolder;
76 import org.eclipse.tracecompass.tmf.ui.swtbot.tests.shared.ConditionHelpers.ProjectElementHasChild;
77 import org.eclipse.tracecompass.tmf.ui.views.TracingPerspectiveFactory;
78 import org.eclipse.ui.IEditorPart;
79 import org.eclipse.ui.IEditorReference;
80 import org.eclipse.ui.IPageLayout;
81 import org.eclipse.ui.PartInitException;
82 import org.eclipse.ui.PlatformUI;
83 import org.eclipse.ui.WorkbenchException;
84 import org.hamcrest.Matcher;
85
86 /**
87 * SWTBot Helper functions
88 *
89 * @author Matthew Khouzam
90 */
91 @SuppressWarnings("restriction")
92 public final class SWTBotUtils {
93
94 private static final long MAX_JOBS_WAIT_TIME = 300000;
95 private static final String WINDOW_MENU = "Window";
96 private static final String PREFERENCES_MENU_ITEM = "Preferences";
97 private static boolean fPrintedEnvironment = false;
98
99 private SWTBotUtils() {
100 }
101
102 private static final String TRACING_PERSPECTIVE_ID = TracingPerspectiveFactory.ID;
103
104 /**
105 * Waits for all Eclipse jobs to finish. Times out after
106 * SWTBotUtils#MAX_JOBS_WAIT_TIME by default.
107 *
108 * @throws TimeoutException
109 * once the waiting time passes the default maximum value
110 */
111 public static void waitForJobs() {
112 waitForJobs(MAX_JOBS_WAIT_TIME);
113 }
114
115 /**
116 * Waits for all Eclipse jobs to finish
117 *
118 * @param maxWait
119 * the maximum time to wait, in milliseconds. Once the waiting
120 * time passes the maximum value, a TimeoutException is thrown
121 * @throws TimeoutException
122 * once the waiting time passes the maximum value
123 */
124 public static void waitForJobs(long maxWait) {
125 long waitStart = System.currentTimeMillis();
126 while (!Job.getJobManager().isIdle()) {
127 if (System.currentTimeMillis() - waitStart > maxWait) {
128 printJobs();
129 throw new TimeoutException("Timed out waiting for jobs to finish.");
130 }
131
132 delay(100);
133 }
134 }
135
136 private static void printJobs() {
137 Job[] jobs = Job.getJobManager().find(null);
138 for (Job job : jobs) {
139 System.err.println(job.toString() + " state: " + jobStateToString(job.getState()));
140 Thread thread = job.getThread();
141 if (thread != null) {
142 for (StackTraceElement stractTraceElement : thread.getStackTrace()) {
143 System.err.println(" " + stractTraceElement);
144 }
145 }
146 System.err.println();
147 }
148 }
149
150 private static String jobStateToString(int jobState) {
151 switch (jobState) {
152 case Job.RUNNING:
153 return "RUNNING";
154 case Job.WAITING:
155 return "WAITING";
156 case Job.SLEEPING:
157 return "SLEEPING";
158 case Job.NONE:
159 return "NONE";
160 default:
161 return "UNKNOWN";
162 }
163 }
164
165 /**
166 * Sleeps current thread for a given time.
167 *
168 * @param waitTimeMillis
169 * time in milliseconds to wait
170 */
171 public static void delay(final long waitTimeMillis) {
172 try {
173 Thread.sleep(waitTimeMillis);
174 } catch (final InterruptedException e) {
175 // Ignored
176 }
177 }
178
179 /**
180 * Create a tracing project
181 *
182 * @param projectName
183 * the name of the tracing project
184 */
185 public static void createProject(final String projectName) {
186 /*
187 * Make a new test
188 */
189 UIThreadRunnable.syncExec(new VoidResult() {
190 @Override
191 public void run() {
192 IProject project = TmfProjectRegistry.createProject(projectName, null, new NullProgressMonitor());
193 assertNotNull(project);
194 }
195 });
196
197 SWTBotUtils.waitForJobs();
198 }
199
200 /**
201 * Deletes a project
202 *
203 * @param projectName
204 * the name of the tracing project
205 * @param deleteResources
206 * whether or not to deleted resources under the project
207 * @param bot
208 * the workbench bot
209 */
210 public static void deleteProject(final String projectName, boolean deleteResources, SWTWorkbenchBot bot) {
211 // Wait for any analysis to complete because it might create
212 // supplementary files
213 SWTBotUtils.waitForJobs();
214 try {
215 ResourcesPlugin.getWorkspace().getRoot().getProject(projectName).refreshLocal(IResource.DEPTH_INFINITE, null);
216 } catch (CoreException e) {
217 }
218
219 SWTBotUtils.waitForJobs();
220
221 final SWTBotView projectViewBot = bot.viewById(IPageLayout.ID_PROJECT_EXPLORER);
222 projectViewBot.setFocus();
223
224 SWTBotTree treeBot = projectViewBot.bot().tree();
225 SWTBotTreeItem treeItem = treeBot.getTreeItem(projectName);
226 SWTBotMenu contextMenu = treeItem.contextMenu("Delete");
227 contextMenu.click();
228
229 if (deleteResources) {
230 bot.shell("Delete Resources").setFocus();
231 final SWTBotCheckBox checkBox = bot.checkBox();
232 bot.waitUntil(Conditions.widgetIsEnabled(checkBox));
233 checkBox.click();
234 }
235
236 final SWTBotButton okButton = bot.button("OK");
237 bot.waitUntil(Conditions.widgetIsEnabled(okButton));
238 okButton.click();
239
240 SWTBotUtils.waitForJobs();
241 }
242
243 /**
244 * Deletes a project and its resources
245 *
246 * @param projectName
247 * the name of the tracing project
248 * @param bot
249 * the workbench bot
250 */
251 public static void deleteProject(String projectName, SWTWorkbenchBot bot) {
252 deleteProject(projectName, true, bot);
253 }
254
255 /**
256 * Creates an experiment
257 *
258 * @param bot
259 * a given workbench bot
260 * @param projectName
261 * the name of the project, creates the project if needed
262 * @param expName
263 * the experiment name
264 */
265 public static void createExperiment(SWTWorkbenchBot bot, String projectName, final @NonNull String expName) {
266 IProject project = ResourcesPlugin.getWorkspace().getRoot().getProject(projectName);
267 TmfProjectElement tmfProject = TmfProjectRegistry.getProject(project, true);
268 TmfExperimentFolder expFolder = tmfProject.getExperimentsFolder();
269 assertNotNull(expFolder);
270 NewExperimentOperation operation = new NewExperimentOperation(expFolder, expName);
271 operation.run(new NullProgressMonitor());
272
273 bot.waitUntil(new DefaultCondition() {
274 @Override
275 public boolean test() throws Exception {
276 TmfExperimentElement experiment = expFolder.getExperiment(expName);
277 return experiment != null;
278 }
279
280 @Override
281 public String getFailureMessage() {
282 return "Experiment (" + expName + ") couldn't be created";
283 }
284 });
285 }
286
287
288 /**
289 * Focus on the main window
290 *
291 * @param shellBots
292 * swtbotshells for all the shells
293 */
294 public static void focusMainWindow(SWTBotShell[] shellBots) {
295 for (SWTBotShell shellBot : shellBots) {
296 if (shellBot.getText().toLowerCase().contains("eclipse")) {
297 shellBot.activate();
298 }
299 }
300 }
301
302 /**
303 * Close a view with a title
304 *
305 * @param title
306 * the title, like "welcome"
307 * @param bot
308 * the workbench bot
309 */
310 public static void closeView(String title, SWTWorkbenchBot bot) {
311 final List<SWTBotView> openViews = bot.views();
312 for (SWTBotView view : openViews) {
313 if (view.getTitle().equalsIgnoreCase(title)) {
314 view.close();
315 bot.waitUntil(ConditionHelpers.ViewIsClosed(view));
316 }
317 }
318 }
319
320 /**
321 * Close a view with an id
322 *
323 * @param viewId
324 * the view id, like "org.eclipse.linuxtools.tmf.ui.views.histogram"
325 * @param bot
326 * the workbench bot
327 */
328 public static void closeViewById(String viewId, SWTWorkbenchBot bot) {
329 final SWTBotView view = bot.viewById(viewId);
330 view.close();
331 bot.waitUntil(ConditionHelpers.ViewIsClosed(view));
332 }
333
334 /**
335 * Switch to the tracing perspective
336 */
337 public static void switchToTracingPerspective() {
338 switchToPerspective(TRACING_PERSPECTIVE_ID);
339 }
340
341 /**
342 * Switch to a given perspective
343 *
344 * @param id
345 * the perspective id (like
346 * "org.eclipse.linuxtools.tmf.ui.perspective"
347 */
348 public static void switchToPerspective(final String id) {
349 UIThreadRunnable.syncExec(new VoidResult() {
350 @Override
351 public void run() {
352 try {
353 PlatformUI.getWorkbench().showPerspective(id, PlatformUI.getWorkbench().getActiveWorkbenchWindow());
354 } catch (WorkbenchException e) {
355 fail(e.getMessage());
356 }
357 }
358 });
359 }
360
361 /**
362 * Initialize the environment for SWTBot
363 */
364 public static void initialize() {
365 failIfUIThread();
366
367 SWTWorkbenchBot bot = new SWTWorkbenchBot();
368 UIThreadRunnable.syncExec(() -> {
369 printEnvironment();
370
371 // There seems to be problems on some system where the main shell is
372 // not in focus initially. This was seen using Xvfb and Xephyr on some occasions.
373 focusMainWindow(bot.shells());
374
375 Shell shell = bot.activeShell().widget;
376
377 // Only adjust shell if it appears to be the top-most
378 if (shell.getParent() == null) {
379 makeShellFullyVisible(shell);
380 }
381 });
382 }
383
384 private static void printEnvironment() {
385 if (fPrintedEnvironment) {
386 return;
387 }
388
389 // Print some information about the environment that could affect test outcome
390 Rectangle bounds = Display.getDefault().getBounds();
391 System.out.println("Display size: " + bounds.width + "x" + bounds.height);
392
393 String osVersion = System.getProperty("os.version");
394 if (osVersion != null) {
395 System.out.println("OS version=" + osVersion);
396 }
397 String gtkVersion = System.getProperty("org.eclipse.swt.internal.gtk.version");
398 if (gtkVersion != null) {
399 System.out.println("GTK version=" + gtkVersion);
400 String overlayScrollbar = System.getenv("LIBOVERLAY_SCROLLBAR");
401 if (overlayScrollbar != null) {
402 System.out.println("LIBOVERLAY_SCROLLBAR=" + overlayScrollbar);
403 }
404 String ubuntuMenuProxy = System.getenv("UBUNTU_MENUPROXY");
405 if (ubuntuMenuProxy != null) {
406 System.out.println("UBUNTU_MENUPROXY=" + ubuntuMenuProxy);
407 }
408 }
409
410 System.out.println("Time zone: " + TimeZone.getDefault().getDisplayName());
411
412 fPrintedEnvironment = true;
413 }
414
415 /**
416 * If the test is running in the UI thread then fail
417 */
418 private static void failIfUIThread() {
419 if (Display.getCurrent() != null && Display.getCurrent().getThread() == Thread.currentThread()) {
420 fail("SWTBot test needs to run in a non-UI thread. Make sure that \"Run in UI thread\" is unchecked in your launch configuration or"
421 + " that useUIThread is set to false in the pom.xml");
422 }
423 }
424
425 /**
426 * Try to make the shell fully visible in the display. If the shell cannot
427 * fit the display, it will be positioned so that top-left corner is at
428 * <code>(0, 0)</code> in display-relative coordinates.
429 *
430 * @param shell
431 * the shell to make fully visible
432 */
433 private static void makeShellFullyVisible(Shell shell) {
434 Rectangle displayBounds = shell.getDisplay().getBounds();
435 Point absCoord = shell.toDisplay(0, 0);
436 Point shellSize = shell.getSize();
437
438 Point newLocation = new Point(absCoord.x, absCoord.y);
439 newLocation.x = Math.max(0, Math.min(absCoord.x, displayBounds.width - shellSize.x));
440 newLocation.y = Math.max(0, Math.min(absCoord.y, displayBounds.height - shellSize.y));
441 if (!newLocation.equals(absCoord)) {
442 shell.setLocation(newLocation);
443 }
444 }
445
446 /**
447 * Open a trace, this does not perform any validation though
448 *
449 * @param projectName
450 * The project name
451 * @param tracePath
452 * the path of the trace file (absolute or relative)
453 * @param traceType
454 * the trace type id (eg: org.eclipse.linuxtools.btf.trace)
455 */
456 public static void openTrace(final String projectName, final String tracePath, final String traceType) {
457 openTrace(projectName, tracePath, traceType, true);
458 }
459
460 /**
461 * Open a trace, this does not perform any validation though
462 *
463 * @param projectName
464 * The project name
465 * @param tracePath
466 * the path of the trace file (absolute or relative)
467 * @param traceType
468 * the trace type id (eg: org.eclipse.linuxtools.btf.trace)
469 * @param delay
470 * delay and wait for jobs
471 */
472 public static void openTrace(final String projectName, final String tracePath, final String traceType, boolean delay) {
473 final Exception exception[] = new Exception[1];
474 exception[0] = null;
475 UIThreadRunnable.syncExec(new VoidResult() {
476 @Override
477 public void run() {
478 try {
479 IProject project = ResourcesPlugin.getWorkspace().getRoot().getProject(projectName);
480 TmfTraceFolder destinationFolder = TmfProjectRegistry.getProject(project, true).getTracesFolder();
481 TmfOpenTraceHelper.openTraceFromPath(destinationFolder, tracePath, PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(), traceType);
482 } catch (CoreException e) {
483 exception[0] = e;
484 }
485 }
486 });
487 if (exception[0] != null) {
488 fail(exception[0].getMessage());
489 }
490
491 if (delay) {
492 delay(1000);
493 waitForJobs();
494 }
495 }
496
497 /**
498 * Finds an editor and sets focus to the editor
499 *
500 * @param bot
501 * the workbench bot
502 * @param editorName
503 * the editor name
504 * @return the corresponding SWTBotEditor
505 */
506 public static SWTBotEditor activateEditor(SWTWorkbenchBot bot, String editorName) {
507 Matcher<IEditorReference> matcher = WidgetMatcherFactory.withPartName(editorName);
508 final SWTBotEditor editorBot = bot.editor(matcher);
509 IEditorPart iep = editorBot.getReference().getEditor(true);
510 final TmfEventsEditor tmfEd = (TmfEventsEditor) iep;
511 editorBot.show();
512 UIThreadRunnable.syncExec(new VoidResult() {
513 @Override
514 public void run() {
515 tmfEd.setFocus();
516 }
517 });
518
519 SWTBotUtils.waitForJobs();
520 SWTBotUtils.delay(1000);
521 assertNotNull(tmfEd);
522 return editorBot;
523 }
524
525 /**
526 * Opens a trace in an editor and get the TmfEventsEditor
527 *
528 * @param bot
529 * the workbench bot
530 * @param projectName
531 * the name of the project that contains the trace
532 * @param elementPath
533 * the trace element path (relative to Traces folder)
534 * @return TmfEventsEditor the opened editor
535 */
536 public static TmfEventsEditor openEditor(SWTWorkbenchBot bot, String projectName, IPath elementPath) {
537 final SWTBotView projectExplorerView = bot.viewById(IPageLayout.ID_PROJECT_EXPLORER);
538 projectExplorerView.setFocus();
539 SWTBot projectExplorerBot = projectExplorerView.bot();
540
541 final SWTBotTree tree = projectExplorerBot.tree();
542 projectExplorerBot.waitUntil(ConditionHelpers.IsTreeNodeAvailable(projectName, tree));
543 final SWTBotTreeItem treeItem = tree.getTreeItem(projectName);
544 treeItem.expand();
545
546 SWTBotTreeItem tracesNode = getTraceProjectItem(projectExplorerBot, treeItem, TmfTracesFolder.TRACES_FOLDER_NAME);
547 tracesNode.expand();
548
549 SWTBotTreeItem currentItem = tracesNode;
550 for (String segment : elementPath.segments()) {
551 currentItem = getTraceProjectItem(projectExplorerBot, currentItem, segment);
552 currentItem.select();
553 currentItem.doubleClick();
554 }
555
556 SWTBotEditor editor = bot.editorByTitle(elementPath.toString());
557 IEditorPart editorPart = editor.getReference().getEditor(false);
558 assertTrue(editorPart instanceof TmfEventsEditor);
559 return (TmfEventsEditor) editorPart;
560 }
561
562 /**
563 * Returns the child tree item of the specified item with the given name.
564 * The project element label may have a count suffix in the format ' [n]'.
565 *
566 * @param bot
567 * a given workbench bot
568 * @param parentItem
569 * the parent tree item
570 * @param name
571 * the desired child element name (without suffix)
572 * @return the a {@link SWTBotTreeItem} with the specified name
573 */
574 public static SWTBotTreeItem getTraceProjectItem(SWTBot bot, final SWTBotTreeItem parentItem, final String name) {
575 ProjectElementHasChild condition = new ProjectElementHasChild(parentItem, name);
576 bot.waitUntil(condition);
577 return condition.getItem();
578 }
579
580 /**
581 * Select the traces folder
582 *
583 * @param bot
584 * a given workbench bot
585 * @param projectName
586 * the name of the project (it needs to exist or else it would
587 * time out)
588 * @return a {@link SWTBotTreeItem} of the "Traces" folder
589 */
590 public static SWTBotTreeItem selectTracesFolder(SWTWorkbenchBot bot, String projectName) {
591 SWTBotTreeItem projectTreeItem = selectProject(bot, projectName);
592 projectTreeItem.select();
593 SWTBotTreeItem tracesFolderItem = getTraceProjectItem(bot, projectTreeItem, TmfTracesFolder.TRACES_FOLDER_NAME);
594 tracesFolderItem.select();
595 return tracesFolderItem;
596 }
597
598 /**
599 * Clear the traces folder
600 *
601 * @param bot
602 * a given workbench bot
603 * @param projectName
604 * the name of the project (needs to exist)
605 */
606 public static void clearTracesFolder(SWTWorkbenchBot bot, String projectName) {
607 IProject project = ResourcesPlugin.getWorkspace().getRoot().getProject(projectName);
608 TmfProjectElement tmfProject = TmfProjectRegistry.getProject(project, false);
609 TmfTraceFolder tracesFolder = tmfProject.getTracesFolder();
610 try {
611 for (TmfTraceElement traceElement : tracesFolder.getTraces()) {
612 traceElement.delete(null);
613 }
614
615 final IFolder resource = tracesFolder.getResource();
616 resource.accept(new IResourceVisitor() {
617 @Override
618 public boolean visit(IResource visitedResource) throws CoreException {
619 if (visitedResource != resource) {
620 visitedResource.delete(true, null);
621 }
622 return true;
623 }
624 }, IResource.DEPTH_ONE, 0);
625 } catch (CoreException e) {
626 fail(e.getMessage());
627 }
628
629 bot.waitUntil(new DefaultCondition() {
630 private int fTraceNb = 0;
631
632 @Override
633 public boolean test() throws Exception {
634 List<TmfTraceElement> traces = tracesFolder.getTraces();
635 fTraceNb = traces.size();
636 return fTraceNb == 0;
637 }
638
639 @Override
640 public String getFailureMessage() {
641 return "Traces Folder not empty (" + fTraceNb + ")";
642 }
643 });
644 }
645
646 /**
647 * Clear the experiment folder
648 *
649 * @param bot
650 * a given workbench bot
651 * @param projectName
652 * the name of the project (needs to exist)
653 */
654 public static void clearExperimentFolder(SWTWorkbenchBot bot, String projectName) {
655 IProject project = ResourcesPlugin.getWorkspace().getRoot().getProject(projectName);
656 TmfProjectElement tmfProject = TmfProjectRegistry.getProject(project, false);
657 TmfExperimentFolder expFolder = tmfProject.getExperimentsFolder();
658 expFolder.getExperiments().forEach(experiment -> {
659 IResource resource = experiment.getResource();
660 try {
661 // Close the experiment if open
662 experiment.closeEditors();
663
664 IPath path = resource.getLocation();
665 if (path != null) {
666 // Delete supplementary files
667 experiment.deleteSupplementaryFolder();
668 }
669 // Finally, delete the experiment
670 resource.delete(true, null);
671 } catch (CoreException e) {
672 fail(e.getMessage());
673 }
674 });
675
676 bot.waitUntil(new DefaultCondition() {
677 private int fExperimentNb = 0;
678
679 @Override
680 public boolean test() throws Exception {
681 List<TmfExperimentElement> experiments = expFolder.getExperiments();
682 fExperimentNb = experiments.size();
683 return fExperimentNb == 0;
684 }
685
686 @Override
687 public String getFailureMessage() {
688 return "Experiment Folder not empty (" + fExperimentNb + ")";
689 }
690 });
691 }
692
693 /**
694 * Select the project in Project Explorer
695 *
696 * @param bot
697 * a given workbench bot
698 * @param projectName
699 * the name of the project (it needs to exist or else it would time out)
700 * @return a {@link SWTBotTreeItem} of the project
701 */
702 public static SWTBotTreeItem selectProject(SWTWorkbenchBot bot, String projectName) {
703 SWTBotView projectExplorerBot = bot.viewByTitle("Project Explorer");
704 projectExplorerBot.show();
705 // FIXME: Bug 496519. Sometimes, the tree becomes disabled for a certain
706 // amount of time. This can happen during a long running operation
707 // (BusyIndicator.showWhile) which brings up the modal dialog "operation
708 // in progress" and this disables all shells
709 projectExplorerBot.bot().waitUntil(Conditions.widgetIsEnabled(projectExplorerBot.bot().tree()));
710 SWTBotTreeItem treeItem = projectExplorerBot.bot().tree().getTreeItem(projectName);
711 treeItem.select();
712 return treeItem;
713 }
714
715 /**
716 * Open a view by id.
717 *
718 * @param id
719 * view id.
720 */
721 public static void openView(final String id) {
722 final PartInitException res[] = new PartInitException[1];
723 UIThreadRunnable.syncExec(new VoidResult() {
724 @Override
725 public void run() {
726 try {
727 PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().showView(id);
728 } catch (PartInitException e) {
729 res[0] = e;
730 }
731 }
732 });
733 if (res[0] != null) {
734 fail(res[0].getMessage());
735 }
736 waitForJobs();
737 }
738
739 /**
740 * Maximize a table
741 *
742 * @param tableBot
743 * the {@link SWTBotTable} table
744 */
745 public static void maximizeTable(SWTBotTable tableBot) {
746 final AtomicBoolean controlResized = new AtomicBoolean();
747 UIThreadRunnable.syncExec(new VoidResult() {
748 @Override
749 public void run() {
750 tableBot.widget.addControlListener(new ControlAdapter() {
751 @Override
752 public void controlResized(ControlEvent e) {
753 tableBot.widget.removeControlListener(this);
754 controlResized.set(true);
755 }
756 });
757 }
758 });
759 try {
760 tableBot.pressShortcut(KeyStroke.getInstance(IKeyLookup.CTRL_NAME + "+"), KeyStroke.getInstance("M"));
761 } catch (ParseException e) {
762 fail();
763 }
764 new SWTBot().waitUntil(new DefaultCondition() {
765 @Override
766 public boolean test() throws Exception {
767 return controlResized.get();
768 }
769
770 @Override
771 public String getFailureMessage() {
772 return "Control was not resized";
773 }
774 });
775 }
776
777 /**
778 * Get the bounds of a cell (SWT.Rectangle) for the specified row and column
779 * index in a table
780 *
781 * @param table
782 * the table
783 * @param row
784 * the row of the table to look up
785 * @param col
786 * the column of the table to look up
787 * @return the bounds in display relative coordinates
788 */
789 public static Rectangle getCellBounds(final Table table, final int row, final int col) {
790 return UIThreadRunnable.syncExec(new Result<Rectangle>() {
791 @Override
792 public Rectangle run() {
793 TableItem item = table.getItem(row);
794 Rectangle bounds = item.getBounds(col);
795 Point p = table.toDisplay(bounds.x, bounds.y);
796 Rectangle rect = new Rectangle(p.x, p.y, bounds.width, bounds.height);
797 return rect;
798 }
799 });
800 }
801
802 /**
803 * Get the tree item from a tree at the specified location
804 *
805 * @param bot
806 * the SWTBot
807 * @param tree
808 * the tree to find the tree item in
809 * @param nodeNames
810 * the path to the tree item, in the form of node names (from
811 * parent to child).
812 * @return the tree item
813 */
814 public static SWTBotTreeItem getTreeItem(SWTBot bot, SWTBotTree tree, String... nodeNames) {
815 if (nodeNames.length == 0) {
816 return null;
817 }
818
819 bot.waitUntil(ConditionHelpers.IsTreeNodeAvailable(nodeNames[0], tree));
820 SWTBotTreeItem currentNode = tree.getTreeItem(nodeNames[0]);
821 return getTreeItem(bot, currentNode, Arrays.copyOfRange(nodeNames, 1, nodeNames.length));
822 }
823
824 /**
825 * Get the tree item from a parent tree item at the specified location
826 *
827 * @param bot
828 * the SWTBot
829 * @param treeItem
830 * the treeItem to find the tree item under
831 * @param nodeNames
832 * the path to the tree item, in the form of node names (from
833 * parent to child).
834 * @return the tree item
835 */
836 public static SWTBotTreeItem getTreeItem(SWTBot bot, SWTBotTreeItem treeItem, String... nodeNames) {
837 if (nodeNames.length == 0) {
838 return treeItem;
839 }
840
841 SWTBotTreeItem currentNode = treeItem;
842 for (int i = 0; i < nodeNames.length; i++) {
843 bot.waitUntil(ConditionHelpers.treeItemHasChildren(treeItem));
844 currentNode.expand();
845
846 String nodeName = nodeNames[i];
847 try {
848 bot.waitUntil(ConditionHelpers.IsTreeChildNodeAvailable(nodeName, currentNode));
849 } catch (TimeoutException e) {
850 //FIXME: Sometimes in a JFace TreeViewer, it expands to nothing. Need to find out why.
851 currentNode.collapse();
852 currentNode.expand();
853 bot.waitUntil(ConditionHelpers.IsTreeChildNodeAvailable(nodeName, currentNode));
854 }
855
856 SWTBotTreeItem newNode = currentNode.getNode(nodeName);
857 currentNode = newNode;
858 }
859
860 return currentNode;
861 }
862
863 /**
864 * Press the keyboard shortcut that goes to the top of a tree widget. The
865 * key combination can differ on different platforms.
866 *
867 * @param keyboard
868 * the keyboard to use
869 */
870 public static void pressShortcutGoToTreeTop(Keyboard keyboard) {
871 if (SWTUtils.isMac()) {
872 keyboard.pressShortcut(Keystrokes.ALT, Keystrokes.UP);
873 } else {
874 keyboard.pressShortcut(Keystrokes.HOME);
875 }
876 }
877
878 /**
879 * Get the active events editor. Note that this will wait until such editor
880 * is available.
881 *
882 * @param workbenchBot
883 * a given workbench bot
884 * @return the active events editor
885 */
886 public static SWTBotEditor activeEventsEditor(final SWTWorkbenchBot workbenchBot) {
887 ConditionHelpers.ActiveEventsEditor condition = new ConditionHelpers.ActiveEventsEditor(workbenchBot, null);
888 workbenchBot.waitUntil(condition);
889 return condition.getActiveEditor();
890 }
891
892 /**
893 * Get the active events editor. Note that this will wait until such editor
894 * is available.
895 *
896 * @param workbenchBot
897 * a given workbench bot
898 * @param editorTitle
899 * the desired editor title. If null, any active events editor
900 * will be considered valid.
901 * @return the active events editor
902 */
903 public static SWTBotEditor activeEventsEditor(final SWTWorkbenchBot workbenchBot, String editorTitle) {
904 ConditionHelpers.ActiveEventsEditor condition = new ConditionHelpers.ActiveEventsEditor(workbenchBot, editorTitle);
905 workbenchBot.waitUntil(condition);
906 return condition.getActiveEditor();
907 }
908
909 /**
910 * Open the preferences dialog and return the corresponding shell.
911 *
912 * @param bot
913 * a given workbench bot
914 * @return the preferences shell
915 */
916 public static SWTBotShell openPreferences(SWTBot bot) {
917 if (SWTUtils.isMac()) {
918 // On Mac, the Preferences menu item is under the application name.
919 // For some reason, we can't access the application menu anymore so
920 // we use the keyboard shortcut.
921 try {
922 bot.activeShell().pressShortcut(KeyStroke.getInstance(IKeyLookup.COMMAND_NAME + "+"), KeyStroke.getInstance(","));
923 } catch (ParseException e) {
924 fail();
925 }
926 } else {
927 bot.menu(WINDOW_MENU).menu(PREFERENCES_MENU_ITEM).click();
928 }
929
930 bot.waitUntil(Conditions.shellIsActive(PREFERENCES_MENU_ITEM));
931 return bot.activeShell();
932 }
933 }
This page took 0.052317 seconds and 5 git commands to generate.