Fix Query String Parameters Being Ignored #11
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Issue
Query string parameters are dropped
Details
The current implementation of this transport does not work with query string parameters. This is a fairly minimal change that fixes the functionality.
This change adds the query string parameters to the path in the
HTTPRequest
. Whether or not this is the right place for them can be answered by looking at the code generated by the Swift OpenAPI Generator. An example can be found here.The generated code calls
request.soar_query
from OpenAPIRuntime which extracts the query string from the path in theHTTPRequest
. This differs from other path parameters which are extracted from theServerRequestMetadata
.Testing
I have also added updated the tests to verify that the routing is not broken by this change. I noticed you recently changed the tests to use the Swift Testing framework. The modification I made uses the arguments feature to try multiple values, but further refactoring of this type is also possible. There wasn't an existing setup with mocks to test the query string being passed all the way through but that would be another improvement possible. I have confirmed that the query string parameters do come through now end-to-end when used in a project.