You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
distant/distant-lua-tests/tests/lua/sync/spawn.rs

289 lines
9.0 KiB
Rust

use crate::common::{fixtures::*, lua, session};
use assert_fs::prelude::*;
use mlua::chunk;
use once_cell::sync::Lazy;
use rstest::*;
static TEMP_SCRIPT_DIR: Lazy<assert_fs::TempDir> = Lazy::new(|| assert_fs::TempDir::new().unwrap());
static SCRIPT_RUNNER: Lazy<String> = Lazy::new(|| String::from("bash"));
static ECHO_ARGS_TO_STDOUT_SH: Lazy<assert_fs::fixture::ChildPath> = Lazy::new(|| {
let script = TEMP_SCRIPT_DIR.child("echo_args_to_stdout.sh");
script
.write_str(indoc::indoc!(
r#"
#/usr/bin/env bash
printf "%s" "$*"
"#
))
.unwrap();
script
});
static ECHO_ARGS_TO_STDERR_SH: Lazy<assert_fs::fixture::ChildPath> = Lazy::new(|| {
let script = TEMP_SCRIPT_DIR.child("echo_args_to_stderr.sh");
script
.write_str(indoc::indoc!(
r#"
#/usr/bin/env bash
printf "%s" "$*" 1>&2
"#
))
.unwrap();
script
});
static ECHO_STDIN_TO_STDOUT_SH: Lazy<assert_fs::fixture::ChildPath> = Lazy::new(|| {
let script = TEMP_SCRIPT_DIR.child("echo_stdin_to_stdout.sh");
script
.write_str(indoc::indoc!(
r#"
#/usr/bin/env bash
while IFS= read; do echo "$REPLY"; done
"#
))
.unwrap();
script
});
static SLEEP_SH: Lazy<assert_fs::fixture::ChildPath> = Lazy::new(|| {
let script = TEMP_SCRIPT_DIR.child("sleep.sh");
script
.write_str(indoc::indoc!(
r#"
#!/usr/bin/env bash
sleep "$1"
"#
))
.unwrap();
script
});
static DOES_NOT_EXIST_BIN: Lazy<assert_fs::fixture::ChildPath> =
Lazy::new(|| TEMP_SCRIPT_DIR.child("does_not_exist_bin"));
#[rstest]
fn should_return_error_on_failure(ctx: &'_ DistantServerCtx) {
let lua = lua::make().unwrap();
let new_session = session::make_function(&lua, ctx).unwrap();
let cmd = DOES_NOT_EXIST_BIN.to_str().unwrap().to_string();
let args: Vec<String> = Vec::new();
let result = lua
.load(chunk! {
local session = $new_session()
local status, _ = pcall(session.spawn, session, {
cmd = $cmd,
args = $args
})
assert(not status, "Unexpectedly succeeded!")
})
.exec();
assert!(result.is_ok(), "Failed: {}", result.unwrap_err());
}
#[rstest]
fn should_return_back_process_on_success(ctx: &'_ DistantServerCtx) {
let lua = lua::make().unwrap();
let new_session = session::make_function(&lua, ctx).unwrap();
let cmd = SCRIPT_RUNNER.to_string();
let args = vec![ECHO_ARGS_TO_STDOUT_SH.to_str().unwrap().to_string()];
let result = lua
.load(chunk! {
local session = $new_session()
local proc = session:spawn({ cmd = $cmd, args = $args })
assert(proc.id >= 0, "Invalid process returned")
})
.exec();
assert!(result.is_ok(), "Failed: {}", result.unwrap_err());
}
// NOTE: Ignoring on windows because it's using WSL which wants a Linux path
// with / but thinks it's on windows and is providing \
#[rstest]
#[cfg_attr(windows, ignore)]
fn should_return_process_that_can_retrieve_stdout(ctx: &'_ DistantServerCtx) {
let lua = lua::make().unwrap();
let new_session = session::make_function(&lua, ctx).unwrap();
let cmd = SCRIPT_RUNNER.to_string();
let args = vec![
ECHO_ARGS_TO_STDOUT_SH.to_str().unwrap().to_string(),
String::from("some stdout"),
];
let wait_fn = lua
.create_function(|_, ()| {
std::thread::sleep(std::time::Duration::from_millis(50));
Ok(())
})
.unwrap();
let result = lua
.load(chunk! {
local session = $new_session()
local proc = session:spawn({ cmd = $cmd, args = $args })
// Wait briefly to ensure the process sends stdout
$wait_fn()
local stdout = proc:read_stdout()
assert(stdout == "some stdout", "Unexpected stdout: " .. stdout)
})
.exec();
assert!(result.is_ok(), "Failed: {}", result.unwrap_err());
}
// NOTE: Ignoring on windows because it's using WSL which wants a Linux path
// with / but thinks it's on windows and is providing \
#[rstest]
#[cfg_attr(windows, ignore)]
fn should_return_process_that_can_retrieve_stderr(ctx: &'_ DistantServerCtx) {
let lua = lua::make().unwrap();
let new_session = session::make_function(&lua, ctx).unwrap();
let cmd = SCRIPT_RUNNER.to_string();
let args = vec![
ECHO_ARGS_TO_STDERR_SH.to_str().unwrap().to_string(),
String::from("some stderr"),
];
let wait_fn = lua
.create_function(|_, ()| {
std::thread::sleep(std::time::Duration::from_millis(50));
Ok(())
})
.unwrap();
let result = lua
.load(chunk! {
local session = $new_session()
local proc = session:spawn({ cmd = $cmd, args = $args })
// Wait briefly to ensure the process sends stdout
$wait_fn()
local stderr = proc:read_stderr()
assert(stderr == "some stderr", "Unexpected stderr: " .. stderr)
})
.exec();
assert!(result.is_ok(), "Failed: {}", result.unwrap_err());
}
#[rstest]
fn should_return_error_when_killing_dead_process(ctx: &'_ DistantServerCtx) {
let lua = lua::make().unwrap();
let new_session = session::make_function(&lua, ctx).unwrap();
// Spawn a process that will exit immediately, but is a valid process
let cmd = SCRIPT_RUNNER.to_string();
let args = vec![SLEEP_SH.to_str().unwrap().to_string(), String::from("0")];
let wait_fn = lua
.create_function(|_, ()| {
std::thread::sleep(std::time::Duration::from_millis(50));
Ok(())
})
.unwrap();
let result = lua
.load(chunk! {
local session = $new_session()
local proc = session:spawn({ cmd = $cmd, args = $args })
// Wait briefly to ensure the process dies
$wait_fn()
local status, _ = pcall(proc.kill, proc)
assert(not status, "Unexpectedly succeeded")
})
.exec();
assert!(result.is_ok(), "Failed: {}", result.unwrap_err());
}
#[rstest]
fn should_support_killing_processing(ctx: &'_ DistantServerCtx) {
let lua = lua::make().unwrap();
let new_session = session::make_function(&lua, ctx).unwrap();
let cmd = SCRIPT_RUNNER.to_string();
let args = vec![SLEEP_SH.to_str().unwrap().to_string(), String::from("1")];
let result = lua
.load(chunk! {
local session = $new_session()
local proc = session:spawn({ cmd = $cmd, args = $args })
proc:kill()
})
.exec();
assert!(result.is_ok(), "Failed: {}", result.unwrap_err());
}
#[rstest]
fn should_return_error_if_sending_stdin_to_dead_process(ctx: &'_ DistantServerCtx) {
let lua = lua::make().unwrap();
let new_session = session::make_function(&lua, ctx).unwrap();
// Spawn a process that will exit immediately, but is a valid process
let cmd = SCRIPT_RUNNER.to_string();
let args = vec![SLEEP_SH.to_str().unwrap().to_string(), String::from("0")];
let wait_fn = lua
.create_function(|_, ()| {
std::thread::sleep(std::time::Duration::from_millis(50));
Ok(())
})
.unwrap();
let result = lua
.load(chunk! {
local session = $new_session()
local proc = session:spawn({ cmd = $cmd, args = $args })
// Wait briefly to ensure the process dies
$wait_fn()
local status, _ = pcall(proc.write_stdin, proc, "some text")
assert(not status, "Unexpectedly succeeded")
})
.exec();
assert!(result.is_ok(), "Failed: {}", result.unwrap_err());
}
// NOTE: Ignoring on windows because it's using WSL which wants a Linux path
// with / but thinks it's on windows and is providing \
#[rstest]
#[cfg_attr(windows, ignore)]
fn should_support_sending_stdin_to_spawned_process(ctx: &'_ DistantServerCtx) {
let lua = lua::make().unwrap();
let new_session = session::make_function(&lua, ctx).unwrap();
let cmd = SCRIPT_RUNNER.to_string();
let args = vec![ECHO_STDIN_TO_STDOUT_SH.to_str().unwrap().to_string()];
let wait_fn = lua
.create_function(|_, ()| {
std::thread::sleep(std::time::Duration::from_millis(50));
Ok(())
})
.unwrap();
let result = lua
.load(chunk! {
local session = $new_session()
local proc = session:spawn({ cmd = $cmd, args = $args })
proc:write_stdin("some text\n")
// Wait briefly to ensure the process echoes stdin
$wait_fn()
local stdout = proc:read_stdout()
assert(stdout == "some text\n", "Unexpected stdin sent: " .. stdout)
})
.exec();
assert!(result.is_ok(), "Failed: {}", result.unwrap_err());
}