mirror of
https://github.com/nushell/nushell.git
synced 2024-12-04 22:33:50 +01:00
116 lines
2.3 KiB
Rust
116 lines
2.3 KiB
Rust
use assert_cmd::prelude::*;
|
|
use pretty_assertions::assert_eq;
|
|
use std::io::Write;
|
|
use std::process::Command;
|
|
use tempfile::NamedTempFile;
|
|
|
|
type TestResult = Result<(), Box<dyn std::error::Error>>;
|
|
|
|
#[cfg(test)]
|
|
fn run_test(input: &str, expected: &str) -> TestResult {
|
|
let mut file = NamedTempFile::new()?;
|
|
let name = file.path();
|
|
|
|
let mut cmd = Command::cargo_bin("engine-q")?;
|
|
cmd.arg(name);
|
|
|
|
writeln!(file, "{}", input)?;
|
|
|
|
let output = cmd.output()?;
|
|
|
|
let stderr = String::from_utf8_lossy(&output.stderr).to_string();
|
|
let stdout = String::from_utf8_lossy(&output.stdout).to_string();
|
|
|
|
println!("stdout: {}", stdout);
|
|
println!("stderr: {}", stderr);
|
|
|
|
assert!(output.status.success());
|
|
|
|
assert_eq!(stdout.trim(), expected);
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[cfg(test)]
|
|
fn fail_test(input: &str, expected: &str) -> TestResult {
|
|
let mut file = NamedTempFile::new()?;
|
|
let name = file.path();
|
|
|
|
let mut cmd = Command::cargo_bin("engine-q")?;
|
|
cmd.arg(name);
|
|
|
|
writeln!(file, "{}", input)?;
|
|
|
|
let output = cmd.output()?;
|
|
|
|
let output = String::from_utf8_lossy(&output.stderr).to_string();
|
|
println!("{}", output);
|
|
|
|
assert!(output.contains("Error:"));
|
|
assert!(output.contains(expected));
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[test]
|
|
fn add_simple() -> TestResult {
|
|
run_test("3 + 4", "7")
|
|
}
|
|
|
|
#[test]
|
|
fn add_simple2() -> TestResult {
|
|
run_test("3 + 4 + 9", "16")
|
|
}
|
|
|
|
#[test]
|
|
fn broken_math() -> TestResult {
|
|
fail_test("3 + ", "Incomplete")
|
|
}
|
|
|
|
#[test]
|
|
fn if_test1() -> TestResult {
|
|
run_test("if $true { 10 } else { 20 } ", "10")
|
|
}
|
|
|
|
#[test]
|
|
fn if_test2() -> TestResult {
|
|
run_test("if $false { 10 } else { 20 } ", "20")
|
|
}
|
|
|
|
#[test]
|
|
fn no_leak1() -> TestResult {
|
|
fail_test(
|
|
"if $false { let $x = 10 } else { let $x = 20 }; $x",
|
|
"VariableNotFound",
|
|
)
|
|
}
|
|
|
|
#[test]
|
|
fn no_leak2() -> TestResult {
|
|
fail_test(
|
|
"def foo [] { $x }; def bar [] { let $x = 10; foo }; bar",
|
|
"VariableNotFound",
|
|
)
|
|
}
|
|
|
|
#[test]
|
|
fn no_leak3() -> TestResult {
|
|
run_test(
|
|
"def foo [$x] { $x }; def bar [] { let $x = 10; foo 20}; bar",
|
|
"20",
|
|
)
|
|
}
|
|
|
|
#[test]
|
|
fn no_leak4() -> TestResult {
|
|
run_test(
|
|
"def foo [$x] { $x }; def bar [] { let $x = 10; (foo 20) + $x}; bar",
|
|
"30",
|
|
)
|
|
}
|
|
|
|
#[test]
|
|
fn simple_var_closing() -> TestResult {
|
|
run_test("let $x = 10; def foo [] { $x }; foo", "10")
|
|
}
|