mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 16:33:37 +01:00
7221eb7f39
I have changed `assert!(a == b)` calls to `assert_eq!(a, b)`, which give better error messages. Similarly for `assert!(a != b)` and `assert_ne!(a, b)`. Basically all instances were comparing primitives (string slices or integers), so there is no loss of generality from special-case macros, I have also fixed a number of typos in comments, variable names, and a few user-facing messages.
59 lines
1.5 KiB
Rust
59 lines
1.5 KiB
Rust
use nu_test_support::{nu, pipeline};
|
|
use std::net::TcpListener;
|
|
use std::sync::mpsc;
|
|
|
|
#[test]
|
|
fn port_with_invalid_range() {
|
|
let actual = nu!(
|
|
cwd: ".", pipeline(
|
|
r#"
|
|
port 4000 3999
|
|
"#
|
|
));
|
|
|
|
assert!(actual.err.contains("Invalid range"))
|
|
}
|
|
|
|
#[test]
|
|
fn port_with_already_usage() {
|
|
let retry_times = 10;
|
|
for _ in 0..retry_times {
|
|
let (tx, rx) = mpsc::sync_channel(0);
|
|
|
|
// let system pick a free port for us.
|
|
let free_port = {
|
|
let listener = TcpListener::bind("127.0.0.1:0").expect("failed to pick a port");
|
|
listener.local_addr().unwrap().port()
|
|
};
|
|
let handler = std::thread::spawn(move || {
|
|
let _listener = TcpListener::bind(format!("127.0.0.1:{free_port}"));
|
|
let _ = rx.recv();
|
|
});
|
|
let actual = nu!(
|
|
cwd: ".", pipeline(&format!("port {free_port} {free_port}"))
|
|
);
|
|
let _ = tx.send(true);
|
|
// make sure that the thread is closed and we release the port.
|
|
handler.join().unwrap();
|
|
|
|
// check for error kind str.
|
|
if actual.err.contains("AddrInUse") {
|
|
return;
|
|
}
|
|
}
|
|
panic!("already check port report AddrInUse for several times, but still failed.");
|
|
}
|
|
|
|
#[test]
|
|
fn port_from_system_given() {
|
|
let actual = nu!(
|
|
cwd: ".", pipeline(
|
|
r#"
|
|
port
|
|
"#
|
|
));
|
|
|
|
// check that we can get an integer port from system.
|
|
assert!(actual.out.parse::<u16>().unwrap() > 0)
|
|
}
|