我有一个带有黄瓜和 maven 的项目,我也在使用 JUnit。
我能够从 Eclipse 成功运行和构建我的项目。
现在我想从另一个系统中的命令行运行测试,它(应该)没有安装 eclipse 或 cucumber。我有一个想法,我们可以从 jar 创建一个 JAR,我们可以通过 java cli 命令运行测试。
下面是我试图从中运行测试的组合,我也在粘贴 pom.xml 和 RunCukesTest.java 文件。
pom.xml
<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>pmc</groupId>
<artifactId>se</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>storeEnabler</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-java</artifactId>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-testng</artifactId>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-junit</artifactId>
<version>1.2.4</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>2.52.0</version>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>io.appium</groupId>
<artifactId>java-client</artifactId>
<version>3.1.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.9</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.11-beta3</version>
</dependency>
<dependency>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
<version>2.0.2</version>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.8.0</version>
</dependency>
</dependencies>
<build>
<testResources>
<testResource>
<directory>${project.basedir}/src/test/java</directory>
</testResource>
<testResource>
<directory>${project.basedir}/src/test/resource</directory>
</testResource>
</testResources>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<fork>true</fork>
<executable>C:\Program Files\Java\jdk1.8.0_60\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.18</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit47</artifactId>
<version>2.18</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>cucumber.api.cli.Main</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
RunCukesTest.java
package se.stepDefinations;
import org.junit.runner.RunWith;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
@RunWith(Cucumber.class)
@CucumberOptions(features = "src/test/resource/features/Printing.feature:117", plugin = { "pretty",
"html:target/cucumber-html-report" }, glue = { "se.stepDefinations" }, tags = {})
public class RunCukesTest {
public static void main(String[] args) throws Exception {
}
}
- 我在类路径中添加了 JUNIT Jar。
我以两种方式生成罐子,
1)使用 -> 项目 -> 导出 -> JAR 文件导出 JAR 在最后一步中选择 MAIN 类为:RunCukesTest 因为我在这里为入口点定义了主方法(我们在这个类中需要这个主方法吗???)
导出后,我在命令下运行,
1.1java -jar xyz.jar
我收到错误:找到 NoClassDef:org/junit/runner/JUnitCore
所以我这样运行:
1.2java -cp xyz.jar;junit-4.12.jar org.junit.runner.JUnitCore
它说,
JUnit version 4.12
Time:0.001
OK(0 tests)
它仍然没有工作,所以我最后附加了 RunCukesTest 文件命名空间,
1.3java -cp xyz.jar;junit-4.12.jar org.junit.runner.JUnitCore se.stepDefinations.RunCukesTest
它给了我错误:类型 cucumber.api.junit.Cucumber 不存在
2) 所以我放弃了导出 jar 的选项,现在我正在尝试使用来自 maven Build 的 JAR。我选择了使用 Maven Build 运行的 POM,它在目标文件夹中创建了 2 个 jar,
1 名称为 xyz-0.0.1-SNAPSHOT,大小为 16kb,另一个名称为
xyz-0.0.1-SNAPSHOT-jar-with-dependencies,大小为 33mb
1)我使用依赖项运行更大的文件
java -jar xyz-0.0.1-SNAPSHOT-jar-with-dependencies.jar
它给了我信息:
没有功能目录的路径
2)所以我尝试将命名空间附加到 RunCukesTest 文件,
java -jar xyz-0.0.1-SNAPSHOT-jar-with-dependencies.jar se.stepDefinations.RunCukesTest
我收到一个错误:找不到文件或目录
,当然正如错误所说,它试图在目标文件夹中找到一个功能。
同样,我想在任何其他计算机(如可执行文件)中独立于任何此类项目文件依赖项运行 JAR。
任何帮助,将不胜感激。谢谢。