mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-09-25 12:00:35 +00:00

This commit removes the `Handle` argument from the following constructors * `TcpListener::bind` * `TcpStream::connect` * `UdpSocket::bind` The `Handle` argument remains on the various `*_std` constructors as they're more low-level, but this otherwise is intended to set forth a precedent of by default not taking `Handle` arguments and instead relying on the global `Handle::default` return value when necesary.
45 lines
1.3 KiB
Rust
45 lines
1.3 KiB
Rust
extern crate tokio;
|
|
extern crate futures;
|
|
|
|
use std::thread;
|
|
use std::net;
|
|
|
|
use futures::future;
|
|
use futures::prelude::*;
|
|
use futures::sync::oneshot;
|
|
use tokio::net::TcpListener;
|
|
use tokio::reactor::Reactor;
|
|
|
|
#[test]
|
|
fn tcp_doesnt_block() {
|
|
let core = Reactor::new().unwrap();
|
|
let handle = core.handle();
|
|
let listener = net::TcpListener::bind("127.0.0.1:0").unwrap();
|
|
let addr = listener.local_addr().unwrap();
|
|
let listener = TcpListener::from_std(listener, &addr, &handle).unwrap();
|
|
drop(core);
|
|
assert!(listener.incoming().wait().next().unwrap().is_err());
|
|
}
|
|
|
|
#[test]
|
|
fn drop_wakes() {
|
|
let core = Reactor::new().unwrap();
|
|
let handle = core.handle();
|
|
let listener = net::TcpListener::bind("127.0.0.1:0").unwrap();
|
|
let addr = listener.local_addr().unwrap();
|
|
let listener = TcpListener::from_std(listener, &addr, &handle).unwrap();
|
|
let (tx, rx) = oneshot::channel::<()>();
|
|
let t = thread::spawn(move || {
|
|
let incoming = listener.incoming();
|
|
let new_socket = incoming.into_future().map_err(|_| ());
|
|
let drop_tx = future::lazy(|| {
|
|
drop(tx);
|
|
future::ok(())
|
|
});
|
|
assert!(new_socket.join(drop_tx).wait().is_err());
|
|
});
|
|
drop(rx.wait());
|
|
drop(core);
|
|
t.join().unwrap();
|
|
}
|