Skip to content

Added TCP smoke tests against std Listener and Stream #429

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 2, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions tests/tcp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,48 @@ fn incoming_read() -> io::Result<()> {
Ok(())
})
}

#[test]
fn smoke_std_stream_to_async_listener() -> io::Result<()> {
use std::io::Write;

task::block_on(async {
let listener = TcpListener::bind("127.0.0.1:0").await?;
let addr = listener.local_addr()?;

let mut std_stream = std::net::TcpStream::connect(&addr)?;
std_stream.write_all(THE_WINTERS_TALE)?;

let mut buf = vec![0; 1024];
let mut incoming = listener.incoming();
let mut stream = incoming.next().await.unwrap()?;

let n = stream.read(&mut buf).await?;
assert_eq!(&buf[..n], THE_WINTERS_TALE);

Ok(())
})
}

#[test]
fn smoke_async_stream_to_std_listener() -> io::Result<()> {
use std::io::Read;

let std_listener = std::net::TcpListener::bind("127.0.0.1:0")?;
let addr = std_listener.local_addr()?;

task::block_on(async move {
let mut stream = TcpStream::connect(&addr).await?;
stream.write_all(THE_WINTERS_TALE).await?;
io::Result::Ok(())
})?;

let mut buf = vec![0; 1024];
let mut incoming = std_listener.incoming();
let mut stream = incoming.next().unwrap()?;

let n = stream.read(&mut buf).unwrap();
assert_eq!(&buf[..n], THE_WINTERS_TALE);

Ok(())
}