blob: 9dda95e8f871d08939cd4b3b52e2173696b6466c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2013 RĂ¼diger Herrmann 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:
* RĂ¼diger Herrmann - initial API and implementation
* EclipseSource - ongoing development
******************************************************************************/
package org.eclipse.rap.tools.launch.rwt.internal.shortcut;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import java.lang.reflect.InvocationTargetException;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.debug.core.ILaunchConfiguration;
import org.eclipse.debug.core.ILaunchConfigurationType;
import org.eclipse.jdt.core.IType;
import org.eclipse.jface.operation.IRunnableContext;
import org.eclipse.jface.operation.IRunnableWithProgress;
import org.eclipse.rap.tools.launch.rwt.internal.config.RWTLaunchConfig;
import org.eclipse.rap.tools.launch.rwt.internal.shortcut.RWTLaunchShortcut;
import org.eclipse.rap.tools.launch.rwt.internal.tests.Fixture;
import org.eclipse.rap.tools.launch.rwt.internal.tests.TestProject;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
public class RWTLaunchShortcut_Test {
private TestableRWTLaunchShortcut launchShortcut;
@Before
public void setUp() throws Exception {
launchShortcut = new TestableRWTLaunchShortcut();
}
@After
public void tearDown() throws Exception {
TestProject.deleteAll();
Fixture.deleteAllRWTLaunchConfigs();
}
@Test
public void testGetConfigurationType() {
ILaunchConfigurationType type = launchShortcut.getConfigurationType();
assertEquals( RWTLaunchConfig.getType(), type );
}
@Test
public void testGetEditorEmptyMessage() {
String message = launchShortcut.getEditorEmptyMessage();
assertNotNull( message );
assertTrue( message.length() > 0 );
}
@Test
public void testGetSelectionEmptyMessage() {
String message = launchShortcut.getSelectionEmptyMessage();
assertNotNull( message );
assertTrue( message.length() > 0 );
}
@Test
public void testGetTypeSelectionTitle() {
String title = launchShortcut.getTypeSelectionTitle();
assertNotNull( title );
assertTrue( title.length() > 0 );
}
@Test
public void testFindTypes_withNonJavaElements() throws Exception {
IRunnableContext runnableContext = createRunnableContext();
IType[] types = launchShortcut.findTypes( new Object[] { new Object() }, runnableContext );
assertEquals( 0, types.length );
}
@Test
public void testCreateConfiguration_producesComparableLaunchConfig() throws CoreException {
TestProject project = new TestProject();
IType entryPointType = createEntryPointType( project );
ILaunchConfiguration createdConfig = launchShortcut.createConfiguration( entryPointType );
ILaunchConfiguration foundConfig
= launchShortcut.findLaunchConfiguration( entryPointType, RWTLaunchConfig.getType() );
assertEquals( createdConfig, foundConfig );
}
private static IType createEntryPointType( TestProject project ) throws CoreException {
String code
= "package foo;\n"
+ "class Foo {\n"
+ " public int createUI() {\n"
+ " return 0\n"
+ " }\n"
+ "}\n";
project.createJavaClass( "foo", "Foo", code );
return project.getJavaProject().findType( "foo.Foo" );
}
private static IRunnableContext createRunnableContext() {
return new IRunnableContext() {
public void run( boolean fork,
boolean cancelable,
IRunnableWithProgress runnable )
throws InvocationTargetException, InterruptedException
{
runnable.run( new NullProgressMonitor() );
}
};
}
private static class TestableRWTLaunchShortcut extends RWTLaunchShortcut {
@Override
protected ILaunchConfiguration findLaunchConfiguration( IType type,
ILaunchConfigurationType configType )
{
return super.findLaunchConfiguration( type, configType );
}
}
}