-
-
Notifications
You must be signed in to change notification settings - Fork 213
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GetAdminMappingsResult in WireMock.Org.Abstractions should contain list of mappings #1021
Comments
@roengstrom https://github.com/WireMock-Net/WireMock.Net/wiki/MyGet-preview-versions |
@StefH I tested it out and fetching the mappings works fine now, nice work! Is the idea of this client that it should be fully compatible with standalone Wiremock instances? Because like you mention, there's no guarantee that it works, and indeed I've encountered other issues as well unfortunately. But if the intention is for it to be fully compatible it would be nice to get it working, because as far as I can tell, there doesn't seem to exist any dotnet client for standalone Wiremock. |
In the beginning I used the openapi-specification from WireMock.Org to generate the classes + api (I was trying to use https://github.com/StefH/RestEase-Client-Generator). And then I did have to update some code manually to get it working. If it's not too much work, I can try to build a 100% working .NET client, however I need to some and some help from the community for that. (I will also reach out to WireMock.Org) So if you find other issues, please list these here, or create a PR. |
@StefH I'll see if I can make time and create a PR. :) Thank you |
Do you want to continue your PR on from my branch/PR or should I merge my PR to master so that you can fork and make your own branch? |
@StefH I'm thinking you can merge and I'll work from master in that case. |
It's merged. |
Describe the bug
When running a dedicated instance of Wiremock in a docker container I cannot fetch the configured mappings. It seems like
GetAdminMappingsResult
expects an instance ofMappings
but according to the Wiremock API documentation, this should not be an object but an array. So when I call the method I get an exception:Expected behavior:
I expect to not get an exception and instead get an instance of
GetAdminMappingsResult
containing a list of mappings.Test to reproduce
The text was updated successfully, but these errors were encountered: