More tests (#368)

This commit is contained in:
Nikolay Kim 2024-05-29 20:30:14 +05:00 committed by GitHub
parent 34142e1ae2
commit e0b5284fdd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 82 additions and 37 deletions

View file

@ -726,6 +726,7 @@ mod tests {
#[ntex::test]
async fn test_basic() {
let _ = env_logger::try_init();
let (client, server) = IoTest::create();
client.remote_buffer_cap(1024);
client.write("GET /test HTTP/1\r\n\r\n");

View file

@ -685,5 +685,11 @@ mod tests {
let res = lazy(|cx| server2.poll_write_buf(cx, b"123")).await;
assert!(res.is_pending());
let (client, _) = IoTest::create();
let addr: net::SocketAddr = "127.0.0.1:8080".parse().unwrap();
let client = crate::Io::new(client.set_peer_addr(addr));
let item = client.query::<crate::types::PeerAddr>();
assert!(format!("{:?}", item).contains("QueryItem(127.0.0.1:8080)"));
}
}