just/tests/interrupts.rs

91 lines
1.6 KiB
Rust
Raw Normal View History

#[cfg(unix)]
2019-04-12 00:46:29 -07:00
mod unix {
2021-07-03 14:26:59 -07:00
use crate::common::*;
use 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);
}
}
2021-05-09 20:35:35 -07:00
fn interrupt_test(arguments: &[&str], justfile: &str) {
let tmp = tempdir();
2019-04-12 00:46:29 -07:00
let mut justfile_path = tmp.path().to_path_buf();
justfile_path.push("justfile");
2021-05-09 20:35:35 -07:00
fs::write(justfile_path, unindent(justfile)).unwrap();
2019-04-12 00:46:29 -07:00
let start = Instant::now();
2019-04-12 00:46:29 -07:00
let mut child = Command::new(&executable_path("just"))
.current_dir(&tmp)
2021-05-09 20:35:35 -07:00
.args(arguments)
2019-04-12 00:46:29 -07:00
.spawn()
.expect("just invocation failed");
2019-04-12 00:46:29 -07:00
while start.elapsed() < Duration::from_millis(500) {}
2019-04-12 00:46:29 -07:00
kill(child.id());
2019-04-12 00:46:29 -07:00
let status = child.wait().unwrap();
2019-04-12 00:46:29 -07:00
let elapsed = start.elapsed();
2019-04-12 00:46:29 -07:00
if elapsed > Duration::from_secs(2) {
panic!("process returned too late: {:?}", elapsed);
}
2019-04-12 00:46:29 -07:00
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));
}
2019-04-12 00:46:29 -07:00
#[test]
#[ignore]
2019-04-12 00:46:29 -07:00
fn interrupt_shebang() {
interrupt_test(
2021-05-09 20:35:35 -07:00
&[],
2019-04-12 00:46:29 -07:00
"
2021-05-09 20:35:35 -07:00
default:
#!/usr/bin/env sh
sleep 1
",
2019-04-12 00:46:29 -07:00
);
}
2019-04-12 00:46:29 -07:00
#[test]
#[ignore]
2019-04-12 00:46:29 -07:00
fn interrupt_line() {
interrupt_test(
2021-05-09 20:35:35 -07:00
&[],
2019-04-12 00:46:29 -07:00
"
2021-05-09 20:35:35 -07:00
default:
@sleep 1
",
2019-04-12 00:46:29 -07:00
);
}
2019-04-12 00:46:29 -07:00
#[test]
#[ignore]
fn interrupt_backtick() {
interrupt_test(
2021-05-09 20:35:35 -07:00
&[],
2019-04-12 00:46:29 -07:00
"
2021-05-09 20:35:35 -07:00
foo := `sleep 1`
2021-05-09 20:35:35 -07:00
default:
@echo {{foo}}
",
2019-04-12 00:46:29 -07:00
);
}
2021-05-09 20:35:35 -07:00
#[test]
#[ignore]
fn interrupt_command() {
interrupt_test(&["--command", "sleep", "1"], "");
}
}