All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.specsy.junit5.TestNotifierAdapter Maven / Gradle / Ivy

There is a newer version: 2.3.3
Show newest version
// Copyright © 2010-2016, Esko Luontola 
// This software is released under the Apache License 2.0.
// The license text is at http://www.apache.org/licenses/LICENSE-2.0

package org.specsy.junit5;

import fi.jumi.api.drivers.TestNotifier;
import org.junit.platform.engine.EngineExecutionListener;
import org.junit.platform.engine.TestDescriptor;
import org.junit.platform.engine.TestExecutionResult;
import org.opentest4j.MultipleFailuresError;

import java.util.LinkedList;
import java.util.List;

public class TestNotifierAdapter implements TestNotifier {
    private final TestDescriptor descriptor;
    private final List failures = new LinkedList<>();
    private EngineExecutionListener listener;

    public TestNotifierAdapter(EngineExecutionListener listener, TestDescriptor descriptor) {
        this.descriptor = descriptor;
        this.listener = listener;
    }

    @Override
    public void fireFailure(Throwable cause) {
        failures.add(cause);
    }

    @Override
    public void fireTestFinished() {
        listener.executionFinished(descriptor, toResult(failures));
    }

    private static TestExecutionResult toResult(List failures) {
        if (failures.isEmpty()) {
            return TestExecutionResult.successful();
        } else {
            return TestExecutionResult.failed(mergeFailures(failures));
        }
    }

    private static Throwable mergeFailures(List failures) {
        if (failures.isEmpty()) {
            return null;
        }
        if (failures.size() == 1) {
            return failures.get(0);
        }
        // XXX: JUnit 5 cannot express the existence of multiple non-assertion failures
        MultipleFailuresError multiple = new MultipleFailuresError(null);
        for (Throwable failure : failures) {
            if (failure instanceof AssertionError) {
                multiple.addFailure((AssertionError) failure);
            } else {
                multiple.addFailure(new AssertionError(failure));
            }
        }
        return multiple;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy