Skip to content

Commit d76e399

Browse files
committed
Made upTo a required parameter for bytes and data extensions
1 parent 06d365f commit d76e399

File tree

3 files changed

+11
-20
lines changed

3 files changed

+11
-20
lines changed

Sources/AsyncHTTPClient/AsyncAwait/HTTPClientResponse.swift

+3-12
Original file line numberDiff line numberDiff line change
@@ -142,19 +142,10 @@ extension HTTPClientResponse {
142142
extension HTTPClientResponse {
143143
/// Response body as `ByteBuffer`.
144144
/// - Parameter maxBytes: The maximum number of bytes this method is allowed to accumulate.
145-
/// Will accumulate all available bytes if nil passed.
146145
/// - Returns: Bytes collected over time
147-
public func bytes(upTo maxBytes: Int? = nil) async throws -> ByteBuffer {
148-
if let expectedBytes = maxBytes ?? self.headers.first(name: "content-length").flatMap(Int.init) {
149-
return try await self.body.collect(upTo: expectedBytes)
150-
}
151-
152-
var data = [UInt8]()
153-
for try await var buffer in self.body {
154-
data = data + (buffer.readBytes(length: buffer.readableBytes) ?? [])
155-
}
156-
157-
return ByteBuffer(bytes: data)
146+
public func bytes(upTo maxBytes: Int) async throws -> ByteBuffer {
147+
let expectedBytes = self.headers.first(name: "content-length").flatMap(Int.init) ?? maxBytes
148+
return try await self.body.collect(upTo: expectedBytes)
158149
}
159150
}
160151

Sources/AsyncHTTPClient/FoundationExtensions.swift

+5-5
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@ extension HTTPClient.Body {
6868
@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
6969
extension HTTPClientResponse {
7070
/// Response body as `Data`.
71-
public var data: Data? {
72-
get async throws {
73-
var bytes = try await self.bytes()
74-
return bytes.readData(length: bytes.readableBytes)
75-
}
71+
/// - Parameter maxBytes: The maximum number of bytes this method is allowed to accumulate.
72+
/// - Returns: Bytes collected over time
73+
public func data(upTo maxBytes: Int) async throws -> Data? {
74+
var bytes = try await self.bytes(upTo: maxBytes)
75+
return bytes.readData(length: bytes.readableBytes)
7676
}
7777
}

Tests/AsyncHTTPClientTests/AsyncAwaitEndToEndTests.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -852,7 +852,7 @@ final class AsyncAwaitEndToEndTests: XCTestCase {
852852
) else { return }
853853
XCTAssertEqual(response.headers["content-length"], ["4"])
854854
guard let body = await XCTAssertNoThrowWithResult(
855-
try await response.bytes(upTo: 4)
855+
try await response.bytes(upTo: 3)
856856
) else { return }
857857
XCTAssertEqual(body, ByteBuffer(string: "1234"))
858858

@@ -861,7 +861,7 @@ final class AsyncAwaitEndToEndTests: XCTestCase {
861861
) else { return }
862862
responseNoContentLength.headers.remove(name: "content-length")
863863
guard let body2 = await XCTAssertNoThrowWithResult(
864-
try await responseNoContentLength.bytes()
864+
try await responseNoContentLength.bytes(upTo: 4)
865865
) else { return }
866866
XCTAssertEqual(body2, ByteBuffer(string: "1234"))
867867
}
@@ -883,7 +883,7 @@ final class AsyncAwaitEndToEndTests: XCTestCase {
883883
) else { return }
884884
XCTAssertEqual(response.headers["content-length"], ["4"])
885885
guard let bodyData = await XCTAssertNoThrowWithResult(
886-
try await response.data
886+
try await response.data(upTo: 4)
887887
) else { return }
888888
XCTAssertEqual(bodyData, "1234".data(using: .utf8))
889889
}

0 commit comments

Comments
 (0)