运行 Cucumber 直接从可执行 jar 进行测试

Running Cucumber tests directly from executable jar

我有一个使用 Cucumber 和 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 {


    }
}

我用两种方式生成 jar,

1) 使用 -> 项目 -> 导出 -> JAR 文件导出 JAR 在最后一步中选择 MAIN Class 作为:RunCukesTest 因为我已经在此处为入口点定义了 main 方法(我们是否需要此 main 方法 class???)

导出后,我运行正在命令下方,

1.1 java -jar xyz.jar 我收到错误消息:未找到 ClassDef:org/junit/runner/JUnitCore

所以我 运行 这样 :

1.2 java -cp xyz.jar;junit-4.12.jar org.junit.runner.JUnitCore 它说,

JUnit version 4.12
Time:0.001
OK(0 tests) 

还是不行,所以我在最后追加了RunCukesTest文件命名空间,
1.3 java -cp xyz.jar;junit-4.12.jar org.junit.runner.JUnitCore se.stepDefinations.RunCukesTest
它给了我错误:Type cucumber.api.junit.Cucumber not present

2) 所以我放弃了导出 jar 的选项,现在我正在尝试使用 Maven Build 中的 JAR。 我使用 Maven Build 选择了 运行 的 POM,它在目标文件夹中创建了 2 个 jar,

1 with name xyz-0.0.1-SNAPSHOT with 16kb another with 2nd with
xyz-0.0.1-SNAPSHOT-jar-with-dependencies with 33mb

1) 我 运行 具有使用

依赖项的更大文件
java -jar xyz-0.0.1-SNAPSHOT-jar-with-dependencies.jar

它给了我消息:

Got no path to feature directory

2) 所以我尝试将命名空间附加到 RunCukesTest 文件,

java -jar xyz-0.0.1-SNAPSHOT-jar-with-dependencies.jar se.stepDefinations.RunCukesTest

I received an error : not a file or directory found

,正如错误所说,它正在尝试在目标文件夹中查找功能。

同样,我想 运行 JAR 独立于任何其他计算机中的任何此类项目文件依赖项,如可执行文件。

如有任何帮助,我们将不胜感激。谢谢。

我会把你想到的问题分为两部分。

  • 创建可执行 jar
  • 运行 来自你自己的 main 方法的 Cucumber

可以通过不同的方式使用 Maven 创建可执行 jar。这里描述了一种方法: http://www.thinkcode.se/blog/2011/03/05/create-an-executable-jar-from-maven

这是一个小示例,仅专注于从命令行执行某些操作,如下所示:

java -jar 可执行文件-example.jar

该示例包含所有依赖项。它们都捆绑在同一个罐子里。不需要任何额外的罐子。

下一步是从 main 方法执行 Cucumber。我的方法是编写一个 main 来执行用于 Cucumber 命令行版本的 Cucumber main 方法。用于从命令行 运行 cucumber 的主要方法存在于 cucumber-java 库中。您会在 cucumber.api.cli.Main

找到它

运行从另一个主要方法中调用一个主要方法是这样完成的:

public static void main(String[] args) throws Throwable {
    String[] arguments = {"foo", "bar"};
    cucumber.api.cli.Main.main(arguments);
}

其中参数是您总是希望用来执行 Cucumber 的命令行参数。

鉴于这两个步骤,您应该能够从您自己的可执行 jar 执行 Cucumber,只要您能够执行 jar。

请注意,您在 pom.xml 中混合了 Cucumber 的库版本。我会使用所有库的最新版本。比较 cucumber-javacucumber-testngcucumber-junit。最新的 Cucumber 版本是 1.2.4。我会为他们所有人使用它。

有关从命令行 运行ning Cucumber 的更多信息,请参见此处:https://cucumber.io/docs/cucumber/api/#from-the-command-line

@SpringBootApplication
public class Application {

    public static void main(final String[] args) throws Throwable {
        // SpringApplication.run(TestApplication.class, args);
        JUnitCore.main(CucumberTest.class.getCanonicalName());
    }

}

我想扩展已接受的答案以支持 Gradle,因为这可能对某些人有帮助。

鉴于这是您项目的结构

  • .root
    • 源/
      • 主要/
        • java/ --> 将您的 .java 文件放在这里
          • CukesRunner.java --> 这是你的主文件
        • 资源
          • features/ --> 将您的 .feature 文件放在这里

build.gradle 文件应该如下所示:


    apply plugin: 'java'
    
    sourceSets {
        main {
            java {
                srcDirs = ['src/main/java']
            }
            resources {
                srcDirs = ['src/main/resources']
            }
        }
    }
    
    dependencies {
         // Include your dependencies here
         compile '...'
     }
    
    configurations {
        cucumberRuntime {
            extendsFrom compile
        }
    }
    
    jar {
        from {
            // Package all dependencies in the .jar
            configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
        }
        manifest {
            // Indicate the main class for the .jar file
            attributes 'Main-Class': 'CukesRunner'
        }
    }

然后您可以自定义您的 CukesRunner.java 就像接受的建议建议一样,但请确保调用您与 jar 文件一起压缩的功能:

public class CukesRunner {
    
    public static void main(String[] args) throws Throwable {
        final String[] arguments = new String[]{
                "--glue", "<my Java classes packages reference>",
                "classpath:features" // This will look for the classpath inside the jar file
        };
        cucumber.api.cli.Main.main(arguments);
    }

}