kotlin-wiremock
kotlin-wiremock copied to clipboard
Kotlin DSL for WireMock
Hi @marcinziolo, thanks for this project! Duplicating and expanding my old email from July, because we have a few Hacktoberfest contributors who want to improve the extension. In April I...
Nothing absolutely necessary, but having a DSL around the `WireMockExtension.Builder` would be nice. ```kotlin fun wireMockExtension(block: WireMockExtension.Builder.() -> Unit): WireMockExtension = WireMockExtension.newInstance().apply(block).build() ``` Before: ```kotlin companion object { @JvmField @RegisterExtension...
### Proposal I'd like to be able to specify the host for a request to take advantage of [multi-domain mocking](https://wiremock.org/docs/multi-domain-mocking/). I see that there is already a `BasicMappingBuilder#withHost` method so...
### Proposal Currently, the request matching does not support `application/x-www-form-urlencoded` query params that are part of the body (e.g. in a POST request). The functions available on the `body` field...
### Proposal It would be great if this DSL could work in a way that it talks to Wiremock via HTTP instead of via local method calls, to control a...
The last commit was over a year ago, and the most recent feature implementation happened much earlier than that. I like the project's syntax, but there are still a few...
### Proposal Add support for JSON array order indeference: Less strict matching By default different array orderings and additional object attributes will trigger a non-match. However, both of these conditions...