virgium03

Results 6 comments of virgium03

Jackson `jackson-datatype-jdk8` and `jackson-datatype-jsr310` are transitive dependencies from `spring-boot-starter-json`.

> AFAIR the best way would be to pass the web application context via `RestAssuredMockMvc.webAppContextSetup`. That way things should be resolved from application context instead of passing them manually In...

Here is the contract file: ```yaml name: search actors using criteria request: method: GET url: /secure/v1.0/actors queryParameters: uuId: nsupuser response: status: 200 body: - id: 1 uuId: nsupuser lastReactivationDate: 2022-01-07T10:34:11.813+00:00...

here is the generated producer test: ```java import identity.domain.rest.server.IdentityRestBaseContractTestClass; import com.jayway.jsonpath.DocumentContext; import com.jayway.jsonpath.JsonPath; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; import io.restassured.module.mockmvc.specification.MockMvcRequestSpecification; import io.restassured.response.ResponseOptions; import static org.springframework.cloud.contract.verifier.assertion.SpringCloudContractAssertions.assertThat; import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.*; import static com.toomuchcoding.jsonassert.JsonAssertion.assertThatJson;...

and the generated json stub: ```json { "id" : "114d2908-ecd5-4d51-af4c-3e4ffb360fd8", "request" : { "urlPath" : "/secure/v1.0/actors", "method" : "GET", "queryParameters" : { "uuId" : { "equalTo" : "nsupuser" } }...

is anybody taking a look at this? it's almost two months since the last update.