私はキュウリとメイブンのプロジェクトを持っていますが、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 {
}
}
私は2つの方法でjarファイルを生成しています。
1)を使用してJARをエクスポートする->プロジェクト->エクスポート-> JARファイル最後のステップでMAINクラスを選択:RunCukesTestとして、ここでエントリポイントのメインメソッドを定義しました(このクラスにこのメインメソッドが必要ですか???)
エクスポート後、以下のコマンドを実行しています、
1.1 Java -jar xyz.jar
エラーが発生する:NoClassDefが見つかりました: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ビルドからJARを使用しようとしています。 Mavenビルドで実行するPOMを選択し、ターゲットフォルダーに2つのjarを作成しました。
1つはxyz-0.0.1-SNAPSHOTという名前で16kb、もう1つは2番目の
xyz-0.0.1-SNAPSHOT-jar-with-dependencies with 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を実行したいと思います。
任意の助けいただければ幸いです。ありがとう。
あなたが考えている問題を2つの部分に分けます。
Mavenを使用して実行可能なjarを作成するには、さまざまな方法があります。これを行う1つの方法を次に示します。 http://www.thinkcode.se/blog/2011/03/05/create-an-executable-jar-from-maven
これは、次のようなコマンドラインからの実行にのみ焦点を当てた小さな例です。
Java -jar実行可能ファイル-example.jar
この例には、すべての依存関係が含まれています。それらはすべて同じjarファイルにバンドルされています。追加のjarファイルは必要ありません。
次のステップは、メインメソッドからCucumberを実行することです。私のアプローチは、Cucumberのコマンドラインバージョンで使用されるCucumber mainメソッドを実行するmainを記述することです。コマンドラインからキュウリを実行するために使用される主なメソッドは、cucumber-Java
ライブラリにあります。 cucumber.api.cli.Main
にあります
別のメインメソッドからメインメソッドを実行するには、次のようにします。
public static void main(String[] args) throws Throwable {
String[] arguments = {"foo", "bar"};
cucumber.api.cli.Main.main(arguments);
}
ここで、argumentsは、常にCucumberを実行したいコマンドライン引数です。
これらの2つのステップを考えると、jarを実行できる場所であればどこでも、独自の実行可能jarからCucumberを実行できるはずです。
キュウリのライブラリバージョンをpomで混合していることに注意してください。すべてのライブラリの最新バージョンを使用します。 cucumber-Java
、cucumber-testng
、cucumber-junit
を比較してください。 Cucumberの最新バージョンは1.2.4です。それらすべてに使用します。
コマンドラインから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());
}
}