/******************************************************************************* * Copyright (c) 2012 Tasktop Technologies 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: * Tasktop Technologies - initial API and implementation *******************************************************************************/ package org.eclipse.mylyn.builds.tests.util; import java.util.concurrent.TimeUnit; import junit.framework.TestCase; import org.eclipse.core.runtime.Status; import org.eclipse.mylyn.builds.internal.core.BuildServer; import org.eclipse.mylyn.builds.tests.support.BuildHarness; import org.eclipse.mylyn.commons.workbench.EditorHandle; import org.eclipse.mylyn.commons.workbench.browser.BrowserUtil; import org.eclipse.mylyn.internal.builds.ui.editor.BuildEditor; import org.eclipse.swt.widgets.Display; import org.eclipse.ui.IWorkbenchPage; import org.eclipse.ui.PlatformUI; /** * @author Steffen Pingel */ public class BuildsUrlHandlerTest extends TestCase { private IWorkbenchPage activePage; private BuildHarness harness; private BuildServer server; @Override protected void setUp() throws Exception { activePage = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage(); assertNotNull(activePage); harness = new BuildHarness(); server = harness.createServer(); } @Override protected void tearDown() throws Exception { harness.dispose(); } public void testOpenUrl() throws Exception { EditorHandle handler = BrowserUtil.openUrl(activePage, server.getUrl() + "/123", 0); //$NON-NLS-1$ long startTime = System.currentTimeMillis(); Display display = PlatformUI.getWorkbench().getDisplay(); while (!display.isDisposed()) { if (!display.readAndDispatch()) { if (handler.await(500, TimeUnit.MILLISECONDS)) { break; } assertTrue("Expected editor did not open within 10 seconds", System.currentTimeMillis() - startTime < 10 * 1000); } } assertEquals(Status.OK_STATUS, handler.getStatus()); assertEquals(BuildEditor.class, activePage.getActiveEditor().getClass()); } }