-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rt: improve "no runtime" panic messages (#2145)
- Loading branch information
1 parent
a16c9a5
commit 9eca96a
Showing
4 changed files
with
32 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
use tokio::net::TcpStream; | ||
use tokio::sync::oneshot; | ||
use tokio::time::{timeout, Duration}; | ||
|
||
use futures::executor::block_on; | ||
|
||
use std::net::TcpListener; | ||
|
||
#[test] | ||
#[should_panic(expected = "no timer running")] | ||
fn panics_when_no_timer() { | ||
block_on(timeout_value()); | ||
} | ||
|
||
#[test] | ||
#[should_panic(expected = "no reactor running")] | ||
fn panics_when_no_reactor() { | ||
let srv = TcpListener::bind("127.0.0.1:0").unwrap(); | ||
let addr = srv.local_addr().unwrap(); | ||
block_on(TcpStream::connect(&addr)).unwrap(); | ||
} | ||
|
||
async fn timeout_value() { | ||
let (_tx, rx) = oneshot::channel::<()>(); | ||
let dur = Duration::from_millis(20); | ||
let _ = timeout(dur, rx).await; | ||
} |