mirror of
https://github.com/NLnetLabs/domain.git
synced 2026-09-11 12:27:44 +02:00
responses. (#377) This adds ComposeRequestMulti and other *Multi types. The main change is to the stream transport, which is the only transport that implements SendRequestMulti.
155 lines
4.7 KiB
Rust
155 lines
4.7 KiB
Rust
#![cfg(feature = "net")]
|
|
|
|
use domain::stelline::client::do_client_simple;
|
|
use domain::stelline::client::CurrStepValue;
|
|
use domain::stelline::connect::Connect;
|
|
use domain::stelline::connection::Connection;
|
|
use domain::stelline::dgram::Dgram;
|
|
use domain::stelline::parse_stelline::parse_file;
|
|
// use domain::net::client::clock::{Clock, FakeClock};
|
|
use domain::net::client::dgram;
|
|
use domain::net::client::dgram_stream;
|
|
use domain::net::client::multi_stream;
|
|
use domain::net::client::redundant;
|
|
use domain::net::client::request::RequestMessageMulti;
|
|
use domain::net::client::stream;
|
|
use std::fs::File;
|
|
use std::net::IpAddr;
|
|
use std::net::SocketAddr;
|
|
use std::str::FromStr;
|
|
use std::sync::Arc;
|
|
use tokio::net::TcpStream;
|
|
|
|
const TEST_FILE: &str = "test-data/client/basic.rpl";
|
|
|
|
#[test]
|
|
fn dgram() {
|
|
tokio_test::block_on(async {
|
|
let file = File::open(TEST_FILE).unwrap();
|
|
let stelline = parse_file(file, TEST_FILE);
|
|
let step_value = Arc::new(CurrStepValue::new());
|
|
|
|
let conn = Dgram::new(stelline.clone(), step_value.clone());
|
|
let dgram = dgram::Connection::new(conn);
|
|
|
|
do_client_simple(&stelline, &step_value, dgram).await;
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn single() {
|
|
tokio_test::block_on(async {
|
|
let file = File::open(TEST_FILE).unwrap();
|
|
let stelline = parse_file(file, TEST_FILE);
|
|
let step_value = Arc::new(CurrStepValue::new());
|
|
|
|
let conn = Connection::new(stelline.clone(), step_value.clone());
|
|
let (octstr, transport) =
|
|
stream::Connection::<_, RequestMessageMulti<Vec<u8>>>::new(conn);
|
|
tokio::spawn(async move {
|
|
transport.run().await;
|
|
});
|
|
|
|
do_client_simple(&stelline, &step_value, octstr).await;
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn multi() {
|
|
tokio_test::block_on(async {
|
|
let file = File::open(TEST_FILE).unwrap();
|
|
let stelline = parse_file(file, TEST_FILE);
|
|
let step_value = Arc::new(CurrStepValue::new());
|
|
|
|
let multi_conn = Connect::new(stelline.clone(), step_value.clone());
|
|
let (ms, ms_tran) = multi_stream::Connection::new(multi_conn);
|
|
tokio::spawn(async move {
|
|
ms_tran.run().await;
|
|
println!("multi conn run terminated");
|
|
});
|
|
|
|
do_client_simple(&stelline, &step_value, ms).await;
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn dgram_stream() {
|
|
tokio_test::block_on(async {
|
|
let file = File::open(TEST_FILE).unwrap();
|
|
let stelline = parse_file(file, TEST_FILE);
|
|
let step_value = Arc::new(CurrStepValue::new());
|
|
|
|
let conn = Dgram::new(stelline.clone(), step_value.clone());
|
|
let multi_conn = Connect::new(stelline.clone(), step_value.clone());
|
|
let (ds, tran) = dgram_stream::Connection::new(conn, multi_conn);
|
|
tokio::spawn(async move {
|
|
tran.run().await;
|
|
println!("dgram_stream conn run terminated");
|
|
});
|
|
|
|
do_client_simple(&stelline, &step_value, ds).await;
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn redundant() {
|
|
tokio_test::block_on(async {
|
|
let file = File::open(TEST_FILE).unwrap();
|
|
let stelline = parse_file(file, TEST_FILE);
|
|
let step_value = Arc::new(CurrStepValue::new());
|
|
|
|
let multi_conn = Connect::new(stelline.clone(), step_value.clone());
|
|
let (ms, ms_tran) = multi_stream::Connection::new(multi_conn);
|
|
tokio::spawn(async move {
|
|
ms_tran.run().await;
|
|
println!("multi conn run terminated");
|
|
});
|
|
|
|
// Redundant add previous connection.
|
|
let (redun, transp) = redundant::Connection::new();
|
|
let run_fut = transp.run();
|
|
tokio::spawn(async move {
|
|
run_fut.await;
|
|
println!("redundant conn run terminated");
|
|
});
|
|
|
|
redun.add(Box::new(ms.clone())).await.unwrap();
|
|
|
|
do_client_simple(&stelline, &step_value, redun).await;
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
#[ignore]
|
|
// Connect directly to the internet. Disabled by default.
|
|
fn tcp() {
|
|
tokio_test::block_on(async {
|
|
let file = File::open(TEST_FILE).unwrap();
|
|
let stelline = parse_file(file, TEST_FILE);
|
|
let step_value = Arc::new(CurrStepValue::new());
|
|
|
|
let server_addr =
|
|
SocketAddr::new(IpAddr::from_str("9.9.9.9").unwrap(), 53);
|
|
|
|
let tcp_conn = match TcpStream::connect(server_addr).await {
|
|
Ok(conn) => conn,
|
|
Err(err) => {
|
|
panic!(
|
|
"TCP Connection to {server_addr} failed: {err}, exiting"
|
|
);
|
|
}
|
|
};
|
|
|
|
let (tcp, transport) = stream::Connection::<
|
|
_,
|
|
RequestMessageMulti<Vec<u8>>,
|
|
>::new(tcp_conn);
|
|
tokio::spawn(async move {
|
|
transport.run().await;
|
|
println!("single TCP run terminated");
|
|
});
|
|
|
|
do_client_simple(&stelline, &step_value, tcp).await;
|
|
});
|
|
}
|