Coverage Report - org.apache.maven.plugin.surefire.InPluginVMSurefireStarter
 
Classes in this File Line Coverage Branch Coverage Complexity
InPluginVMSurefireStarter
0%
0/14
N/A
2,5
 
 1  
 package org.apache.maven.plugin.surefire;
 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.lang.reflect.InvocationTargetException;
 23  
 import java.util.Properties;
 24  
 import org.apache.maven.surefire.booter.ProviderConfiguration;
 25  
 import org.apache.maven.surefire.booter.ProviderFactory;
 26  
 import org.apache.maven.surefire.booter.StartupConfiguration;
 27  
 import org.apache.maven.surefire.booter.SurefireExecutionException;
 28  
 import org.apache.maven.surefire.suite.RunResult;
 29  
 import org.apache.maven.surefire.testset.TestSetFailedException;
 30  
 import org.apache.maven.surefire.util.DefaultScanResult;
 31  
 
 32  
 import javax.annotation.Nonnull;
 33  
 
 34  
 /**
 35  
  * Starts the provider in the same VM as the surefire plugin.
 36  
  * <p/>
 37  
  * This part of the booter is always guaranteed to be in the
 38  
  * same vm as the tests will be run in.
 39  
  *
 40  
  * @author Jason van Zyl
 41  
  * @author Brett Porter
 42  
  * @author Emmanuel Venisse
 43  
  * @author Dan Fabulich
 44  
  * @author Kristian Rosenvold
 45  
  */
 46  
 public class InPluginVMSurefireStarter
 47  
 {
 48  
 
 49  
     private final StartupConfiguration startupConfiguration;
 50  
 
 51  
     private final StartupReportConfiguration startupReportConfiguration;
 52  
 
 53  
     private final ProviderConfiguration providerConfiguration;
 54  
 
 55  
     public InPluginVMSurefireStarter( @Nonnull StartupConfiguration startupConfiguration,
 56  
                                       @Nonnull ProviderConfiguration providerConfiguration,
 57  
                                       @Nonnull StartupReportConfiguration startupReportConfiguration )
 58  0
     {
 59  0
         this.startupConfiguration = startupConfiguration;
 60  0
         this.startupReportConfiguration = startupReportConfiguration;
 61  0
         this.providerConfiguration = providerConfiguration;
 62  0
     }
 63  
 
 64  
     public RunResult runSuitesInProcess( @Nonnull DefaultScanResult scanResult )
 65  
         throws SurefireExecutionException, TestSetFailedException
 66  
     {
 67  
         // The test classloader must be constructed first to avoid issues with commons-logging until we properly
 68  
         // separate the TestNG classloader
 69  
 
 70  0
         Properties providerProperties = providerConfiguration.getProviderProperties();
 71  0
         scanResult.writeTo( providerProperties );
 72  
 
 73  0
         startupConfiguration.writeSurefireTestClasspathProperty();
 74  0
         ClassLoader testsClassLoader = startupConfiguration.getClasspathConfiguration().createMergedClassLoader();
 75  
 
 76  0
         CommonReflector surefireReflector = new CommonReflector( testsClassLoader );
 77  
 
 78  0
         final Object factory = surefireReflector.createReportingReporterFactory( startupReportConfiguration );
 79  
 
 80  
         try
 81  
         {
 82  0
             return ProviderFactory.invokeProvider( null, testsClassLoader, factory,
 83  
                                                    providerConfiguration, false, startupConfiguration, true );
 84  
         }
 85  0
         catch ( InvocationTargetException e )
 86  
         {
 87  0
             throw new SurefireExecutionException( "Exception in provider", e.getTargetException() );
 88  
         }
 89  
     }
 90  
 
 91  
 }