Coverage Report - org.apache.maven.plugin.surefire.booterclient.ForkConfiguration
 
Classes in this File Line Coverage Branch Coverage Complexity
ForkConfiguration
0%
0/83
0%
0/34
1.952
 
 1  
 package org.apache.maven.plugin.surefire.booterclient;
 2  
 
 3  
 /*
 4  
  * Licensed to the Apache Software Foundation (ASF) under one
 5  
  * or more contributor license agreements.  See the NOTICE file
 6  
  * distributed with this work for additional information
 7  
  * regarding copyright ownership.  The ASF licenses this file
 8  
  * to you under the Apache License, Version 2.0 (the
 9  
  * "License"); you may not use this file except in compliance
 10  
  * with the License.  You may obtain a copy of the License at
 11  
  *
 12  
  *     http://www.apache.org/licenses/LICENSE-2.0
 13  
  *
 14  
  * Unless required by applicable law or agreed to in writing,
 15  
  * software distributed under the License is distributed on an
 16  
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 17  
  * KIND, either express or implied.  See the License for the
 18  
  * specific language governing permissions and limitations
 19  
  * under the License.
 20  
  */
 21  
 
 22  
 import java.io.File;
 23  
 import java.io.FileOutputStream;
 24  
 import java.io.IOException;
 25  
 import java.util.HashMap;
 26  
 import java.util.Iterator;
 27  
 import java.util.List;
 28  
 import java.util.Map;
 29  
 import java.util.Properties;
 30  
 import java.util.jar.JarEntry;
 31  
 import java.util.jar.JarOutputStream;
 32  
 import java.util.jar.Manifest;
 33  
 import org.apache.maven.surefire.booter.ClassLoaderConfiguration;
 34  
 import org.apache.maven.surefire.booter.Classpath;
 35  
 import org.apache.maven.surefire.booter.ForkedBooter;
 36  
 import org.apache.maven.surefire.booter.SurefireBooterForkException;
 37  
 import org.apache.maven.surefire.util.Relocator;
 38  
 import org.apache.maven.surefire.util.UrlUtils;
 39  
 import org.codehaus.plexus.util.StringUtils;
 40  
 import org.codehaus.plexus.util.cli.Commandline;
 41  
 
 42  
 /**
 43  
  * Configuration for forking tests.
 44  
  *
 45  
  * @author <a href="mailto:brett@apache.org">Brett Porter</a>
 46  
  * @author <a href="mailto:kenney@apache.org">Kenney Westerhof</a>
 47  
  * @author <a href="mailto:krosenvold@apache.org">Kristian Rosenvold</a>
 48  
  */
 49  
 public class ForkConfiguration
 50  
 {
 51  
     public static final String FORK_ONCE = "once";
 52  
 
 53  
     public static final String FORK_ALWAYS = "always";
 54  
 
 55  
     public static final String FORK_NEVER = "never";
 56  
 
 57  
     private final Classpath bootClasspathConfiguration;
 58  
 
 59  
     private final String forkMode;
 60  
 
 61  
     private Properties systemProperties;
 62  
 
 63  
     private String jvmExecutable;
 64  
 
 65  
     private String argLine;
 66  
 
 67  
     private Map environmentVariables;
 68  
 
 69  
     private File workingDirectory;
 70  
 
 71  
     private File tempDirectory;
 72  
 
 73  
     private boolean debug;
 74  
 
 75  
     private String debugLine;
 76  
 
 77  
     public ForkConfiguration( Classpath bootClasspathConfiguration, String forkMode, File tmpDir )
 78  0
     {
 79  0
         this.bootClasspathConfiguration = bootClasspathConfiguration;
 80  0
         this.forkMode = getForkMode( forkMode );
 81  0
         this.tempDirectory = tmpDir;
 82  0
     }
 83  
 
 84  
     public Classpath getBootClasspath()
 85  
     {
 86  0
         return bootClasspathConfiguration;
 87  
     }
 88  
 
 89  
     private static String getForkMode( String forkMode )
 90  
     {
 91  0
         if ( "pertest".equalsIgnoreCase( forkMode ) )
 92  
         {
 93  0
             return FORK_ALWAYS;
 94  
         }
 95  0
         else if ( "none".equalsIgnoreCase( forkMode ) )
 96  
         {
 97  0
             return FORK_NEVER;
 98  
         }
 99  0
         else if ( forkMode.equals( FORK_NEVER ) || forkMode.equals( FORK_ONCE ) || forkMode.equals( FORK_ALWAYS ) )
 100  
         {
 101  0
             return forkMode;
 102  
         }
 103  
         else
 104  
         {
 105  0
             throw new IllegalArgumentException( "Fork mode " + forkMode + " is not a legal value" );
 106  
         }
 107  
     }
 108  
 
 109  
     public boolean isForking()
 110  
     {
 111  0
         return !FORK_NEVER.equals( forkMode );
 112  
     }
 113  
 
 114  
     public void setSystemProperties( Properties systemProperties )
 115  
     {
 116  0
         this.systemProperties = (Properties) systemProperties.clone();
 117  0
     }
 118  
 
 119  
     public void setJvmExecutable( String jvmExecutable )
 120  
     {
 121  0
         this.jvmExecutable = jvmExecutable;
 122  0
     }
 123  
 
 124  
     public void setArgLine( String argLine )
 125  
     {
 126  0
         this.argLine = argLine;
 127  0
     }
 128  
 
 129  
     public void setDebugLine( String debugLine )
 130  
     {
 131  0
         this.debugLine = debugLine;
 132  0
     }
 133  
 
 134  
     public void setEnvironmentVariables( Map environmentVariables )
 135  
     {
 136  0
         this.environmentVariables = new HashMap( environmentVariables );
 137  0
     }
 138  
 
 139  
     public void setWorkingDirectory( File workingDirectory )
 140  
     {
 141  0
         this.workingDirectory = workingDirectory;
 142  0
     }
 143  
 
 144  
     public void setTempDirectory( File tempDirectory )
 145  
     {
 146  0
         this.tempDirectory = tempDirectory;
 147  0
     }
 148  
 
 149  
 
 150  
     public String getForkMode()
 151  
     {
 152  0
         return forkMode;
 153  
     }
 154  
 
 155  
     public Properties getSystemProperties()
 156  
     {
 157  0
         return systemProperties;
 158  
     }
 159  
 
 160  
     /**
 161  
      * @param classPath              cla the classpath arguments
 162  
      * @param classpathConfiguration the classpath configuration
 163  
      * @param shadefire              true if running shadefire
 164  
      * @return A commandline
 165  
      * @throws org.apache.maven.surefire.booter.SurefireBooterForkException
 166  
      *          when unable to perform the fork
 167  
      */
 168  
     public Commandline createCommandLine( List classPath, ClassLoaderConfiguration classpathConfiguration,
 169  
                                           boolean shadefire )
 170  
         throws SurefireBooterForkException
 171  
     {
 172  0
         return createCommandLine( classPath, classpathConfiguration.isManifestOnlyJarRequestedAndUsable(), shadefire );
 173  
     }
 174  
 
 175  
     public Commandline createCommandLine( List classPath, boolean useJar, boolean shadefire )
 176  
         throws SurefireBooterForkException
 177  
     {
 178  0
         Commandline cli = new Commandline();
 179  
 
 180  0
         cli.setExecutable( jvmExecutable );
 181  
 
 182  0
         if ( argLine != null )
 183  
         {
 184  0
             cli.createArg().setLine( stripNewLines( argLine ) );
 185  
         }
 186  
 
 187  0
         if ( environmentVariables != null )
 188  
         {
 189  0
             Iterator iter = environmentVariables.keySet().iterator();
 190  
 
 191  0
             while ( iter.hasNext() )
 192  
             {
 193  0
                 String key = (String) iter.next();
 194  
 
 195  0
                 String value = (String) environmentVariables.get( key );
 196  
 
 197  0
                 cli.addEnvironment( key, value );
 198  0
             }
 199  
         }
 200  
 
 201  0
         if ( getDebugLine() != null && !"".equals( getDebugLine() ) )
 202  
         {
 203  0
             cli.createArg().setLine( getDebugLine() );
 204  
         }
 205  
 
 206  0
         if ( useJar )
 207  
         {
 208  
             File jarFile;
 209  
             try
 210  
             {
 211  0
                 jarFile = createJar( classPath );
 212  
             }
 213  0
             catch ( IOException e )
 214  
             {
 215  0
                 throw new SurefireBooterForkException( "Error creating archive file", e );
 216  0
             }
 217  
 
 218  0
             cli.createArg().setValue( "-jar" );
 219  
 
 220  0
             cli.createArg().setValue( jarFile.getAbsolutePath() );
 221  0
         }
 222  
         else
 223  
         {
 224  0
             cli.addEnvironment( "CLASSPATH", StringUtils.join( classPath.iterator(), File.pathSeparator ) );
 225  
 
 226  0
             final String forkedBooter = ForkedBooter.class.getName();
 227  
 
 228  0
             cli.createArg().setValue( shadefire ? new Relocator().relocate( forkedBooter ) : forkedBooter );
 229  
         }
 230  
 
 231  0
         cli.setWorkingDirectory( workingDirectory.getAbsolutePath() );
 232  
 
 233  0
         return cli;
 234  
     }
 235  
 
 236  
     /**
 237  
      * Create a jar with just a manifest containing a Main-Class entry for BooterConfiguration and a Class-Path entry
 238  
      * for all classpath elements.
 239  
      *
 240  
      * @param classPath List&lt;String> of all classpath elements.
 241  
      * @return The file pointint to the jar
 242  
      * @throws java.io.IOException When a file operation fails.
 243  
      */
 244  
     public File createJar( List classPath )
 245  
         throws IOException
 246  
     {
 247  0
         File file = File.createTempFile( "surefirebooter", ".jar", tempDirectory );
 248  0
         if ( !debug )
 249  
         {
 250  0
             file.deleteOnExit();
 251  
         }
 252  0
         FileOutputStream fos = new FileOutputStream( file );
 253  0
         JarOutputStream jos = new JarOutputStream( fos );
 254  0
         jos.setLevel( JarOutputStream.STORED );
 255  0
         JarEntry je = new JarEntry( "META-INF/MANIFEST.MF" );
 256  0
         jos.putNextEntry( je );
 257  
 
 258  0
         Manifest man = new Manifest();
 259  
 
 260  
         // we can't use StringUtils.join here since we need to add a '/' to
 261  
         // the end of directory entries - otherwise the jvm will ignore them.
 262  0
         String cp = "";
 263  0
         for ( Iterator it = classPath.iterator(); it.hasNext(); )
 264  
         {
 265  0
             String el = (String) it.next();
 266  
             // NOTE: if File points to a directory, this entry MUST end in '/'.
 267  0
             cp += UrlUtils.getURL( new File( el ) ).toExternalForm() + " ";
 268  0
         }
 269  
 
 270  0
         man.getMainAttributes().putValue( "Manifest-Version", "1.0" );
 271  0
         man.getMainAttributes().putValue( "Class-Path", cp.trim() );
 272  0
         man.getMainAttributes().putValue( "Main-Class", ForkedBooter.class.getName() );
 273  
 
 274  0
         man.write( jos );
 275  0
         jos.close();
 276  
 
 277  0
         return file;
 278  
     }
 279  
 
 280  
     public void setDebug( boolean debug )
 281  
     {
 282  0
         this.debug = debug;
 283  0
     }
 284  
 
 285  
     public boolean isDebug()
 286  
     {
 287  0
         return debug;
 288  
     }
 289  
 
 290  
     public String stripNewLines( String argline )
 291  
     {
 292  0
         return argline.replace( "\n", " " ).replace( "\r", " " );
 293  
     }
 294  
 
 295  
     public String getDebugLine()
 296  
     {
 297  0
         return debugLine;
 298  
     }
 299  
 
 300  
 
 301  
     public File getTempDirectory()
 302  
     {
 303  0
         return tempDirectory;
 304  
     }
 305  
 }