Coverage Report - org.apache.maven.surefire.booter.ProviderFactory
 
Classes in this File Line Coverage Branch Coverage Complexity
ProviderFactory
0%
0/31
0%
0/4
1,75
ProviderFactory$1
N/A
N/A
1,75
ProviderFactory$ProviderProxy
0%
0/20
0%
0/2
1,75
 
 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  
 import java.io.PrintStream;
 23  
 import java.lang.reflect.InvocationTargetException;
 24  
 import java.lang.reflect.Method;
 25  
 import java.util.Iterator;
 26  
 
 27  
 import org.apache.maven.surefire.providerapi.SurefireProvider;
 28  
 import org.apache.maven.surefire.report.ReporterException;
 29  
 import org.apache.maven.surefire.suite.RunResult;
 30  
 import org.apache.maven.surefire.testset.TestSetFailedException;
 31  
 import org.apache.maven.surefire.util.ReflectionUtils;
 32  
 
 33  
 
 34  
 /**
 35  
  * Creates the surefire provider.
 36  
  * <p/>
 37  
  *
 38  
  * @author Kristian Rosenvold
 39  
  */
 40  0
 public class ProviderFactory
 41  
 {
 42  
     private final StartupConfiguration startupConfiguration;
 43  
 
 44  
     private final ProviderConfiguration providerConfiguration;
 45  
 
 46  
     private final ClassLoader classLoader;
 47  
 
 48  
     private final SurefireReflector surefireReflector;
 49  
 
 50  
     private final Object reporterManagerFactory;
 51  
 
 52  0
     private static final Class[] invokeParamaters = new Class[]{ Object.class };
 53  
 
 54  
 
 55  
     public ProviderFactory( StartupConfiguration startupConfiguration, ProviderConfiguration providerConfiguration,
 56  
                             ClassLoader testsClassLoader, Object reporterManagerFactory )
 57  0
     {
 58  0
         this.providerConfiguration = providerConfiguration;
 59  0
         this.startupConfiguration = startupConfiguration;
 60  0
         this.surefireReflector = new SurefireReflector( testsClassLoader );
 61  0
         this.classLoader = testsClassLoader;
 62  0
         this.reporterManagerFactory = reporterManagerFactory;
 63  0
     }
 64  
 
 65  
     public static RunResult invokeProvider( Object testSet, ClassLoader testsClassLoader, Object factory,
 66  
                                             ProviderConfiguration providerConfiguration, boolean insideFork,
 67  
                                             StartupConfiguration startupConfiguration1, boolean restoreStreams )
 68  
         throws TestSetFailedException, InvocationTargetException
 69  
     {
 70  0
         final PrintStream orgSystemOut = System.out;
 71  0
         final PrintStream orgSystemErr = System.err;
 72  
         // Note that System.out/System.err are also read in the "ReporterConfiguration" instatiation
 73  
         // in createProvider below. These are the same values as here.
 74  
 
 75  0
         ProviderFactory providerFactory =
 76  
             new ProviderFactory( startupConfiguration1, providerConfiguration, testsClassLoader,
 77  
                                  factory );
 78  0
         final SurefireProvider provider = providerFactory.createProvider( insideFork );
 79  
 
 80  
         try
 81  
         {
 82  0
             return provider.invoke( testSet );
 83  
         }
 84  
         finally
 85  
         {
 86  0
             if ( restoreStreams && System.getSecurityManager() == null )
 87  
             {
 88  0
                 System.setOut( orgSystemOut );
 89  0
                 System.setErr( orgSystemErr );
 90  
             }
 91  
         }
 92  
     }
 93  
 
 94  
 
 95  
     public SurefireProvider createProvider( boolean isInsideFork )
 96  
     {
 97  0
         ClassLoader systemClassLoader = java.lang.Thread.currentThread().getContextClassLoader();
 98  0
         Thread.currentThread().setContextClassLoader( classLoader );
 99  
 
 100  0
         StartupConfiguration starterConfiguration = startupConfiguration;
 101  
 
 102  
         // Note: Duplicated in ForkedBooter#createProviderInCurrentClassloader
 103  0
         final Object o =
 104  
             surefireReflector.createBooterConfiguration( classLoader, reporterManagerFactory, isInsideFork );
 105  0
         surefireReflector.setTestSuiteDefinitionAware( o, providerConfiguration.getTestSuiteDefinition() );
 106  0
         surefireReflector.setProviderPropertiesAware( o, providerConfiguration.getProviderProperties() );
 107  0
         surefireReflector.setReporterConfigurationAware( o, providerConfiguration.getReporterConfiguration() );
 108  0
         surefireReflector.setTestClassLoaderAware( o, classLoader );
 109  0
         surefireReflector.setTestArtifactInfoAware( o, providerConfiguration.getTestArtifact() );
 110  0
         surefireReflector.setRunOrderParameters( o, providerConfiguration.getRunOrderParameters() );
 111  0
         surefireReflector.setIfDirScannerAware( o, providerConfiguration.getDirScannerParams() );
 112  
 
 113  0
         Object provider = surefireReflector.instantiateProvider( starterConfiguration.getActualClassName(), o );
 114  0
         Thread.currentThread().setContextClassLoader( systemClassLoader );
 115  
 
 116  0
         return new ProviderProxy( provider, classLoader );
 117  
     }
 118  
 
 119  
 
 120  0
     private class ProviderProxy
 121  
         implements SurefireProvider
 122  
     {
 123  
         private final Object providerInOtherClassLoader;
 124  
 
 125  
         private final ClassLoader testsClassLoader;
 126  
 
 127  
 
 128  
         private ProviderProxy( Object providerInOtherClassLoader, ClassLoader testsClassLoader )
 129  0
         {
 130  0
             this.providerInOtherClassLoader = providerInOtherClassLoader;
 131  0
             this.testsClassLoader = testsClassLoader;
 132  0
         }
 133  
 
 134  
         public Iterator getSuites()
 135  
         {
 136  0
             ClassLoader current = swapClassLoader( testsClassLoader );
 137  
             try
 138  
             {
 139  0
                 return (Iterator) ReflectionUtils.invokeGetter( providerInOtherClassLoader, "getSuites" );
 140  
             }
 141  
             finally
 142  
             {
 143  0
                 Thread.currentThread().setContextClassLoader( current );
 144  
             }
 145  
         }
 146  
 
 147  
         public RunResult invoke( Object forkTestSet )
 148  
             throws TestSetFailedException, ReporterException, InvocationTargetException
 149  
         {
 150  0
             ClassLoader current = swapClassLoader( testsClassLoader );
 151  
             try
 152  
             {
 153  0
                 final Method invoke =
 154  
                     ReflectionUtils.getMethod( providerInOtherClassLoader.getClass(), "invoke", invokeParamaters );
 155  
 
 156  0
                 final Object result = ReflectionUtils.invokeMethodWithArray2( providerInOtherClassLoader, invoke,
 157  
                                                                               new Object[]{ forkTestSet } );
 158  0
                 return (RunResult) surefireReflector.convertIfRunResult( result );
 159  
             }
 160  
             finally
 161  
             {
 162  0
                 if ( System.getSecurityManager() == null )
 163  
                 {
 164  0
                     Thread.currentThread().setContextClassLoader( current );
 165  
                 }
 166  
             }
 167  
 
 168  
         }
 169  
 
 170  
         private ClassLoader swapClassLoader( ClassLoader newClassLoader )
 171  
         {
 172  0
             ClassLoader current = Thread.currentThread().getContextClassLoader();
 173  0
             Thread.currentThread().setContextClassLoader( newClassLoader );
 174  0
             return current;
 175  
         }
 176  
 
 177  
         public void cancel()
 178  
         {
 179  0
             final Method invoke =
 180  
                 ReflectionUtils.getMethod( providerInOtherClassLoader.getClass(), "cancel", new Class[]{ } );
 181  0
             ReflectionUtils.invokeMethodWithArray( providerInOtherClassLoader, invoke, null );
 182  0
         }
 183  
     }
 184  
 }