blob: 438e9f5ebcca7d894fe8e20fcd4e4df2436590ce [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2008 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.tasks.tests.ui;
import java.lang.reflect.InvocationTargetException;
import junit.framework.TestCase;
import org.eclipse.mylyn.internal.tasks.ui.util.AbstractRetrieveTitleFromUrlJob;
import org.eclipse.ui.PlatformUI;
/**
* @author Mik Kersten
* @author Steffen Pingel
*/
public class RetrieveTitleFromUrlTest extends TestCase {
private String retrievedTitle;
public void testRetrieve() throws InterruptedException, InvocationTargetException {
final String url = "http://eclipse.org/mylyn";
final String knownTitle = "Eclipse Mylyn Open Source Project";
AbstractRetrieveTitleFromUrlJob job = new AbstractRetrieveTitleFromUrlJob(url) {
@Override
public void titleRetrieved(String title) {
retrievedTitle = title;
}
};
job.schedule();
job.join();
assertEquals(knownTitle, job.getPageTitle());
// process pending events
while (PlatformUI.getWorkbench().getDisplay().readAndDispatch()) {
}
assertEquals(knownTitle, retrievedTitle);
}
}