blob: a5c2bec5cb0c1d6fbab29cc6b29ffd717f5c6517 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2011 EclipseSource 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:
* Holger Staudacher - initial API and implementation
*******************************************************************************/
package org.eclipse.libra.warproducts.core.test.tests;
import java.io.*;
import junit.framework.TestCase;
import org.eclipse.core.resources.*;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
import org.eclipse.libra.warproducts.core.InfrastructureCreator;
public class InfrastructureCreatorTest extends TestCase {
private static final String TEMP_PROJECT = "tempProject";
private IFolder tempDir;
protected void setUp() throws Exception {
tempDir = createTempDir();
}
private static IFolder createTempDir() throws CoreException {
IWorkspace workspace = ResourcesPlugin.getWorkspace();
IWorkspaceRoot root = workspace.getRoot();
IProject project = root.getProject( TEMP_PROJECT );
if( !project.exists() ) {
project.create( null );
}
project.open( null );
IFolder tempFolder = project.getFolder( "temp" );
if( !tempFolder.exists() ) {
tempFolder.create( true, true, null );
}
return tempFolder;
}
protected void tearDown() throws Exception {
deleteTempDir();
}
private void deleteTempDir() throws CoreException {
if( tempDir != null && tempDir.exists() ) {
tempDir.delete( IResource.FORCE, null );
}
}
public void testRootPath() {
IProject project
= ResourcesPlugin.getWorkspace().getRoot().getProject( TEMP_PROJECT );
InfrastructureCreator icreator = new InfrastructureCreator( project );
IContainer root = icreator.getContainer();
assertEquals( tempDir.getParent(), root );
}
public void testCreateWebInf() throws CoreException {
InfrastructureCreator icreator = new InfrastructureCreator( tempDir );
icreator.createWebInf();
IFolder webInf = tempDir.getFolder( "WEB-INF" );
assertTrue( webInf.exists() );
}
public void testCreateWebInfWithClosedProject() throws CoreException {
InfrastructureCreator icreator = new InfrastructureCreator( tempDir );
IProject project = ( IProject )tempDir.getParent();
project.close( null );
boolean exceptionThrown = false;
try {
icreator.createWebInf();
} catch( final CoreException e ) {
exceptionThrown = true;
}
assertTrue( exceptionThrown );
}
public void testCreateWebXml() throws IOException, CoreException {
InfrastructureCreator icreator = new InfrastructureCreator( tempDir);
icreator.createWebXml();
IFolder webInf = tempDir.getFolder( "WEB-INF" );
IFile webXml = webInf.getFile( "web.xml" );
assertTrue( webXml.exists() );
StringBuffer webxmlContent = readFile( webXml.getContents( true ) );
ClassLoader classLoader = InfrastructureCreator.class.getClassLoader();
InputStream resourceStream
= classLoader.getResourceAsStream( File.separator + "web.xml" );
StringBuffer expectedContent = readFile( resourceStream );
assertEquals( expectedContent.toString(), webxmlContent.toString() );
}
public void testGetWebXmlPath() throws CoreException {
InfrastructureCreator icreator = new InfrastructureCreator( tempDir);
icreator.createWebXml();
IFolder webInf = tempDir.getFolder( "WEB-INF" );
IFile webXml = webInf.getFile( "web.xml" );
IPath webXmlPath = webXml.getFullPath();
assertEquals( webXmlPath, icreator.getWebXmlPath() );
}
public void testCreateLaunchIni() throws IOException, CoreException {
InfrastructureCreator icreator = new InfrastructureCreator( tempDir );
icreator.createLaunchIni();
IFolder webInf = tempDir.getFolder( "WEB-INF" );
IFile launchIni = webInf.getFile( "launch.ini" );
assertTrue( launchIni.exists() );
StringBuffer actualLaunchIni = readFile( launchIni.getContents() );
ClassLoader classLoader = InfrastructureCreator.class.getClassLoader();
InputStream tempLaunchIni
= classLoader.getResourceAsStream( File.separator + "launch.ini" );
StringBuffer expectedLaunchIni = readFile( tempLaunchIni );
assertEquals( expectedLaunchIni.toString(), actualLaunchIni.toString() );
}
public void testGetLaunchIniPath() throws CoreException {
InfrastructureCreator icreator = new InfrastructureCreator( tempDir );
icreator.createLaunchIni();
IFolder webInf = tempDir.getFolder( "WEB-INF" );
IFile launchIni = webInf.getFile( "launch.ini" );
IPath launchIniPath = launchIni.getFullPath();
assertEquals( launchIniPath, icreator.getLaunchIniPath() );
}
public void testCreateLaunchIniWithDeletedFolder() throws CoreException {
InfrastructureCreator icreator = new InfrastructureCreator( tempDir );
tempDir.delete( true, null );
boolean exceptionThrown = false;
try {
icreator.createLaunchIni();
} catch ( final CoreException e ) {
exceptionThrown = true;
}
assertTrue( exceptionThrown );
}
public void testCreateWebXmlWithDeletedFolder() throws CoreException {
InfrastructureCreator icreator = new InfrastructureCreator( tempDir );
tempDir.delete( true, null );
boolean exceptionThrown = false;
try {
icreator.createWebXml();
} catch ( final CoreException e ) {
exceptionThrown = true;
}
assertTrue( exceptionThrown );
}
private static StringBuffer readFile( final InputStream fileStream )
throws IOException
{
InputStreamReader streamReader = new InputStreamReader( fileStream );
BufferedReader reader = new BufferedReader( streamReader );
StringBuffer webxmlContent = new StringBuffer();
int c;
while( ( c = reader.read() ) != -1 ) {
webxmlContent.append( ( char ) c );
}
reader.close();
return webxmlContent;
}
}