1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-24 00:01:11 +01:00
actix-net/actix-tls/tests/test_connect.rs

173 lines
5.5 KiB
Rust
Raw Normal View History

2021-02-24 10:48:41 +01:00
#![cfg(feature = "connect")]
use std::{
io,
net::{IpAddr, Ipv4Addr},
};
2020-12-29 12:36:17 +01:00
use actix_codec::{BytesCodec, Framed};
use actix_rt::net::TcpStream;
use actix_server::TestServer;
2020-12-29 12:36:17 +01:00
use actix_service::{fn_service, Service, ServiceFactory};
2022-04-10 03:48:53 +02:00
use actix_tls::connect::{ConnectError, ConnectInfo, Connection, Connector, Host};
2020-12-29 12:36:17 +01:00
use bytes::Bytes;
2023-12-06 05:04:39 +01:00
use futures_util::sink::SinkExt as _;
2020-12-29 12:36:17 +01:00
2021-02-24 10:48:41 +01:00
#[cfg(feature = "openssl")]
2020-12-29 12:36:17 +01:00
#[actix_rt::test]
async fn test_string() {
2021-12-27 19:27:54 +01:00
let srv = TestServer::start(|| {
2020-12-29 12:36:17 +01:00
fn_service(|io: TcpStream| async {
let mut framed = Framed::new(io, BytesCodec);
framed.send(Bytes::from_static(b"test")).await?;
Ok::<_, io::Error>(())
})
});
let connector = Connector::default().service();
2020-12-29 12:36:17 +01:00
let addr = format!("localhost:{}", srv.port());
let con = connector.call(addr.into()).await.unwrap();
2020-12-29 12:36:17 +01:00
assert_eq!(con.peer_addr().unwrap(), srv.addr());
}
#[cfg(feature = "rustls-0_23")]
2020-12-29 12:36:17 +01:00
#[actix_rt::test]
async fn test_rustls_string() {
2021-12-27 19:27:54 +01:00
let srv = TestServer::start(|| {
2020-12-29 12:36:17 +01:00
fn_service(|io: TcpStream| async {
let mut framed = Framed::new(io, BytesCodec);
framed.send(Bytes::from_static(b"test")).await?;
Ok::<_, io::Error>(())
})
});
let conn = Connector::default().service();
2020-12-29 12:36:17 +01:00
let addr = format!("localhost:{}", srv.port());
let con = conn.call(addr.into()).await.unwrap();
assert_eq!(con.peer_addr().unwrap(), srv.addr());
}
#[actix_rt::test]
async fn test_static_str() {
2021-12-27 19:27:54 +01:00
let srv = TestServer::start(|| {
2020-12-29 12:36:17 +01:00
fn_service(|io: TcpStream| async {
let mut framed = Framed::new(io, BytesCodec);
framed.send(Bytes::from_static(b"test")).await?;
Ok::<_, io::Error>(())
})
});
let info = ConnectInfo::with_addr("10", srv.addr());
let connector = Connector::default().service();
let conn = connector.call(info).await.unwrap();
assert_eq!(conn.peer_addr().unwrap(), srv.addr());
let info = ConnectInfo::new(srv.host().to_owned());
let connector = Connector::default().service();
let conn = connector.call(info).await;
assert!(conn.is_err());
2020-12-29 12:36:17 +01:00
}
#[actix_rt::test]
async fn service_factory() {
pub fn default_connector_factory<T: Host + 'static>() -> impl ServiceFactory<
ConnectInfo<T>,
Config = (),
Response = Connection<T, TcpStream>,
Error = ConnectError,
InitError = (),
> {
Connector::default()
}
2021-12-27 19:27:54 +01:00
let srv = TestServer::start(|| {
2020-12-29 12:36:17 +01:00
fn_service(|io: TcpStream| async {
let mut framed = Framed::new(io, BytesCodec);
framed.send(Bytes::from_static(b"test")).await?;
Ok::<_, io::Error>(())
})
});
let info = ConnectInfo::with_addr("10", srv.addr());
let factory = default_connector_factory();
let connector = factory.new_service(()).await.unwrap();
let con = connector.call(info).await;
assert_eq!(con.unwrap().peer_addr().unwrap(), srv.addr());
2020-12-29 12:36:17 +01:00
}
#[cfg(all(feature = "openssl", feature = "uri"))]
#[actix_rt::test]
async fn test_openssl_uri() {
2021-12-27 19:27:54 +01:00
let srv = TestServer::start(|| {
2020-12-29 12:36:17 +01:00
fn_service(|io: TcpStream| async {
let mut framed = Framed::new(io, BytesCodec);
framed.send(Bytes::from_static(b"test")).await?;
Ok::<_, io::Error>(())
})
});
let connector = Connector::default().service();
2024-01-17 05:29:44 +01:00
let addr = http_0_2::Uri::try_from(format!("https://localhost:{}", srv.port())).unwrap();
let con = connector.call(addr.into()).await.unwrap();
2020-12-29 12:36:17 +01:00
assert_eq!(con.peer_addr().unwrap(), srv.addr());
}
#[cfg(all(feature = "rustls-0_23", feature = "uri"))]
#[actix_rt::test]
async fn test_rustls_uri_http1() {
let srv = TestServer::start(|| {
fn_service(|io: TcpStream| async {
let mut framed = Framed::new(io, BytesCodec);
framed.send(Bytes::from_static(b"test")).await?;
Ok::<_, io::Error>(())
})
});
let conn = Connector::default().service();
let addr = http_1::Uri::try_from(format!("https://localhost:{}", srv.port())).unwrap();
let con = conn.call(addr.into()).await.unwrap();
assert_eq!(con.peer_addr().unwrap(), srv.addr());
}
#[cfg(all(feature = "rustls-0_23", feature = "uri"))]
2020-12-29 12:36:17 +01:00
#[actix_rt::test]
async fn test_rustls_uri() {
2021-12-27 19:27:54 +01:00
let srv = TestServer::start(|| {
2020-12-29 12:36:17 +01:00
fn_service(|io: TcpStream| async {
let mut framed = Framed::new(io, BytesCodec);
framed.send(Bytes::from_static(b"test")).await?;
Ok::<_, io::Error>(())
})
});
let conn = Connector::default().service();
2024-01-17 05:29:44 +01:00
let addr = http_1::Uri::try_from(format!("https://localhost:{}", srv.port())).unwrap();
2020-12-29 12:36:17 +01:00
let con = conn.call(addr.into()).await.unwrap();
assert_eq!(con.peer_addr().unwrap(), srv.addr());
}
#[actix_rt::test]
async fn test_local_addr() {
2021-12-27 19:27:54 +01:00
let srv = TestServer::start(|| {
fn_service(|io: TcpStream| async {
let mut framed = Framed::new(io, BytesCodec);
framed.send(Bytes::from_static(b"test")).await?;
Ok::<_, io::Error>(())
})
});
2022-10-17 05:27:34 +02:00
// if you've arrived here because of a failing test on macOS run this in your terminal:
// sudo ifconfig lo0 alias 127.0.0.3
let conn = Connector::default().service();
let local = IpAddr::V4(Ipv4Addr::new(127, 0, 0, 3));
let (con, _) = conn
.call(ConnectInfo::with_addr("10", srv.addr()).set_local_addr(local))
.await
.unwrap()
.into_parts();
assert_eq!(con.local_addr().unwrap().ip(), local)
}