mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-11 21:10:32 +01:00
Support OData #320
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @xadvfh on GitHub (Dec 15, 2020).
Is your feature request related to a problem? Please describe.
Is there a way to support OData with the responses that we stub out in WireMock.Net?
Describe the solution you'd like
Given I stub a request to return a specific response
When a user requests the data with a OData query
Then the response should only include the data the query specifies
Describe alternatives you've considered
Stubbing every single query used
Is your feature request supported by WireMock (java version)? Please provide details.
Only via stubbing each query
Additional context
#72 talks about stubbing a specific OData query but I'm wondering if this is something that could be built in.
@StefH commented on GitHub (Dec 15, 2020):
OData is just a specification.
With WireMock.Net you can stub any request and response.
Or do you have a different question?
@xadvfh commented on GitHub (Dec 15, 2020):
I guess I was wondering if there is a way for wiremock to autogenerate the stubs based on a request. I'm not even sure if this is possible but here is what I had floating around in my head.
Assuming the response is a json object, if there was a stub like this:
When a request matches that path but has an OData query attached to it, it would take the response that the user specified in
WithBodyAsJsonand create a new one based on the OData query.