Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -235,7 +235,7 @@ final class HTTPConnectionPool{
}

for connection in cleanupContext.cancel{
connection.close(promise: nil)
connection.shutdown()
}

for connectionID in cleanupContext.connectBackoff{
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -31,6 +31,7 @@ extension HTTPConnectionPoolTests{
("testConnectionCreationIsRetriedUntilRequestIsFailed", testConnectionCreationIsRetriedUntilRequestIsFailed),
("testConnectionCreationIsRetriedUntilPoolIsShutdown", testConnectionCreationIsRetriedUntilPoolIsShutdown),
("testConnectionCreationIsRetriedUntilRequestIsCancelled", testConnectionCreationIsRetriedUntilRequestIsCancelled),
("testConnectionShutdownIsCalledOnActiveConnections", testConnectionShutdownIsCalledOnActiveConnections),
]
}
}
56 changes: 53 additions & 3 deletions Tests/AsyncHTTPClientTests/HTTPConnectionPoolTests.swift
Original file line numberDiff line numberDiff line change
Expand Up@@ -294,7 +294,7 @@ class HTTPConnectionPoolTests: XCTestCase{
let eventLoop = eventLoopGroup.next()
defer{XCTAssertNoThrow(try eventLoopGroup.syncShutdownGracefully()) }

let request = try! HTTPClient.Request(url: "http://localhost:9000")
let request = try! HTTPClient.Request(url: "http://localhost:\(httpBin.port)")
let poolDelegate = TestDelegate(eventLoop: eventLoop)

let pool = HTTPConnectionPool(
Expand All@@ -318,7 +318,7 @@ class HTTPConnectionPoolTests: XCTestCase{

var maybeRequest: HTTPClient.Request?
var maybeRequestBag: RequestBag<ResponseAccumulator>?
XCTAssertNoThrow(maybeRequest = try HTTPClient.Request(url: "https://localhost:\(httpBin.port)"))
XCTAssertNoThrow(maybeRequest = try HTTPClient.Request(url: "http://localhost:\(httpBin.port)"))
XCTAssertNoThrow(maybeRequestBag = try RequestBag(
request: XCTUnwrap(maybeRequest),
eventLoopPreference: .indifferent,
Expand All@@ -332,13 +332,63 @@ class HTTPConnectionPoolTests: XCTestCase{
guard let requestBag = maybeRequestBag else{return XCTFail("Expected to get a request") }

pool.executeRequest(requestBag)
XCTAssertNoThrow(try eventLoop.scheduleTask(in: .milliseconds(100)){}.futureResult.wait())
XCTAssertNoThrow(try eventLoop.scheduleTask(in: .seconds(1)){}.futureResult.wait())
requestBag.cancel()

XCTAssertThrowsError(try requestBag.task.futureResult.wait()){
XCTAssertEqual($0 as? HTTPClientError, .cancelled)
}
XCTAssertGreaterThanOrEqual(httpBin.createdConnections, 3)
}

func testConnectionShutdownIsCalledOnActiveConnections(){
let httpBin = HTTPBin()
defer{XCTAssertNoThrow(try httpBin.shutdown()) }
let eventLoopGroup = MultiThreadedEventLoopGroup(numberOfThreads: 1)
let eventLoop = eventLoopGroup.next()
defer{XCTAssertNoThrow(try eventLoopGroup.syncShutdownGracefully()) }

let request = try! HTTPClient.Request(url: "http://localhost:\(httpBin.port)")
let poolDelegate = TestDelegate(eventLoop: eventLoop)

let pool = HTTPConnectionPool(
eventLoopGroup: eventLoopGroup,
sslContextCache: .init(),
tlsConfiguration: .none,
clientConfiguration: .init(),
key: .init(request),
delegate: poolDelegate,
idGenerator: .init(),
backgroundActivityLogger: .init(label: "test")
)

var maybeRequest: HTTPClient.Request?
var maybeRequestBag: RequestBag<ResponseAccumulator>?
XCTAssertNoThrow(maybeRequest = try HTTPClient.Request(url: "http://localhost:\(httpBin.port)/wait"))
XCTAssertNoThrow(maybeRequestBag = try RequestBag(
request: XCTUnwrap(maybeRequest),
eventLoopPreference: .indifferent,
task: .init(eventLoop: eventLoopGroup.next(), logger: .init(label: "test")),
redirectHandler: nil,
connectionDeadline: .now() + .seconds(5),
idleReadTimeout: nil,
delegate: ResponseAccumulator(request: XCTUnwrap(maybeRequest))
))

guard let requestBag = maybeRequestBag else{return XCTFail("Expected to get a request") }

pool.executeRequest(requestBag)
XCTAssertNoThrow(try eventLoop.scheduleTask(in: .milliseconds(500)){}.futureResult.wait())
pool.shutdown()

XCTAssertNoThrow(try poolDelegate.future.wait())

XCTAssertThrowsError(try requestBag.task.futureResult.wait()){
XCTAssertEqual($0 as? HTTPClientError, .cancelled)
}

XCTAssertGreaterThanOrEqual(httpBin.createdConnections, 1)
XCTAssertGreaterThanOrEqual(httpBin.activeConnections, 0)
}
}

Expand Down