just/tests/interrupts.rs

88 lines
1.5 KiB
Rust
Raw Normal View History

#[cfg(unix)]
2019-04-12 00:46:29 -07:00
mod unix {
use executable_path::executable_path;
use std::{
process::Command,
time::{Duration, Instant},
};
use tempdir::TempDir;
fn kill(process_id: u32) {
unsafe {
libc::kill(process_id as i32, libc::SIGINT);
}
}
2019-04-12 00:46:29 -07:00
fn interrupt_test(justfile: &str) {
let tmp = TempDir::new("just-interrupts").unwrap_or_else(|err| {
panic!(
"integration test: failed to create temporary directory: {}",
err
)
});
2019-04-12 00:46:29 -07:00
let mut justfile_path = tmp.path().to_path_buf();
justfile_path.push("justfile");
brev::dump(justfile_path, justfile);
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)
.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]
fn interrupt_shebang() {
interrupt_test(
"
default:
#!/usr/bin/env sh
sleep 1
",
2019-04-12 00:46:29 -07:00
);
}
2019-04-12 00:46:29 -07:00
#[test]
fn interrupt_line() {
interrupt_test(
"
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(
"
foo = `sleep 1`
default:
2019-04-12 00:46:29 -07:00
@echo {{foo}}
",
2019-04-12 00:46:29 -07:00
);
}
}