WireMock.NET match on domain
Hello. I want to use WireMock.NET to test my program.
What is a good way I can make sure that each request I send out with a specific HTTP client gets sent to the WireMock server? So for instance if I send a request to
domain1.com
and domain2.com
I want to be able to catch these in WireMock.
Note, I have logic in my application that is dependent on the domain name and thus I can't configure the domain name as a configurable value.
Options I have considered:
1. Add a DelegatingHandler
that rewrites the request URL to WireMock's localhost
URL and port. Then use the Host header to match requests in WireMock.
2. Customize the connection behaviour by writing our own SocketsHttpHandler
that connect to the WireMock server.
3. Configure proxy setting on the HTTP client by creating a HttpClientHandler
.
Can you give me any recommendation on a good approach?0 Replies