Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 981459a797eb84b9b89d308dbeb5978968ba1992 (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
/*******************************************************************************
 * Copyright (c) 2017 Andreas Loth 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:
 *     Andreas Loth - initial API and implementation
 *******************************************************************************/

package org.eclipse.debug.tests.console;

import org.eclipse.core.runtime.jobs.Job;
import org.eclipse.swt.widgets.Display;
import org.eclipse.ui.PlatformUI;


public final class TestHelper {

	private TestHelper() {
		throw new AssertionError("No instances of this utility class!"); //$NON-NLS-1$
	}

	public static void processUIEvents(final long millis) {
		long start = System.currentTimeMillis();
		while (System.currentTimeMillis() - start < millis) {
			while (PlatformUI.getWorkbench().getDisplay().readAndDispatch()) {
				// loop untile the queue is empty
			}
		}
	}

	public static void waitForJobs() throws InterruptedException {
		if (Display.getCurrent() == null) {
			Thread.sleep(200);
		} else {
			processUIEvents(200);
		}
		while (!Job.getJobManager().isIdle()) {
			if (Display.getCurrent() == null) {
				Thread.sleep(200);
			} else {
				processUIEvents(200);
			}
		}
	}

}

Back to the top