Make TestServer::connect() async

This commit is contained in:
Nikolay Kim 2021-02-24 04:50:49 +06:00
parent 8b059754a6
commit 8bd63b07b3
3 changed files with 8 additions and 4 deletions

View file

@ -260,6 +260,7 @@ where
}
}
}
log::trace!("flushed {} bytes", written);
// remove written data
if written == len {

View file

@ -1,5 +1,9 @@
# Changes
## [0.3.0-b.2] - 2021-02-24
* server: Make TestServer::connect() async
## [0.3.0-b.1] - 2021-02-24
* Migrate to tokio 1.x

View file

@ -1,6 +1,5 @@
//! Test server
use std::sync::mpsc;
use std::{io, net, thread};
use std::{io, net, sync::mpsc, thread};
use socket2::{Domain, SockAddr, Socket, Type};
@ -107,8 +106,8 @@ impl TestServer {
}
/// Connect to server, return TcpStream
pub fn connect(&self) -> std::io::Result<TcpStream> {
TcpStream::from_std(net::TcpStream::connect(self.addr)?)
pub async fn connect(&self) -> io::Result<TcpStream> {
TcpStream::connect(self.addr).await
}
/// Stop http server