FunctionalJavaFXRunner.java
001 /*
002  * Copyright 2008-2017 the original author or authors.
003  *
004  * Licensed under the Apache License, Version 2.0 (the "License");
005  * you may not use this file except in compliance with the License.
006  * You may obtain a copy of the License at
007  *
008  *     http://www.apache.org/licenses/LICENSE-2.0
009  *
010  * Unless required by applicable law or agreed to in writing, software
011  * distributed under the License is distributed on an "AS IS" BASIS,
012  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013  * See the License for the specific language governing permissions and
014  * limitations under the License.
015  */
016 package griffon.javafx.test;
017 
018 import org.junit.internal.runners.statements.Fail;
019 import org.junit.runner.notification.Failure;
020 import org.junit.runner.notification.RunListener;
021 import org.junit.runner.notification.RunNotifier;
022 import org.junit.runners.BlockJUnit4ClassRunner;
023 import org.junit.runners.model.FrameworkMethod;
024 import org.junit.runners.model.InitializationError;
025 import org.junit.runners.model.Statement;
026 
027 import javax.annotation.Nonnull;
028 import java.lang.reflect.Field;
029 import java.util.ArrayList;
030 import java.util.Collections;
031 import java.util.List;
032 
033 import static java.util.Collections.unmodifiableList;
034 import static java.util.Comparator.comparing;
035 import static org.junit.runner.Description.createTestDescription;
036 
037 /**
038  @author Andres Almiray
039  @since 2.6.0
040  */
041 public class FunctionalJavaFXRunner extends BlockJUnit4ClassRunner {
042     private GriffonTestFXClassRule testFXClassRule;
043 
044     public FunctionalJavaFXRunner(@Nonnull Class<?> klassthrows InitializationError {
045         super(klass);
046     }
047 
048     private static class FailureListener extends RunListener {
049         private final GriffonTestFXClassRule testfx;
050 
051         private FailureListener(GriffonTestFXClassRule testfx) {
052             this.testfx = testfx;
053         }
054 
055         @Override
056         public void testFailure(Failure failurethrows Exception {
057             testfx.setFailures(true);
058         }
059     }
060 
061     @Override
062     protected List<FrameworkMethod> computeTestMethods() {
063         List<FrameworkMethod> methods = new ArrayList<>(super.computeTestMethods());
064         Collections.sort(methods, comparing(FrameworkMethod::getName));
065         return unmodifiableList(methods);
066     }
067 
068     @Override
069     protected void runChild(FrameworkMethod method, RunNotifier notifier) {
070         try {
071             resolveTestFXClassRule(method);
072             notifier.addFirstListener(new FailureListener(testFXClassRule));
073         catch (Exception e) {
074             notifier.fireTestFailure(new Failure(createTestDescription(method.getDeclaringClass(), method.getName()), e));
075         }
076         super.runChild(method, notifier);
077     }
078 
079     @Override
080     protected Statement withBefores(FrameworkMethod method, Object target, Statement statement) {
081         try {
082             resolveTestFXClassRule(method);
083             testFXClassRule.injectMembers(target);
084         catch (Exception e) {
085             return new Fail(e);
086         }
087         return super.withBefores(method, target, statement);
088     }
089 
090     @Override
091     protected boolean isIgnored(FrameworkMethod child) {
092         if (super.isIgnored(child)) {
093             return true;
094         }
095 
096         try {
097             resolveTestFXClassRule(child);
098             return testFXClassRule.hasFailures();
099         catch (Exception e) {
100             return true;
101         }
102     }
103 
104     private void resolveTestFXClassRule(FrameworkMethod childthrows NoSuchFieldException, IllegalAccessException {
105         if (testFXClassRule == null) {
106             for (Field field : child.getDeclaringClass().getFields()) {
107                 if (GriffonTestFXClassRule.class.isAssignableFrom(field.getType())) {
108                     testFXClassRule = (GriffonTestFXClassRulefield.get(null);
109                     return;
110                 }
111             }
112             throw new IllegalStateException("Class " + child.getDeclaringClass().getName() " does not define a field of type " + GriffonTestFXClassRule.class.getName());
113         }
114     }
115 }