io.cucumber.testng.TestNGCucumberRunner Maven / Gradle / Ivy
The newest version!
package io.cucumber.testng;
import io.cucumber.core.eventbus.EventBus;
import io.cucumber.core.exception.CucumberException;
import io.cucumber.core.feature.FeatureParser;
import io.cucumber.core.filter.Filters;
import io.cucumber.core.gherkin.Feature;
import io.cucumber.core.gherkin.Pickle;
import io.cucumber.core.options.Constants;
import io.cucumber.core.options.CucumberOptionsAnnotationParser;
import io.cucumber.core.options.CucumberProperties;
import io.cucumber.core.options.CucumberPropertiesParser;
import io.cucumber.core.options.RuntimeOptions;
import io.cucumber.core.plugin.PluginFactory;
import io.cucumber.core.plugin.Plugins;
import io.cucumber.core.resource.ClassLoaders;
import io.cucumber.core.runtime.BackendServiceLoader;
import io.cucumber.core.runtime.CucumberExecutionContext;
import io.cucumber.core.runtime.ExitStatus;
import io.cucumber.core.runtime.FeaturePathFeatureSupplier;
import io.cucumber.core.runtime.ObjectFactoryServiceLoader;
import io.cucumber.core.runtime.ObjectFactorySupplier;
import io.cucumber.core.runtime.ThreadLocalObjectFactorySupplier;
import io.cucumber.core.runtime.ThreadLocalRunnerSupplier;
import io.cucumber.core.runtime.TimeServiceEventBus;
import io.cucumber.core.runtime.UuidGeneratorServiceLoader;
import org.apiguardian.api.API;
import java.time.Clock;
import java.util.List;
import java.util.function.Predicate;
import java.util.function.Supplier;
import static io.cucumber.core.runtime.SynchronizedEventBus.synchronize;
import static io.cucumber.testng.TestCaseResultObserver.observe;
import static java.util.stream.Collectors.toList;
/**
* Glue code for running Cucumber via TestNG.
*
* Options can be provided in by (order of precedence):
*
* - Properties from {@link System#getProperties()}
* - Properties from in {@link System#getenv()}
* - Properties properties from {@code testng.xml}
* - Annotating the runner class with {@link CucumberOptions}
* - Properties from {@value Constants#CUCUMBER_PROPERTIES_FILE_NAME}
*
* For available properties see {@link Constants}.
*/
@API(status = API.Status.STABLE)
public final class TestNGCucumberRunner {
private final Predicate filters;
private final List features;
private final CucumberExecutionContext context;
/**
* Bootstrap the cucumber runtime
*
* @param clazz Which has the {@link CucumberOptions} and
* {@link org.testng.annotations.Test} annotations
*/
public TestNGCucumberRunner(Class> clazz) {
this(clazz, key -> null);
}
/**
* Bootstrap the cucumber runtime
*
* @param clazz Which has the {@link CucumberOptions} and
* {@link org.testng.annotations.Test} annotations
* @param properties additional properties (e.g. from {@code testng.xml}).
*/
@API(status = API.Status.STABLE, since = "6.11")
public TestNGCucumberRunner(Class> clazz, CucumberPropertiesProvider properties) {
// Parse the options early to provide fast feedback about invalid
// options
RuntimeOptions propertiesFileOptions = new CucumberPropertiesParser()
.parse(CucumberProperties.fromPropertiesFile())
.build();
RuntimeOptions annotationOptions = new CucumberOptionsAnnotationParser()
.withOptionsProvider(new TestNGCucumberOptionsProvider())
.parse(clazz)
.build(propertiesFileOptions);
RuntimeOptions testngPropertiesOptions = new CucumberPropertiesParser()
.parse(properties::get)
.build(annotationOptions);
RuntimeOptions environmentOptions = new CucumberPropertiesParser()
.parse(CucumberProperties.fromEnvironment())
.build(testngPropertiesOptions);
RuntimeOptions runtimeOptions = new CucumberPropertiesParser()
.parse(CucumberProperties.fromSystemProperties())
.enablePublishPlugin()
.build(environmentOptions);
Supplier classLoader = ClassLoaders::getDefaultClassLoader;
UuidGeneratorServiceLoader uuidGeneratorServiceLoader = new UuidGeneratorServiceLoader(classLoader,
runtimeOptions);
EventBus bus = synchronize(
new TimeServiceEventBus(Clock.systemUTC(), uuidGeneratorServiceLoader.loadUuidGenerator()));
FeatureParser parser = new FeatureParser(bus::generateId);
FeaturePathFeatureSupplier featureSupplier = new FeaturePathFeatureSupplier(classLoader, runtimeOptions,
parser);
Plugins plugins = new Plugins(new PluginFactory(), runtimeOptions);
ExitStatus exitStatus = new ExitStatus(runtimeOptions);
plugins.addPlugin(exitStatus);
ObjectFactoryServiceLoader objectFactoryServiceLoader = new ObjectFactoryServiceLoader(classLoader,
runtimeOptions);
ObjectFactorySupplier objectFactorySupplier = new ThreadLocalObjectFactorySupplier(objectFactoryServiceLoader);
BackendServiceLoader backendSupplier = new BackendServiceLoader(clazz::getClassLoader, objectFactorySupplier);
this.filters = new Filters(runtimeOptions);
ThreadLocalRunnerSupplier runnerSupplier = new ThreadLocalRunnerSupplier(runtimeOptions, bus, backendSupplier,
objectFactorySupplier);
this.context = new CucumberExecutionContext(bus, exitStatus, runnerSupplier);
// Start test execution now.
plugins.setSerialEventBusOnEventListenerPlugins(bus);
features = featureSupplier.get();
context.startTestRun();
context.runBeforeAllHooks();
features.forEach(context::beforeFeature);
}
public void runScenario(io.cucumber.testng.Pickle pickle) {
context.runTestCase(runner -> {
try (TestCaseResultObserver observer = observe(runner.getBus())) {
Pickle cucumberPickle = pickle.getPickle();
runner.runPickle(cucumberPickle);
observer.assertTestCasePassed();
}
});
}
/**
* Finishes test execution by Cucumber.
*/
public void finish() {
try {
context.runAfterAllHooks();
} finally {
context.finishTestRun();
}
}
/**
* @return returns the cucumber scenarios as a two dimensional array of
* {@link PickleWrapper} scenarios combined with their
* {@link FeatureWrapper} feature.
*/
public Object[][] provideScenarios() {
// Possibly invoked in a multi-threaded context
try {
return features.stream()
.flatMap(feature -> feature.getPickles().stream()
.filter(filters)
.map(cucumberPickle -> new Object[] {
new PickleWrapperImpl(new io.cucumber.testng.Pickle(cucumberPickle)),
new FeatureWrapperImpl(feature) }))
.collect(toList())
.toArray(new Object[0][0]);
} catch (CucumberException e) {
return new Object[][] { new Object[] { new CucumberExceptionWrapper(e), null } };
}
}
}