View Javadoc
1   package org.apache.maven.surefire.common.junit3;
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.Method;
23  import org.apache.maven.surefire.NonAbstractClassFilter;
24  import org.apache.maven.surefire.util.ScannerFilter;
25  
26  import static java.lang.reflect.Modifier.isPublic;
27  import static java.lang.reflect.Modifier.isStatic;
28  import static org.apache.maven.surefire.util.ReflectionUtils.tryGetMethod;
29  import static org.apache.maven.surefire.util.ReflectionUtils.tryLoadClass;
30  
31  /**
32   * Missing tests ? This class is basically a subset of the JUnit4TestChecker, which is tested
33   * to boredom and back. Unfortunately we don't have any common module between these providers,
34   * so this stuff is duplicated. We should probably make some modules and just shade the content
35   * into the providers.
36   *
37   * @author Kristian Rosenvold
38   */
39  public class JUnit3TestChecker
40      implements ScannerFilter
41  {
42      private static final Class[] EMPTY_CLASS_ARRAY = new Class[0];
43  
44      private final Class<?> junitClass;
45  
46      private final NonAbstractClassFilter nonAbstractClassFilter = new NonAbstractClassFilter();
47  
48      public JUnit3TestChecker( ClassLoader testClassLoader )
49      {
50          junitClass = tryLoadClass( testClassLoader, "junit.framework.Test" );
51      }
52  
53      @Override
54      public boolean accept( Class testClass )
55      {
56          return nonAbstractClassFilter.accept( testClass ) && isValidJUnit3Test( testClass );
57      }
58  
59      private boolean isValidJUnit3Test( Class<?> testClass )
60      {
61          return junitClass != null && ( junitClass.isAssignableFrom( testClass ) || isSuiteOnly( testClass ) );
62      }
63  
64      private boolean isSuiteOnly( Class testClass )
65      {
66          final Method suite = tryGetMethod( testClass, "suite", EMPTY_CLASS_ARRAY );
67          if ( suite != null )
68          {
69              final int modifiers = suite.getModifiers();
70              if ( isPublic( modifiers ) && isStatic( modifiers ) )
71              {
72                  return junit.framework.Test.class.isAssignableFrom( suite.getReturnType() );
73              }
74          }
75          return false;
76      }
77  
78  }