Skip to content
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

Fix for CoapEndpointSpec test when transport becomes not ready #61

Merged
merged 1 commit into from
Nov 1, 2022
Merged
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 number Diff line number Diff line change
Expand Up @@ -138,7 +138,14 @@ final class CoapEndpointSpec: QuickSpec {
}
}

xit("rejects requests when transport becomes not ready after requests started") {
it("rejects requests when transport becomes not ready after requests started") {

// For this test, we want to use a response that will not return during the timeout
// so that we give plenty of time for the .notReady signal to be sent
let response = Observable.just(message)
.delay(.seconds(20), scheduler: MainScheduler.instance).asSingle()
transferStrategy.respondWith(response)

transportReadiness = Observable.just(.ready)
.concat(
Observable.just(.notReady(reason: TestError.transportNotReady))
Expand Down