io.github.selcukes.testng.SelcukesTestNGRunner Maven / Gradle / Ivy
/*
* Copyright (c) Ramesh Babu Prudhvi.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.github.selcukes.testng;
import io.cucumber.testng.CucumberPropertiesProvider;
import io.cucumber.testng.FeatureWrapper;
import io.cucumber.testng.Pickle;
import io.cucumber.testng.PickleWrapper;
import io.cucumber.testng.TestNGCucumberRunner;
import org.testng.ITestContext;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
import org.testng.xml.XmlTest;
import java.util.Arrays;
import java.util.Objects;
import java.util.function.Predicate;
public class SelcukesTestNGRunner {
protected static final Predicate isParallel = pickle -> pickle.getTags().contains("@parallel");
protected TestNGCucumberRunner testNGCucumberRunner;
@BeforeClass(alwaysRun = true)
public void setUpClass(ITestContext context) {
XmlTest currentXmlTest = context.getCurrentXmlTest();
Objects.requireNonNull(currentXmlTest);
CucumberPropertiesProvider properties = currentXmlTest::getParameter;
this.testNGCucumberRunner = new TestNGCucumberRunner(this.getClass(), properties);
}
@Test(groups = "cucumber", description = "Runs Cucumber Scenarios", dataProvider = "parallelScenarios")
public void runParallelScenario(PickleWrapper pickleWrapper, FeatureWrapper featureWrapper) {
testNGCucumberRunner.runScenario(pickleWrapper.getPickle());
}
@DataProvider(parallel = true)
public Object[][] parallelScenarios() {
if (testNGCucumberRunner == null) {
return new Object[0][0];
}
return filter(testNGCucumberRunner.provideScenarios(), isParallel);
}
@Test(groups = "cucumber",
description = "Runs Cucumber Scenarios in the Serial group",
dataProvider = "serialScenarios")
public void runSerialScenario(PickleWrapper pickleWrapper, FeatureWrapper featureWrapper) {
testNGCucumberRunner.runScenario(pickleWrapper.getPickle());
}
@DataProvider
public Object[][] serialScenarios() {
if (testNGCucumberRunner == null) {
return new Object[0][0];
}
return filter(testNGCucumberRunner.provideScenarios(), isParallel.negate());
}
@AfterClass(alwaysRun = true)
public void tearDownClass() {
if (testNGCucumberRunner == null) {
return;
}
testNGCucumberRunner.finish();
}
protected Object[][] filter(Object[][] scenarios, Predicate accept) {
return Arrays.stream(scenarios).filter(objects -> {
PickleWrapper candidate = (PickleWrapper) objects[0];
return accept.test(candidate.getPickle());
}).toArray(Object[][]::new);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy