just/tests/interrupts.rs

89 lines
1.5 KiB
Rust
Raw Normal View History

2022-12-27 20:16:18 -08:00
use {
super::*,
std::time::{Duration, Instant},
};
2019-04-12 00:46:29 -07:00
fn kill(process_id: u32) {
unsafe {
libc::kill(process_id as i32, libc::SIGINT);
}
}
fn interrupt_test(arguments: &[&str], justfile: &str) {
let tmp = tempdir();
let mut justfile_path = tmp.path().to_path_buf();
justfile_path.push("justfile");
fs::write(justfile_path, unindent(justfile)).unwrap();
let start = Instant::now();
2022-12-15 16:53:21 -08:00
let mut child = Command::new(executable_path("just"))
.current_dir(tmp)
.args(arguments)
.spawn()
.expect("just invocation failed");
while start.elapsed() < Duration::from_millis(500) {}
kill(child.id());
let status = child.wait().unwrap();
let elapsed = start.elapsed();
if elapsed > Duration::from_secs(2) {
panic!("process returned too late: {:?}", elapsed);
}
if elapsed < Duration::from_millis(100) {
panic!("process returned too early : {:?}", elapsed);
2019-04-12 00:46:29 -07:00
}
assert_eq!(status.code(), Some(130));
}
#[test]
#[ignore]
fn interrupt_shebang() {
interrupt_test(
&[],
"
2021-05-09 20:35:35 -07:00
default:
#!/usr/bin/env sh
sleep 1
",
);
}
#[test]
#[ignore]
fn interrupt_line() {
interrupt_test(
&[],
"
2021-05-09 20:35:35 -07:00
default:
@sleep 1
",
);
}
#[test]
#[ignore]
fn interrupt_backtick() {
interrupt_test(
&[],
"
2021-05-09 20:35:35 -07:00
foo := `sleep 1`
2021-05-09 20:35:35 -07:00
default:
@echo {{foo}}
",
);
}
2021-05-09 20:35:35 -07:00
#[test]
#[ignore]
fn interrupt_command() {
interrupt_test(&["--command", "sleep", "1"], "");
}