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.
36 lines
980 B
Rust
36 lines
980 B
Rust
extern crate futures;
|
|
extern crate tokio;
|
|
|
|
use std::thread;
|
|
|
|
use futures::prelude::*;
|
|
use tokio::net::{TcpStream, TcpListener};
|
|
|
|
macro_rules! t {
|
|
($e:expr) => (match $e {
|
|
Ok(e) => e,
|
|
Err(e) => panic!("{} failed with {:?}", stringify!($e), e),
|
|
})
|
|
}
|
|
|
|
#[test]
|
|
fn hammer() {
|
|
let threads = (0..10).map(|_| {
|
|
thread::spawn(|| {
|
|
let srv = t!(TcpListener::bind(&"127.0.0.1:0".parse().unwrap()));
|
|
let addr = t!(srv.local_addr());
|
|
let mine = TcpStream::connect(&addr);
|
|
let theirs = srv.incoming().into_future()
|
|
.map(|(s, _)| s.unwrap().0)
|
|
.map_err(|(s, _)| s);
|
|
let (mine, theirs) = t!(mine.join(theirs).wait());
|
|
|
|
assert_eq!(t!(mine.local_addr()), t!(theirs.peer_addr()));
|
|
assert_eq!(t!(theirs.local_addr()), t!(mine.peer_addr()));
|
|
})
|
|
}).collect::<Vec<_>>();
|
|
for thread in threads {
|
|
thread.join().unwrap();
|
|
}
|
|
}
|