bashkit 0.1.16

Awesomely fast virtual sandbox with bash and file system
Documentation
//! Regression test for #274: Pipeline stdin not forwarded to user-defined functions

use bashkit::Bash;
use std::path::Path;

#[tokio::test]
async fn issue_274_pipeline_stdin_to_function() {
    let mut bash = Bash::new();
    let r = bash
        .exec("to_upper() { tr '[:lower:]' '[:upper:]'; }\necho hello | to_upper")
        .await
        .unwrap();
    assert_eq!(r.stdout.trim(), "HELLO");
}

#[tokio::test]
async fn issue_274_pipeline_stdin_to_sourced_function() {
    let mut bash = Bash::new();
    let fs = bash.fs();
    fs.write_file(
        Path::new("/lib.sh"),
        b"to_upper() { tr '[:lower:]' '[:upper:]'; }",
    )
    .await
    .unwrap();
    let r = bash
        .exec("source /lib.sh\necho hello world | to_upper")
        .await
        .unwrap();
    assert_eq!(r.stdout.trim(), "HELLO WORLD");
}