28 lines
1.0 KiB
Java
Raw Normal View History

2016-07-27 13:19:46 +03:00
package com.baeldung;
import cucumber.api.java.en.And;
import cucumber.api.java.en.Then;
import cucumber.api.java.en.When;
import org.springframework.http.HttpStatus;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.is;
2016-08-02 12:34:08 +03:00
public class StepDefs extends SpringIntegrationTest {
@When("^the client calls /version$")
public void the_client_issues_GET_version() throws Throwable {
2016-07-27 13:19:46 +03:00
executeGet("http://localhost:8080/version");
}
@Then("^the client receives status code of (\\d+)$")
2016-08-02 12:34:08 +03:00
public void the_client_receives_status_code_of(int statusCode) throws Throwable {
2016-07-27 13:19:46 +03:00
final HttpStatus currentStatusCode = latestResponse.getTheResponse().getStatusCode();
2016-08-02 12:34:08 +03:00
assertThat("status code is incorrect : " + latestResponse.getBody(), currentStatusCode.value(), is(statusCode));
2016-07-27 13:19:46 +03:00
}
@And("^the client receives server version (.+)$")
2016-08-02 12:34:08 +03:00
public void the_client_receives_server_version_body(String version) throws Throwable {
assertThat(latestResponse.getBody(), is(version));
2016-07-27 13:19:46 +03:00
}
2016-07-26 09:43:09 -05:00
}