-
Notifications
You must be signed in to change notification settings - Fork 122
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
Add TestBackpressure test #273
Changes from all commits
9d8aa24
df778c5
19accd7
8611b61
84622f5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2533,4 +2533,61 @@ class HTTPClientTests: XCTestCase { | |
XCTAssertEqual(info.connectionNumber, 1) | ||
XCTAssertEqual(info.requestNumber, 1) | ||
} | ||
|
||
func testDownloadBackpressure() { | ||
class BackpressureResponseDelegate: HTTPClientResponseDelegate { | ||
typealias Response = Void | ||
var count = 0 | ||
var totalCount = 0 | ||
var processingBodyPart = false | ||
var didntWait = false | ||
var lock = Lock() | ||
|
||
init() {} | ||
|
||
func didReceiveHead(task: HTTPClient.Task<Response>, _ head: HTTPResponseHead) -> EventLoopFuture<Void> { | ||
return task.eventLoop.makeSucceededFuture(()) | ||
} | ||
|
||
func didReceiveBodyPart(task: HTTPClient.Task<Response>, _ part: ByteBuffer) -> EventLoopFuture<Void> { | ||
self.lock.withLock { | ||
// if processingBodyPart is true then previous body part is still being processed | ||
// XCTAssertEqual doesn't work here so store result to test later | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. out of interest: What about There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. XCTAssertEqual doesn’t return an error while assert does not totally sure why There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @adam-fowler yes, it continues the execution but it will still fail the test run once it's complete. So I think you can just use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In this situation it doesn't work. |
||
if processingBodyPart == true { | ||
didntWait = true | ||
} | ||
processingBodyPart = true | ||
count += 1 | ||
totalCount += 1 | ||
} | ||
// wait one second before returning a successful future | ||
return task.eventLoop.scheduleTask(in: .milliseconds(200)) { | ||
self.lock.withLock { | ||
self.processingBodyPart = false | ||
self.count -= 1 | ||
} | ||
}.futureResult | ||
Lukasa marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
|
||
func didReceiveError(task: HTTPClient.Task<Response>, _ error: Error) {} | ||
func didFinishRequest(task: HTTPClient.Task<Response>) throws {} | ||
} | ||
|
||
let elg = MultiThreadedEventLoopGroup(numberOfThreads: 3) | ||
let client = HTTPClient(eventLoopGroupProvider: .shared(elg)) | ||
defer { | ||
XCTAssertNoThrow(try client.syncShutdown()) | ||
XCTAssertNoThrow(try elg.syncShutdownGracefully()) | ||
} | ||
|
||
let backpressureResponseDelegate = BackpressureResponseDelegate() | ||
guard let request = try? HTTPClient.Request(url: self.defaultHTTPBinURLPrefix + "zeros/150000") else { | ||
XCTFail("Failed to init Request") | ||
return | ||
} | ||
XCTAssertNoThrow(try client.execute(request: request, delegate: backpressureResponseDelegate).wait()) | ||
XCTAssertEqual(backpressureResponseDelegate.didntWait, false) | ||
XCTAssertGreaterThan(backpressureResponseDelegate.totalCount, 2) | ||
XCTAssertEqual(backpressureResponseDelegate.count, 0) | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
how are we making sure that
didReceiveBodyPart
is actually invoked multiple times? Because if it's only invoked once, then we don't know if download streaming works or not I think?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We aren’t at the moment. I can add a test to see if it did. Is there a way we can force it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@adam-fowler From the NIO level: Yes, you could set
ChannelOptions.maxMessagesPerRead
to1
and set the allocator toFixedSizeRecvAllocator(1)
which means that NIO will read everything byte to byte. That'll cause AHC to call out multiple times.The issue here is that through AHC's API, you can't easily mess with the underlying
Channel
... You could make it an internal test and force it that way.The other (probably easier) option is:
XCTAssertGreaterOrEqual(numberOfCalls, 2)
or so.