Skip to content

Commit 7e40bff

Browse files
authored
Fix double encoding of path parameters (#15)
Fix double encoding of path parameters ### Motivation Fixes apple/swift-openapi-generator#251. ### Modifications Use the already escaped path setter on `URLComponents` to avoid the second encoding pass. ### Result Path parameters that needed escaping are only escaped once, not twice. ### Test Plan Adapted the existing unit test to cover a path item that needs escaping. Reviewed by: simonjbeaumont Builds: ✔︎ pull request validation (5.8) - Build finished. ✔︎ pull request validation (5.9) - Build finished. ✔︎ pull request validation (nightly) - Build finished. ✔︎ pull request validation (soundness) - Build finished. #15
1 parent 902cfc7 commit 7e40bff

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Sources/OpenAPIAsyncHTTPClient/AsyncHTTPClientTransport.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ public struct AsyncHTTPClientTransport: ClientTransport {
161161
guard var baseUrlComponents = URLComponents(string: baseURL.absoluteString) else {
162162
throw Error.invalidRequestURL(request: request, baseURL: baseURL)
163163
}
164-
baseUrlComponents.path += request.path
164+
baseUrlComponents.percentEncodedPath += request.path
165165
baseUrlComponents.percentEncodedQuery = request.query
166166
guard let url = baseUrlComponents.url else {
167167
throw Error.invalidRequestURL(request: request, baseURL: baseURL)

Tests/OpenAPIAsyncHTTPClientTests/Test_AsyncHTTPClientTransport.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class Test_AsyncHTTPClientTransport: XCTestCase {
3838

3939
func testConvertRequest() throws {
4040
let request: OpenAPIRuntime.Request = .init(
41-
path: "/hello/Maria",
41+
path: "/hello%20world/Maria",
4242
query: "greeting=Howdy",
4343
method: .post,
4444
headerFields: [
@@ -50,7 +50,7 @@ class Test_AsyncHTTPClientTransport: XCTestCase {
5050
request,
5151
baseURL: try XCTUnwrap(URL(string: "http://example.com/api/v1"))
5252
)
53-
XCTAssertEqual(httpRequest.url, "http://example.com/api/v1/hello/Maria?greeting=Howdy")
53+
XCTAssertEqual(httpRequest.url, "http://example.com/api/v1/hello%20world/Maria?greeting=Howdy")
5454
XCTAssertEqual(httpRequest.method, .POST)
5555
XCTAssertEqual(
5656
httpRequest.headers,

0 commit comments

Comments
 (0)