mirror of
https://github.com/nushell/nushell.git
synced 2024-12-13 02:31:32 +01:00
22ca5a6b8d
- fixes #14241 Signed-off-by: Alex Johnson <alex.kattathra.johnson@gmail.com>
64 lines
1.3 KiB
Rust
64 lines
1.3 KiB
Rust
use std::{thread, time::Duration};
|
|
|
|
use mockito::Server;
|
|
use nu_test_support::{nu, pipeline};
|
|
|
|
#[test]
|
|
fn http_options_is_success() {
|
|
let mut server = Server::new();
|
|
|
|
let _mock = server
|
|
.mock("OPTIONS", "/")
|
|
.with_header("Allow", "OPTIONS, GET")
|
|
.create();
|
|
|
|
let actual = nu!(pipeline(
|
|
format!(
|
|
r#"
|
|
http options {url}
|
|
"#,
|
|
url = server.url()
|
|
)
|
|
.as_str()
|
|
));
|
|
|
|
assert!(!actual.out.is_empty())
|
|
}
|
|
|
|
#[test]
|
|
fn http_options_failed_due_to_server_error() {
|
|
let mut server = Server::new();
|
|
|
|
let _mock = server.mock("OPTIONS", "/").with_status(400).create();
|
|
|
|
let actual = nu!(pipeline(
|
|
format!(
|
|
r#"
|
|
http options {url}
|
|
"#,
|
|
url = server.url()
|
|
)
|
|
.as_str()
|
|
));
|
|
|
|
assert!(actual.err.contains("Bad request (400)"))
|
|
}
|
|
|
|
#[test]
|
|
fn http_options_timeout() {
|
|
let mut server = Server::new();
|
|
let _mock = server
|
|
.mock("OPTIONS", "/")
|
|
.with_chunked_body(|w| {
|
|
thread::sleep(Duration::from_secs(1));
|
|
w.write_all(b"Delayed response!")
|
|
})
|
|
.create();
|
|
|
|
let actual = nu!(pipeline(
|
|
format!("http options --max-time 500ms {url}", url = server.url()).as_str()
|
|
));
|
|
|
|
assert!(&actual.err.contains("nu::shell::io_error"));
|
|
}
|