5 changed files with 1048 additions and 73 deletions
File diff suppressed because it is too large
@ -0,0 +1,56 @@ |
|||
use std::{net::SocketAddr, time::Duration}; |
|||
|
|||
use http::StatusCode; |
|||
use sthp::proxy_request; |
|||
use tokio::net::TcpListener; |
|||
|
|||
use color_eyre::Result; |
|||
use socksprox::Socks5Server; |
|||
use tokio::task::JoinHandle; |
|||
|
|||
async fn start_socks_server() -> Result<(JoinHandle<()>, SocketAddr)> { |
|||
// TODO: currently Socks5Server doesnt return what port it binded
|
|||
// so we will use TcpListener to get the random port and release it immediatly
|
|||
let listener = TcpListener::bind("localhost:0").await?; |
|||
let addr = listener.local_addr()?; |
|||
let port = addr.port(); |
|||
// release port
|
|||
drop(listener); |
|||
|
|||
let mut server = Socks5Server::new("localhost", port, None, None) |
|||
.await |
|||
.unwrap(); |
|||
let join_handle = tokio::task::spawn(async move { |
|||
server.serve().await; |
|||
}); |
|||
Ok((join_handle, addr)) |
|||
} |
|||
|
|||
#[tokio::test] |
|||
async fn simple_test() -> Result<()> { |
|||
let (_, socks_proxy_addr) = start_socks_server().await?; |
|||
let listener = TcpListener::bind("localhost:0").await?; |
|||
let addr = listener.local_addr()?; |
|||
let _ = tokio::task::spawn(async move { |
|||
let (stream, proxy_addr) = listener.accept().await?; |
|||
proxy_request(stream, socks_proxy_addr, &None, &None).await?; |
|||
eprintln!("new connection from: {:?}", proxy_addr); |
|||
Ok::<_, color_eyre::eyre::Error>(()) |
|||
}); |
|||
assert_eq!("hello", "hello"); |
|||
|
|||
let client = reqwest::Client::builder() |
|||
.proxy(reqwest::Proxy::http(format!( |
|||
"http://{}:{}", |
|||
addr.ip(), |
|||
addr.port() |
|||
))?) |
|||
.build()?; |
|||
|
|||
assert_eq!( |
|||
client.get("http://example.org").send().await?.status(), |
|||
StatusCode::OK |
|||
); |
|||
eprintln!("http proxy handle dropped"); |
|||
Ok(()) |
|||
} |
Loading…
Reference in new issue