我正在尝试并行执行黄瓜功能文件 使用Cucumber-jvm插件自动生成测试运行程序 使用maven-surefire插件并行运行它们。运行时 命令“ MVN清洁测试”,我得到以下错误
下面是我的POM.xml,testng.xml文件和testRunners。
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="Suite" parallel="tests"> <!-- how many scenarios we can execute at a time is mentioned bt data-provider-thread-count-->
<test name="ChromeTest" thread-count="5">
<!-- <parameter name="browser" value="chrome"/>-->
<classes>
<class name="Parallel02IT"/>
<class name="Parallel01IT"/>
</classes>
</test> <!-- Test -->
<!-- <test name="new">
<packages>
<package name="target.generated-test-sources.cucumber.*"/>
<package name="target.test-classes.*"/>
</packages>
</test>-->
</suite> <!-- Suite -->
下面是我的POM.xml文件
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.parallel</groupId>
<artifactId>com.parallel.testng</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>com.github.temyers</groupId>
<artifactId>cucumber-jvm-parallel-plugin</artifactId>
<version>2.1.0</version>
<executions>
<execution>
<id>generateRunners</id>
<phase>generate-test-sources</phase>
<goals>
<goal>generateRunners</goal>
</goals>
<configuration>
<!-- Mandatory -->
<!-- comma separated list of package names to scan for glue code -->
<glue>stepdefinitions</glue>
<outputDirectory>${project.build.directory}/generated-test-sources/cucumber</outputDirectory>
<!-- The directory, which must be in the root of the runtime classpath, containing your feature files. -->
<featuresDirectory>C:\Users\mbethu\IdeaProjects\comparalleltestng\src\main\input\features</featuresDirectory>
<!-- Directory where the cucumber report files shall be written -->
<cucumberOutputDir>target/cucumber</cucumberOutputDir>
<!-- comma separated list of output formats json,html,rerun.txt -->
<format>html</format>
<!-- CucumberOptions.strict property -->
<strict>false</strict>
<!-- CucumberOptions.monochrome property -->
<monochrome>true</monochrome>
<!-- The tags to run, maps to CucumberOptions.tags property you can pass ANDed tags like "@tag1","@tag2" and ORed tags like "@tag1,@tag2,@tag3" -->
<!-- <tags></tags>-->
<!-- If set to true, only feature files containing the required tags shall be generated. -->
<filterFeaturesByTags>false</filterFeaturesByTags>
<!-- Generate TestNG runners instead of default JUnit ones. -->
<useTestNG>true</useTestNG>
<!-- The naming scheme to use for the generated test classes. One of 'simple' or 'feature-title' -->
<namingScheme>simple</namingScheme>
<!-- The class naming pattern to use. Only required/used if naming scheme is 'pattern'.-->
<namingPattern>Parallel{c}IT</namingPattern>
<!-- One of [SCENARIO, FEATURE]. SCENARIO generates one runner per scenario. FEATURE generates a runner per feature. -->
<parallelScheme>FEATURE</parallelScheme>
<!-- This is optional, required only if you want to specify a custom template for the generated sources (this is a relative path) -->
<!--<customVmTemplate>src/test/resources/cucumber-custom-runner.vm</customVmTemplate>-->
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<fork>true</fork>
<executable>C:\Program Files\Java\jdk1.8.0_201\bin\javac.exe</executable>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version>
<configuration>
<!--<forkCount>5</forkCount>
<reuseForks>true</reuseForks>-->
<suiteXmlFiles>
<suiteXmlFile>src\main\resources\testng.xml</suiteXmlFile>
</suiteXmlFiles>
<testFailureIgnore>true</testFailureIgnore>
<parallel>classes</parallel>
<threadCount>10</threadCount>
<!-- <testErrorIgnore>true</testErrorIgnore>-->
<includes>
<include>src\test\java\testng.xml</include>
<!--<include>**/*IT.class</include>-->
</includes>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.141.59</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-server -->
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-server</artifactId>
<version>3.141.59</version>
</dependency>
<!-- https://mvnrepository.com/artifact/io.cucumber/gherkin -->
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>gherkin</artifactId>
<version>3.2.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/io.cucumber/cucumber-jvm -->
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-jvm</artifactId>
<version>4.3.0</version>
<type>pom</type>
</dependency>
<!-- https://mvnrepository.com/artifact/org.testng/testng -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.14.3</version>
<scope>compile</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.maven.surefire/surefire-testng -->
<!-- <dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-testng</artifactId>
<version>2.22.1</version>
</dependency>-->
<!-- https://mvnrepository.com/artifact/info.cukes/cucumber-testng -->
<!-- <dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-testng</artifactId>
<version>1.2.5</version>
</dependency>-->
<!-- https://mvnrepository.com/artifact/info.cukes/cucumber-java -->
<!-- <dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-java</artifactId>
<version>1.2.5</version>
</dependency>-->
<!-- https://mvnrepository.com/artifact/info.cukes/cucumber-jvm -->
<!-- <dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-jvm</artifactId>
<version>1.2.5</version>
<type>pom</type>
</dependency>-->
<!-- https://mvnrepository.com/artifact/info.cukes/cucumber-jvm-deps -->
<!-- <dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-jvm-deps</artifactId>
<version>1.0.5</version>
<scope>provided</scope>
</dependency>-->
<!-- https://mvnrepository.com/artifact/info.cukes/gherkin -->
<!-- <dependency>
<groupId>info.cukes</groupId>
<artifactId>gherkin</artifactId>
<version>2.12.2</version>
<scope>provided</scope>
</dependency>
-->
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-java</artifactId>
<version>4.2.3</version>
</dependency>
<!-- https://mvnrepository.com/artifact/io.cucumber/cucumber-testng -->
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-testng</artifactId>
<version>2.0.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/io.cucumber/cucumber-guice -->
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-guice</artifactId>
<version>4.3.0</version>
</dependency>
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-junit</artifactId>
<version>4.2.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>datatable</artifactId>
<version>1.1.12</version>
</dependency>
<!-- https://mvnrepository.com/artifact/io.cucumber/cucumber-core -->
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-core</artifactId>
<version>4.3.0</version>
</dependency>
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-picocontainer</artifactId>
<version>4.2.3</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
Below are automatically generated testRunners
import cucumber.api.CucumberOptions;
import cucumber.api.testng.AbstractTestNGCucumberTests;
@CucumberOptions(strict = false,
features = {"C:/Users/mbethu/IdeaProjects/comparalleltestng/src/main/input/features/HomePage.feature"},
plugin = {"html:target/cucumber/1.html"},
monochrome = true,
tags = {},
glue = { "stepdefinitions" })
public class Parallel01IT extends AbstractTestNGCucumberTests {
}
[INFO]扫描项目... [INFO] [INFO] ------------------ < com.parallel:com.parallel.testng> ------------------ [INFO]构建 com.parallel.testng 1.0-SNAPSHOT [INFO] -------------------------------- [jar] --------------- ------------------ [INFO] [INFO] --- maven-clean-plugin:2.5:clean(默认清理)@ com.parallel.testng- [INFO] [INFO] --- maven-resources-plugin:2.6:resources (默认资源)@ com.parallel.testng --- [警告]使用平台 编码(实际上是Cp1252)来复制已过滤的资源,即build是 取决于平台! [INFO]正在复制1个资源[INFO] [INFO]- maven-compiler-plugin:3.0:compile(默认编译)@ com.parallel.testng --- [INFO]没有源可编译[INFO] [INFO]- cumming-jvm-parallel-plugin:2.1.0:generateRunners(generateRunners)@ com.parallel.testng --- [信息]添加 C:\ Users \ mbethu \ IdeaProjects \ complextestng \ target \ generated-test-sources \ cucumber 测试编译源根[INFO] [INFO]- maven-resources-plugin:2.6:testResources(default-testResources)@ com.parallel.testng --- [警告]使用平台编码(Cp1252 实际上)以复制过滤的资源,即构建平台 依赖! [INFO]跳过不存在的resourceDirectory C:\ Users \ mbethu \ IdeaProjects \ complextestng \ src \ test \ resources [INFO] [INFO] --- maven-compiler-plugin:3.0:testCompile (default-testCompile)@ com.parallel.testng --- [信息]更改 检测到-重新编译模块! [警告]文件编码还没有 使用平台编码Cp1252进行设置,即build is platform 依赖! [INFO]将2个源文件编译为 C:\ Users \ mbethu \ IdeaProjects \ complextestng \ target \ test-classes [INFO] [INFO] --- maven-surefire-plugin:2.22.1:test(默认测试)@ com.parallel.testng --- [INFO] [INFO] -------------------------------------------------- ----- [INFO]测试[INFO] -------------------------------------- ----------------- [INFO]运行TestSuite [实用程序] [错误] [错误] java.lang.NullPointerException 在cucumber.api.testng.AbstractTestNGCucumberTests.scenarios(AbstractTestNGCucumberTests.java:31) 在sun.reflect.NativeMethodAccessorImpl.invoke0(本机方法)处 在sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) 在sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 在java.lang.reflect.Method.invoke(Method.java:498) 在org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:124) 在org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:74) 在org.testng.internal.MethodInvocationHelper.invokeMethodNoCheckedException(MethodInvocationHelper.java:45) 在org.testng.internal.MethodInvocationHelper.invokeDataProvider(MethodInvocationHelper.java:131) 在org.testng.internal.Parameters.handleParameters(Parameters.java:706) 在org.testng.internal.ParameterHandler.handleParameters(ParameterHandler.java:49) 在org.testng.internal.ParameterHandler.createParameters(ParameterHandler.java:37) 在org.testng.internal.Invoker.invokeTestMethods(Invoker.java:924) 在org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:125) 在org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:109) 在java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) 在java.util.concurrent.ThreadPoolExecutor $ Worker.run(ThreadPoolExecutor.java:624) 在java.lang.Thread.run(Thread.java:748)
[实用程序] [错误] [错误] java.lang.NullPointerException 在cucumber.api.testng.AbstractTestNGCucumberTests.scenarios(AbstractTestNGCucumberTests.java:31) 在sun.reflect.NativeMethodAccessorImpl.invoke0(本机方法)处 在sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) 在sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 在java.lang.reflect.Method.invoke(Method.java:498) 在org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:124) 在org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:74) 在org.testng.internal.MethodInvocationHelper.invokeMethodNoCheckedException(MethodInvocationHelper.java:45) 在org.testng.internal.MethodInvocationHelper.invokeDataProvider(MethodInvocationHelper.java:131) 在org.testng.internal.Parameters.handleParameters(Parameters.java:706) 在org.testng.internal.ParameterHandler.handleParameters(ParameterHandler.java:49) 在org.testng.internal.ParameterHandler.createParameters(ParameterHandler.java:37) 在org.testng.internal.Invoker.invokeTestMethods(Invoker.java:924) 在org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:125) 在org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:109) 在java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) 在java.util.concurrent.ThreadPoolExecutor $ Worker.run(ThreadPoolExecutor.java:624) 在java.lang.Thread.run(Thread.java:748)
[ERROR]测试运行:6,失败:4,错误:0,跳过:2,时间 经过:0.767 s <<<故障! -在TestSuite中[错误] setUpClass(Parallel01IT)经过的时间:0.51 s <<<失败! java.lang.NoSuchMethodError: 黄瓜。运行时。运行时。(Lcucumber / runtime / io / ResourceLoader; Lcucumber / runtime / ClassFinder; Ljava / lang / ClassLoader; Lcucumber / runtime / RuntimeOptions;)V
[错误] setUpClass(Parallel02IT)经过的时间:0.511秒<<<失败! java.lang.NoSuchMethodError: 黄瓜。运行时。运行时。(Lcucumber / runtime / io / ResourceLoader; Lcucumber / runtime / ClassFinder; Ljava / lang / ClassLoader; Lcucumber / runtime / RuntimeOptions;)V
[错误] tearDownClass(Parallel01IT)经过的时间:0.766 s <<< 失败! java.lang.NullPointerException
[错误] tearDownClass(Parallel02IT)经过的时间:0.766 s <<< 失败! java.lang.NullPointerException
[INFO] [INFO]结果:[INFO] [ERROR]失败:[ERROR]
Parallel01IT> AbstractTestNGCucumberTests.setUpClass:16»NoSuchMethod 黄瓜... [错误]
Parallel01IT> AbstractTestNGCucumberTests.tearDownClass:36» NullPointer [ERROR]
Parallel02IT> AbstractTestNGCucumberTests.setUpClass:16»NoSuchMethod 黄瓜... [错误]
Parallel02IT> AbstractTestNGCucumberTests.tearDownClass:36» NullPointer [INFO] [ERROR]测试运行:6,失败:4,错误:0, 已跳过:2 [INFO] [ERROR]有测试失败。请参阅 C:\ Users \ mbethu \ IdeaProjects \ complextestng \ target \ surefire-reports 对于单个测试结果。请参考转储文件(如果有) 存在)[date] .dump,[date] -jvmRun [N] .dump和[date] .dumpstream。 [信息] -------------------------------------------------- ---------------------- [INFO]成功建立[INFO] -------------------------------------------------- ---------------------- [INFO]总时间:5.143 s [INFO]完成于:
2019-04-22T23:12:30 + 05:30 [INFO]
答案 0 :(得分:1)
在https://github.com/temyers/cucumber-jvm-parallel-plugin上您可以找到
从cucumber-jvm:4.0.0开始,并行执行本机支持 黄瓜。因此,建议升级到Cucumber 4.0.0,这 插件不再维护。
请注意,最新版本为4.3.0 https://mvnrepository.com/artifact/io.cucumber/cucumber-testng/4.3.0。您的pom文件中有多个不同的版本-请统一使用。通常,您的pom文件非常混乱。您可能需要的只是:
<!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-server -->
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-server</artifactId>
<version>3.141.59</version>
</dependency>
<!-- https://mvnrepository.com/artifact/io.cucumber/cucumber-java -->
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-java</artifactId>
<version>4.3.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/io.cucumber/cucumber-testng -->
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-testng</artifactId>
<version>4.3.0</version>
</dependency>
对于并行执行,请检查https://github.com/cucumber/cucumber-jvm/blob/master/testng/README.md#parallel-execution