1
1
package org .rapidpm .junit .engine .nano ;
2
2
3
+
4
+ import com .svenruppert .dependencies .core .logger .HasLogger ;
3
5
import org .junit .platform .commons .support .AnnotationSupport ;
4
6
import org .junit .platform .commons .support .ReflectionSupport ;
5
7
import org .junit .platform .commons .util .ReflectionUtils ;
9
11
import org .junit .platform .engine .discovery .MethodSelector ;
10
12
import org .junit .platform .engine .discovery .PackageSelector ;
11
13
import org .junit .platform .engine .support .descriptor .EngineDescriptor ;
12
- import org .rapidpm .dependencies .core .logger .HasLogger ;
13
- import org .rapidpm .dependencies .core .logger .Logger ;
14
14
15
15
import java .lang .reflect .Method ;
16
16
import java .net .URI ;
24
24
import static org .rapidpm .frp .model .Result .failure ;
25
25
import static org .rapidpm .frp .model .Result .success ;
26
26
27
+ import org .slf4j .Logger ;
28
+ import org .slf4j .LoggerFactory ;
29
+
27
30
public class NanoEngine
28
31
implements TestEngine , HasLogger {
29
32
30
33
public static final String ENGINE_ID = NanoEngine .class .getSimpleName ();
31
34
35
+ private static final Logger LOGGER = LoggerFactory .getLogger (NanoEngine .class );
36
+
32
37
protected static Predicate <Class <?>> isTestClass () {
33
- return classCandidate -> match (matchCase (
34
- () -> failure ("this class is not a supported by this TestEngine - " + classCandidate .getSimpleName ())),
35
- matchCase (() -> isAbstract (classCandidate ), () -> failure (
36
- "no support for abstract classes" + classCandidate .getSimpleName ())),
37
- matchCase (() -> isPrivate (classCandidate ), () -> failure (
38
- "no support for private classes" + classCandidate .getSimpleName ())),
39
- matchCase (() -> isAnnotated (classCandidate , NanoTestClass .class ),
40
- () -> success (Boolean .TRUE ))).ifFailed (
41
- msg -> Logger .getLogger (NanoEngine .class )
42
- .info (msg ))
43
- .ifPresent (
44
- b -> Logger .getLogger (NanoEngine .class )
45
- .info ("selected class "
46
- + classCandidate ))
47
- .getOrElse (() -> Boolean .FALSE );
38
+ return classCandidate -> match (
39
+ matchCase (
40
+ () -> failure ("this class is not a supported by this TestEngine - " + classCandidate .getSimpleName ())),
41
+ matchCase (() -> isAbstract (classCandidate ), () -> failure ("no support for abstract classes" + classCandidate .getSimpleName ())),
42
+ matchCase (() -> isPrivate (classCandidate ), () -> failure ("no support for private classes" + classCandidate .getSimpleName ())),
43
+ matchCase (() -> isAnnotated (classCandidate , NanoTestClass .class ), () -> success (Boolean .TRUE )))
44
+ .ifFailed (msg -> LOGGER .info (msg ))
45
+ .ifPresent (b -> LOGGER .info ("selected class " + classCandidate ))
46
+ .getOrElse (() -> Boolean .FALSE );
48
47
}
49
48
50
49
protected static Predicate <Method > isTestMethod () {
@@ -54,7 +53,7 @@ protected static Predicate<Method> isTestMethod() {
54
53
if (ReflectionUtils .isAbstract (method )) return false ;
55
54
if (method .getParameterCount () > 0 ) return false ;
56
55
return AnnotationSupport .isAnnotated (method , NanoTest .class ) && method .getReturnType ()
57
- .equals (void .class );
56
+ .equals (void .class );
58
57
};
59
58
}
60
59
@@ -70,31 +69,31 @@ public TestDescriptor discover(EngineDiscoveryRequest request, UniqueId engineID
70
69
//TODO https://github.com/junit-team/junit5/issues/2001
71
70
request .getSelectorsByType (ClasspathRootSelector .class )
72
71
// .forEach(selector -> resolver().get().resolve(request,rootNode));
73
- .forEach (selector -> appendTestInRoot (rootNode , selector ));
72
+ .forEach (selector -> appendTestInRoot (rootNode , selector ));
74
73
75
74
request .getSelectorsByType (PackageSelector .class )
76
- .forEach (selector -> appendTestInPackage (selector .getPackageName (), rootNode ));
75
+ .forEach (selector -> appendTestInPackage (selector .getPackageName (), rootNode ));
77
76
78
77
request .getSelectorsByType (ClassSelector .class )
79
- .forEach (classSelector -> appendTestInClass (classSelector .getJavaClass (), rootNode ));
78
+ .forEach (classSelector -> appendTestInClass (classSelector .getJavaClass (), rootNode ));
80
79
81
80
request .getSelectorsByType (MethodSelector .class )
82
- .forEach (selector -> appendTestInMethod (selector .getJavaMethod (), rootNode ));
81
+ .forEach (selector -> appendTestInMethod (selector .getJavaMethod (), rootNode ));
83
82
84
83
return rootNode ;
85
84
}
86
85
87
86
private void appendTestInRoot (EngineDescriptor rootNode , ClasspathRootSelector selector ) {
88
87
URI classpathRoot = selector .getClasspathRoot ();
89
88
ReflectionUtils .findAllClassesInClasspathRoot (classpathRoot , isTestClass (), (name ) -> true )
90
- .forEach (clazz -> appendTestInClass (clazz , rootNode ));
89
+ .forEach (clazz -> appendTestInClass (clazz , rootNode ));
91
90
}
92
91
93
92
private void appendTestInMethod (Method javaMethod , EngineDescriptor rootNode ) {
94
93
Class <?> declaringClass = javaMethod .getDeclaringClass ();
95
94
if (isTestClass ().test (declaringClass )) {
96
95
final NanoEngineMethodTestDescriptor child = new NanoEngineMethodTestDescriptor (javaMethod , declaringClass ,
97
- rootNode .getUniqueId ());
96
+ rootNode .getUniqueId ());
98
97
rootNode .addChild (child );
99
98
}
100
99
}
@@ -107,10 +106,10 @@ private void appendTestInClass(Class<?> javaClass, EngineDescriptor rootNode) {
107
106
private void appendTestInPackage (String packageName , EngineDescriptor rootNode ) {
108
107
109
108
ReflectionSupport .findAllClassesInPackage (packageName , isTestClass (), name -> true )
110
- .stream ()
111
- .peek ((e ) -> logger ().info ("class in package -> " + e .getSimpleName ()))
112
- .map (javaClass -> new NanoEngineClassTestDescriptor (javaClass , rootNode .getUniqueId ()))
113
- .forEach (rootNode ::addChild );
109
+ .stream ()
110
+ .peek ((e ) -> logger ().info ("class in package -> " + e .getSimpleName ()))
111
+ .map (javaClass -> new NanoEngineClassTestDescriptor (javaClass , rootNode .getUniqueId ()))
112
+ .forEach (rootNode ::addChild );
114
113
}
115
114
116
115
@ Override
0 commit comments