Files
tokio/tests/echo.rs
T

51 lines
1.3 KiB
Rust
Raw Normal View History

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-08-26 14:30:46 -07:00
use tokio_core::io::{copy, TaskIo};
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-08-26 14:30:46 -07:00
let mut l = t!(tokio_core::Loop::new());
2016-07-30 17:53:12 -07:00
let srv = l.handle().tcp_listen(&"127.0.0.1:0".parse().unwrap());
let srv = t!(l.run(srv));
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-08-17 11:23:32 -07:00
let halves = client.map(|s| TaskIo::new(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);
}