BAEL-4659: Upgrade Cucumber to 6.8.0 (#10115)
This commit is contained in:
parent
67e2165bb6
commit
be48134840
@ -65,13 +65,13 @@
|
|||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>info.cukes</groupId>
|
<groupId>io.cucumber</groupId>
|
||||||
<artifactId>cucumber-java</artifactId>
|
<artifactId>cucumber-java</artifactId>
|
||||||
<version>${cucumber.version}</version>
|
<version>${cucumber.version}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>info.cukes</groupId>
|
<groupId>io.cucumber</groupId>
|
||||||
<artifactId>cucumber-junit</artifactId>
|
<artifactId>cucumber-junit</artifactId>
|
||||||
<version>${cucumber.version}</version>
|
<version>${cucumber.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
@ -105,56 +105,44 @@
|
|||||||
<filtering>true</filtering>
|
<filtering>true</filtering>
|
||||||
</resource>
|
</resource>
|
||||||
</resources>
|
</resources>
|
||||||
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-failsafe-plugin</artifactId>
|
|
||||||
<version>${maven-failsafe-plugin.version}</version>
|
|
||||||
<configuration>
|
|
||||||
<parallel>classes</parallel>
|
|
||||||
<threadCount>4</threadCount>
|
|
||||||
</configuration>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<goals>
|
|
||||||
<goal>integration-test</goal>
|
|
||||||
<goal>verify</goal>
|
|
||||||
</goals>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<groupId>com.github.temyers</groupId>
|
|
||||||
<artifactId>cucumber-jvm-parallel-plugin</artifactId>
|
|
||||||
<version>5.0.0</version>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<id>generateRunners</id>
|
|
||||||
<phase>generate-test-sources</phase>
|
|
||||||
<goals>
|
|
||||||
<goal>generateRunners</goal>
|
|
||||||
</goals>
|
|
||||||
<configuration>
|
|
||||||
<glue>
|
|
||||||
<package>com.baeldung.rest.cucumber</package>
|
|
||||||
</glue>
|
|
||||||
<featuresDirectory>src/test/resources/Feature/</featuresDirectory>
|
|
||||||
<parallelScheme>SCENARIO</parallelScheme>
|
|
||||||
</configuration>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
|
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
<profiles>
|
||||||
|
<profile>
|
||||||
|
<id>parallel</id>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-failsafe-plugin</artifactId>
|
||||||
|
<version>${maven-failsafe-plugin.version}</version>
|
||||||
|
<configuration>
|
||||||
|
<includes>
|
||||||
|
<include>CucumberIntegrationTest.java</include>
|
||||||
|
</includes>
|
||||||
|
<parallel>methods</parallel>
|
||||||
|
<threadCount>2</threadCount>
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<goals>
|
||||||
|
<goal>integration-test</goal>
|
||||||
|
<goal>verify</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
|
</profiles>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<!-- util -->
|
<!-- util -->
|
||||||
<guava.version>19.0</guava.version>
|
<guava.version>19.0</guava.version>
|
||||||
|
|
||||||
<!-- testing -->
|
<!-- testing -->
|
||||||
<rest-assured.version>2.9.0</rest-assured.version>
|
<rest-assured.version>2.9.0</rest-assured.version>
|
||||||
<cucumber.version>1.2.5</cucumber.version>
|
<cucumber.version>6.8.0</cucumber.version>
|
||||||
<wiremock.version>2.21.0</wiremock.version>
|
<wiremock.version>2.21.0</wiremock.version>
|
||||||
<karate.version>0.6.1</karate.version>
|
<karate.version>0.6.1</karate.version>
|
||||||
|
|
||||||
|
@ -1,10 +0,0 @@
|
|||||||
Feature: Testing a REST API
|
|
||||||
Users should be able to submit GET and POST requests to a web service, represented by WireMock
|
|
||||||
|
|
||||||
Scenario: Data Upload to a web service
|
|
||||||
When users upload data on a project
|
|
||||||
Then the server should handle it and return a success status
|
|
||||||
|
|
||||||
Scenario: Data retrieval from a web service
|
|
||||||
When users want to get information on the Cucumber project
|
|
||||||
Then the requested data is returned
|
|
@ -1,8 +1,8 @@
|
|||||||
package com.baeldung.rest.cucumber;
|
package com.baeldung.rest.cucumber;
|
||||||
|
|
||||||
|
import io.cucumber.junit.Cucumber;
|
||||||
|
import io.cucumber.junit.CucumberOptions;
|
||||||
import org.junit.runner.RunWith;
|
import org.junit.runner.RunWith;
|
||||||
import cucumber.api.CucumberOptions;
|
|
||||||
import cucumber.api.junit.Cucumber;
|
|
||||||
|
|
||||||
@RunWith(Cucumber.class)
|
@RunWith(Cucumber.class)
|
||||||
@CucumberOptions(features = "classpath:Feature")
|
@CucumberOptions(features = "classpath:Feature")
|
||||||
|
@ -20,6 +20,8 @@ import java.io.IOException;
|
|||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.util.Scanner;
|
import java.util.Scanner;
|
||||||
|
|
||||||
|
import io.cucumber.java.en.Then;
|
||||||
|
import io.cucumber.java.en.When;
|
||||||
import org.apache.http.HttpResponse;
|
import org.apache.http.HttpResponse;
|
||||||
import org.apache.http.client.methods.HttpGet;
|
import org.apache.http.client.methods.HttpGet;
|
||||||
import org.apache.http.client.methods.HttpPost;
|
import org.apache.http.client.methods.HttpPost;
|
||||||
@ -29,8 +31,6 @@ import org.apache.http.impl.client.HttpClients;
|
|||||||
|
|
||||||
import com.github.tomakehurst.wiremock.WireMockServer;
|
import com.github.tomakehurst.wiremock.WireMockServer;
|
||||||
|
|
||||||
import cucumber.api.java.en.Then;
|
|
||||||
import cucumber.api.java.en.When;
|
|
||||||
|
|
||||||
public class StepDefinition {
|
public class StepDefinition {
|
||||||
|
|
||||||
@ -66,7 +66,8 @@ public class StepDefinition {
|
|||||||
wireMockServer.stop();
|
wireMockServer.stop();
|
||||||
}
|
}
|
||||||
|
|
||||||
@When("^users want to get information on the (.+) project$")
|
// @When("^users want to get information on the '(.+)' project$")
|
||||||
|
@When("users want to get information on the {string} project")
|
||||||
public void usersGetInformationOnAProject(String projectName) throws IOException {
|
public void usersGetInformationOnAProject(String projectName) throws IOException {
|
||||||
wireMockServer.start();
|
wireMockServer.start();
|
||||||
|
|
||||||
@ -86,11 +87,11 @@ public class StepDefinition {
|
|||||||
wireMockServer.stop();
|
wireMockServer.stop();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Then("^the server should handle it and return a success status$")
|
@Then("the server should handle it and return a success status")
|
||||||
public void theServerShouldReturnASuccessStatus() {
|
public void theServerShouldReturnASuccessStatus() {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Then("^the requested data is returned$")
|
@Then("the requested data is returned")
|
||||||
public void theRequestedDataIsReturned() {
|
public void theRequestedDataIsReturned() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -6,5 +6,5 @@ Feature: Testing a REST API
|
|||||||
Then the server should handle it and return a success status
|
Then the server should handle it and return a success status
|
||||||
|
|
||||||
Scenario: Data retrieval from a web service
|
Scenario: Data retrieval from a web service
|
||||||
When users want to get information on the Cucumber project
|
When users want to get information on the 'Cucumber' project
|
||||||
Then the requested data is returned
|
Then the requested data is returned
|
Loading…
x
Reference in New Issue
Block a user