2016-08-16 15:56:57 -07:00
|
|
|
extern crate env_logger;
|
2016-07-30 17:53:12 -07:00
|
|
|
extern crate futures;
|
2016-08-26 14:30:46 -07:00
|
|
|
extern crate tokio_core;
|
2016-07-30 17:53:12 -07:00
|
|
|
|
2016-08-17 11:23:32 -07:00
|
|
|
use std::io::{Read, Write};
|
|
|
|
|
use std::net::TcpStream;
|
2016-07-30 17:53:12 -07:00
|
|
|
use std::thread;
|
|
|
|
|
|
|
|
|
|
use futures::Future;
|
|
|
|
|
use futures::stream::Stream;
|
2016-09-07 13:53:18 -07:00
|
|
|
use tokio_core::io::{copy, Io};
|
2016-09-02 11:07:52 -07:00
|
|
|
use tokio_core::net::TcpListener;
|
|
|
|
|
use tokio_core::reactor::Core;
|
2016-07-30 17:53:12 -07:00
|
|
|
|
|
|
|
|
macro_rules! t {
|
|
|
|
|
($e:expr) => (match $e {
|
|
|
|
|
Ok(e) => e,
|
|
|
|
|
Err(e) => panic!("{} failed with {:?}", stringify!($e), e),
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn echo_server() {
|
2016-08-16 15:56:57 -07:00
|
|
|
drop(env_logger::init());
|
|
|
|
|
|
2016-09-02 11:07:52 -07:00
|
|
|
let mut l = t!(Core::new());
|
2016-09-07 16:11:19 -07:00
|
|
|
let srv = t!(TcpListener::bind(&t!("127.0.0.1:0".parse()), &l.handle()));
|
2016-07-30 17:53:12 -07:00
|
|
|
let addr = t!(srv.local_addr());
|
|
|
|
|
|
|
|
|
|
let msg = "foo bar baz";
|
|
|
|
|
let t = thread::spawn(move || {
|
|
|
|
|
let mut s = TcpStream::connect(&addr).unwrap();
|
|
|
|
|
|
|
|
|
|
for _i in 0..1024 {
|
|
|
|
|
assert_eq!(t!(s.write(msg.as_bytes())), msg.len());
|
|
|
|
|
let mut buf = [0; 1024];
|
|
|
|
|
assert_eq!(t!(s.read(&mut buf)), msg.len());
|
|
|
|
|
assert_eq!(&buf[..msg.len()], msg.as_bytes());
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
let clients = srv.incoming();
|
|
|
|
|
let client = clients.into_future().map(|e| e.0.unwrap()).map_err(|e| e.0);
|
2016-09-07 13:53:18 -07:00
|
|
|
let halves = client.map(|s| s.0.split());
|
2016-07-30 17:53:12 -07:00
|
|
|
let copied = halves.and_then(|(a, b)| copy(a, b));
|
|
|
|
|
|
|
|
|
|
let amt = t!(l.run(copied));
|
|
|
|
|
t.join().unwrap();
|
|
|
|
|
|
|
|
|
|
assert_eq!(amt, msg.len() as u64 * 1024);
|
|
|
|
|
}
|