mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-09-07 00:00:08 +02:00
Changes the set of `default` feature flags to `[]`. By default, only core traits are included without specifying feature flags. This makes it easier for users to pick the components they need. For convenience, a `full` feature flag is included that includes all components. Tests are configured to require the `full` feature. Testing individual feature flags will need to be moved to a separate crate. Closes #1791
30 lines
792 B
Rust
30 lines
792 B
Rust
#![warn(rust_2018_idioms)]
|
|
#![cfg(feature = "full")]
|
|
|
|
use tokio::io::AsyncWriteExt;
|
|
use tokio::net::{TcpListener, TcpStream};
|
|
use tokio::prelude::*;
|
|
use tokio_test::assert_ok;
|
|
|
|
#[tokio::test]
|
|
async fn shutdown() {
|
|
let mut srv = assert_ok!(TcpListener::bind("127.0.0.1:0").await);
|
|
let addr = assert_ok!(srv.local_addr());
|
|
|
|
tokio::spawn(async move {
|
|
let mut stream = assert_ok!(TcpStream::connect(&addr).await);
|
|
|
|
assert_ok!(AsyncWriteExt::shutdown(&mut stream).await);
|
|
|
|
let mut buf = [0; 1];
|
|
let n = assert_ok!(stream.read(&mut buf).await);
|
|
assert_eq!(n, 0);
|
|
});
|
|
|
|
let (mut stream, _) = assert_ok!(srv.accept().await);
|
|
let (mut rd, mut wr) = stream.split();
|
|
|
|
let n = assert_ok!(rd.copy(&mut wr).await);
|
|
assert_eq!(n, 0);
|
|
}
|