Coverage Report - org.apache.maven.surefire.booter.ClasspathConfiguration
 
Classes in this File Line Coverage Branch Coverage Complexity
ClasspathConfiguration
0%
0/19
N/A
1
 
 1  
 package org.apache.maven.surefire.booter;
 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  
 /**
 23  
  * Represents the classpaths for the BooterConfiguration.
 24  
  * <p/>
 25  
  *
 26  
  * @author Jason van Zyl
 27  
  * @author Emmanuel Venisse
 28  
  * @author Kristian Rosenvold
 29  
  */
 30  
 public class ClasspathConfiguration
 31  
 {
 32  
     public static final String CHILD_DELEGATION = "childDelegation";
 33  
 
 34  
     public static final String ENABLE_ASSERTIONS = "enableAssertions";
 35  
 
 36  
     public static final String CLASSPATH = "classPathUrl.";
 37  
 
 38  
     public static final String SUREFIRE_CLASSPATH = "surefireClassPathUrl.";
 39  
 
 40  
     private final Classpath classpathUrls;
 41  
 
 42  
     private final Classpath surefireClasspathUrls;
 43  
 
 44  
     /**
 45  
      * The surefire classpath to use when invoking in-process with the plugin
 46  
      */
 47  
     private final Classpath inprocClasspath;
 48  
 
 49  
     /**
 50  
      * Whether to enable assertions or not (can be affected by the fork arguments, and the ability to do so based on the
 51  
      * JVM).
 52  
      */
 53  
     private final boolean enableAssertions;
 54  
 
 55  
     // todo: @deprecated because the IsolatedClassLoader is really isolated - no parent.
 56  
     private final boolean childDelegation;
 57  
 
 58  
     public ClasspathConfiguration( boolean enableAssertions, boolean childDelegation )
 59  
     {
 60  0
         this( Classpath.emptyClasspath(), Classpath.emptyClasspath(), Classpath.emptyClasspath(), enableAssertions, childDelegation );
 61  0
     }
 62  
 
 63  
     ClasspathConfiguration( PropertiesWrapper properties )
 64  
     {
 65  0
         this( properties.getClasspath( CLASSPATH ), properties.getClasspath( SUREFIRE_CLASSPATH ),
 66  
               Classpath.emptyClasspath(),
 67  
               properties.getBooleanProperty( ENABLE_ASSERTIONS ), properties.getBooleanProperty( CHILD_DELEGATION ) );
 68  0
     }
 69  
 
 70  
     public ClasspathConfiguration( Classpath testClasspath, Classpath surefireClassPathUrls, Classpath inprocClasspath,
 71  
                                    boolean enableAssertions, boolean childDelegation )
 72  0
     {
 73  0
         this.enableAssertions = enableAssertions;
 74  0
         this.childDelegation = childDelegation;
 75  0
         this.inprocClasspath = inprocClasspath;
 76  0
         this.classpathUrls = testClasspath;
 77  0
         this.surefireClasspathUrls = surefireClassPathUrls;
 78  0
     }
 79  
 
 80  
     public ClassLoader createMergedClassLoader()
 81  
         throws SurefireExecutionException
 82  
     {
 83  0
         return Classpath.join( inprocClasspath, classpathUrls)
 84  
             .createClassLoader( null, this.childDelegation, enableAssertions, "test" );
 85  
     }
 86  
 
 87  
     public Classpath getProviderClasspath()
 88  
     {
 89  0
         return surefireClasspathUrls;
 90  
     }
 91  
 
 92  
 
 93  
         public Classpath getTestClasspath()
 94  
     {
 95  0
         return classpathUrls;
 96  
     }
 97  
 
 98  
     public void trickClassPathWhenManifestOnlyClasspath()
 99  
         throws SurefireExecutionException
 100  
     {
 101  0
             System.setProperty( "surefire.real.class.path", System.getProperty( "java.class.path" ) );
 102  0
             getTestClasspath().writeToSystemProperty( "java.class.path" );
 103  0
     }
 104  
 
 105  
     public boolean isEnableAssertions()
 106  
     {
 107  0
         return enableAssertions;
 108  
     }
 109  
 
 110  
     public boolean isChildDelegation()
 111  
     {
 112  0
         return childDelegation;
 113  
     }
 114  
 }