package org.codehaus.mojo.gwt.eclipse;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import java.io.File;
import java.io.IOException;
import java.io.Writer;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.Component;
import org.apache.maven.plugins.annotations.Execute;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.apache.maven.project.MavenProject;
import org.codehaus.mojo.gwt.shell.TestMojo;
import org.codehaus.mojo.gwt.test.TestTemplate;
import org.codehaus.plexus.util.WriterFactory;
import freemarker.template.Configuration;
import freemarker.template.Template;
import freemarker.template.TemplateException;
/**
* Goal which creates Eclipse lauch configurations for GWTTestCases.
*
* @version $Id$
* @author <a href="mailto:nicolas@apache.org">Nicolas De Loof</a>
* @deprecated use google eclipse plugin http://code.google.com/intl/fr-FR/eclipse/docs/users_guide.html
*/
@Deprecated
@Mojo(name = "eclipseTest")
@Execute(phase = LifecyclePhase.GENERATE_TEST_RESOURCES)
public class EclipseTestMojo
extends TestMojo
{
@Component
private EclipseUtil eclipseUtil;
/**
* The currently executed project (phase=generate-resources).
*/
@Parameter(defaultValue = "${executedProject}", readonly = true)
private MavenProject executedProject;
/**
* Location of the file.
*/
@Parameter(defaultValue = "${project.build.directory}/www-test")
private File testOutputDirectory;
/**
* {@inheritDoc}
*
* @see org.apache.maven.plugin.Mojo#execute()
*/
@Override
public void doExecute()
throws MojoExecutionException, MojoFailureException
{
new TestTemplate( getProject(), includes, excludes, new TestTemplate.CallBack()
{
public void doWithTest( File sourceDir, String test )
throws MojoExecutionException
{
createLaunchConfigurationForGwtTestCase( sourceDir, test );
}
} );
}
/**
* Create an eclipse launch configuration file for the specified test
* @param test the GWTTestCase
* @param testSrc the source directory where the test lives
* @throws MojoExecutionException some error occured
*/
private void createLaunchConfigurationForGwtTestCase( File testSrc, String test )
throws MojoExecutionException
{
File testFile = new File( testSrc, test );
String fqcn = test.replace( File.separatorChar, '.' ).substring( 0, test.lastIndexOf( '.' ) );
File launchFile = new File( getProject().getBasedir(), fqcn + ".launch" );
if ( launchFile.exists() && launchFile.lastModified() > testFile.lastModified() )
{
return;
}
Configuration cfg = new Configuration();
cfg.setClassForTemplateLoading( EclipseTestMojo.class, "" );
Map < String, Object > context = new HashMap < String, Object > ();
List < String > sources = new LinkedList < String >();
sources.addAll( executedProject.getTestCompileSourceRoots() );
sources.addAll( executedProject.getCompileSourceRoots() );
context.put( "sources", sources );
context.put( "test", fqcn );
int basedir = getProject().getBasedir().getAbsolutePath().length();
context.put( "out", testOutputDirectory.getAbsolutePath().substring( basedir + 1 ) );
context.put( "extraJvmArgs", getExtraJvmArgs() );
context.put( "project", eclipseUtil.getProjectName( getProject() ) );
try
{
Collection<String> gwtDevJarPath = new ArrayList<String>();
for (File f : getJarFiles(GWT_DEV, false))
{
gwtDevJarPath.add( f.getAbsolutePath().replace( '\\', '/' ) );
}
context.put( "gwtDevJarPath", gwtDevJarPath );
Writer configWriter = WriterFactory.newXmlWriter( launchFile );
Template template = cfg.getTemplate( "test-launch.fm", "UTF-8" );
template.process( context, configWriter );
configWriter.flush();
configWriter.close();
getLog().info( "Write launch configuration for GWT test : " + launchFile.getAbsolutePath() );
}
catch ( IOException ioe )
{
throw new MojoExecutionException( "Unable to write launch configuration", ioe );
}
catch ( TemplateException te )
{
throw new MojoExecutionException( "Unable to merge freemarker template", te );
}
}
}