Move tests into a separate directory

Also run these tests on Github Actions as part of the PR request
flow.
This commit is contained in:
Sam Poder 2023-06-29 18:18:55 +00:00 committed by Conrad Kramer
parent a2e93278c1
commit 1907b11545
6 changed files with 68 additions and 95 deletions

View file

@ -11,6 +11,7 @@ fn test_create() {
#[test]
#[throws]
#[cfg(not(target_os = "windows"))]
fn test_set_get_ipv4() {
let tun = TunInterface::new()?;
@ -23,7 +24,7 @@ fn test_set_get_ipv4() {
#[test]
#[throws]
#[cfg(target_os = "linux")]
#[cfg(not(any(target_os = "windows", target_vendor = "apple")))]
fn test_set_get_ipv6() {
let tun = TunInterface::new()?;
@ -33,3 +34,29 @@ fn test_set_get_ipv6() {
// let result = tun.ipv6_addr()?;
// assert_eq!(addr, result);
}
#[test]
#[throws]
#[cfg(not(target_os = "windows"))]
fn test_set_get_mtu() {
let interf = TunInterface::new()?;
interf.set_mtu(500)?;
assert_eq!(interf.mtu().unwrap(), 500);
}
#[test]
#[throws]
#[cfg(not(target_os = "windows"))]
fn test_set_get_netmask() {
let interf = TunInterface::new()?;
let netmask = Ipv4Addr::new(255, 0, 0, 0);
let addr = Ipv4Addr::new(192, 168, 1, 1);
interf.set_ipv4_addr(addr)?;
interf.set_netmask(netmask)?;
assert_eq!(interf.netmask()?, netmask);
}