use libp2p_core::upgrade::{InboundConnectionUpgrade, OutboundConnectionUpgrade};
use libp2p_identity as identity;
use libp2p_noise as noise;
use multihash::Multihash;
use std::collections::HashSet;
const SHA_256_MH: u64 = 0x12;
#[test]
fn webtransport_same_set_of_certhashes() {
let (certhash1, certhash2, _) = certhashes();
handshake_with_certhashes(vec![certhash1, certhash2], vec![certhash1, certhash2]).unwrap();
}
#[test]
fn webtransport_subset_of_certhashes() {
let (certhash1, certhash2, _) = certhashes();
handshake_with_certhashes(vec![certhash1], vec![certhash1, certhash2]).unwrap();
}
#[test]
fn webtransport_client_without_certhashes() {
let (certhash1, certhash2, _) = certhashes();
// Valid when server uses CA-signed TLS certificate.
handshake_with_certhashes(vec![], vec![certhash1, certhash2]).unwrap();
}
#[test]
fn webtransport_client_and_server_without_certhashes() {
// Valid when server uses CA-signed TLS certificate.
handshake_with_certhashes(vec![], vec![]).unwrap();
}
#[test]
fn webtransport_server_empty_certhashes() {
let (certhash1, certhash2, _) = certhashes();
// Invalid case, because a MITM attacker may strip certificates of the server.
let Err(noise::Error::UnknownWebTransportCerthashes(expected, received)) =
handshake_with_certhashes(vec![certhash1, certhash2], vec![])
else {
panic!("unexpected result");
};
assert_eq!(expected, HashSet::from([certhash1, certhash2]));
assert_eq!(received, HashSet::new());
}
#[test]
fn webtransport_client_uninit_certhashes() {
let (certhash1, certhash2, _) = certhashes();
// Valid when server uses CA-signed TLS certificate.
handshake_with_certhashes(None, vec![certhash1, certhash2]).unwrap();
}
#[test]
fn webtransport_client_and_server_uninit_certhashes() {
// Valid when server uses CA-signed TLS certificate.
handshake_with_certhashes(None, None).unwrap();
}
#[test]
fn webtransport_server_uninit_certhashes() {
let (certhash1, certhash2, _) = certhashes();
// Invalid case, because a MITM attacker may strip certificates of the server.
let Err(noise::Error::UnknownWebTransportCerthashes(expected, received)) =
handshake_with_certhashes(vec![certhash1, certhash2], None)
else {
panic!("unexpected result");
};
assert_eq!(expected, HashSet::from([certhash1, certhash2]));
assert_eq!(received, HashSet::new());
}
#[test]
fn webtransport_different_server_certhashes() {
let (certhash1, certhash2, certhash3) = certhashes();
let Err(noise::Error::UnknownWebTransportCerthashes(expected, received)) =
handshake_with_certhashes(vec![certhash1, certhash3], vec![certhash1, certhash2])
else {
panic!("unexpected result");
};
assert_eq!(expected, HashSet::from([certhash1, certhash3]));
assert_eq!(received, HashSet::from([certhash1, certhash2]));
}
#[test]
fn webtransport_superset_of_certhashes() {
let (certhash1, certhash2, _) = certhashes();
let Err(noise::Error::UnknownWebTransportCerthashes(expected, received)) =
handshake_with_certhashes(vec![certhash1, certhash2], vec![certhash1])
else {
panic!("unexpected result");
};
assert_eq!(expected, HashSet::from([certhash1, certhash2]));
assert_eq!(received, HashSet::from([certhash1]));
}
fn certhashes() -> (Multihash<64>, Multihash<64>, Multihash<64>) {
(
Multihash::wrap(SHA_256_MH, b"1").unwrap(),
Multihash::wrap(SHA_256_MH, b"2").unwrap(),
Multihash::wrap(SHA_256_MH, b"3").unwrap(),
)
}
// `valid_certhases` must be a strict subset of `server_certhashes`.
fn handshake_with_certhashes(
valid_certhases: impl Into