mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2026-01-17 02:31:02 +00:00
85 lines
1.8 KiB
Rust
85 lines
1.8 KiB
Rust
use crate::common::util::*;
|
|
|
|
#[test]
|
|
fn test_simple_arithmetic() {
|
|
new_ucmd!().args(&["1", "+", "1"]).run().stdout_is("2\n");
|
|
|
|
new_ucmd!().args(&["1", "-", "1"]).run().stdout_is("0\n");
|
|
|
|
new_ucmd!().args(&["3", "*", "2"]).run().stdout_is("6\n");
|
|
|
|
new_ucmd!().args(&["4", "/", "2"]).run().stdout_is("2\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_complex_arithmetic() {
|
|
let run = new_ucmd!()
|
|
.args(&["9223372036854775807", "+", "9223372036854775807"])
|
|
.run();
|
|
run.stdout_is("");
|
|
run.stderr_is("expr: +: Numerical result out of range");
|
|
|
|
let run = new_ucmd!().args(&["9", "/", "0"]).run();
|
|
run.stdout_is("");
|
|
run.stderr_is("expr: division by zero");
|
|
}
|
|
|
|
#[test]
|
|
fn test_parenthesis() {
|
|
new_ucmd!()
|
|
.args(&["(", "1", "+", "1", ")", "*", "2"])
|
|
.run()
|
|
.stdout_is("4\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_or() {
|
|
new_ucmd!()
|
|
.args(&["0", "|", "foo"])
|
|
.run()
|
|
.stdout_is("foo\n");
|
|
|
|
new_ucmd!()
|
|
.args(&["foo", "|", "bar"])
|
|
.run()
|
|
.stdout_is("foo\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_and() {
|
|
new_ucmd!()
|
|
.args(&["foo", "&", "1"])
|
|
.run()
|
|
.stdout_is("foo\n");
|
|
|
|
new_ucmd!().args(&["", "&", "1"]).run().stdout_is("0\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_substr() {
|
|
new_ucmd!()
|
|
.args(&["substr", "abc", "1", "1"])
|
|
.succeeds()
|
|
.stdout_only("a\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_invalid_substr() {
|
|
new_ucmd!()
|
|
.args(&["substr", "abc", "0", "1"])
|
|
.fails()
|
|
.status_code(1)
|
|
.stdout_only("\n");
|
|
|
|
new_ucmd!()
|
|
.args(&["substr", "abc", &(std::usize::MAX.to_string() + "0"), "1"])
|
|
.fails()
|
|
.status_code(1)
|
|
.stdout_only("\n");
|
|
|
|
new_ucmd!()
|
|
.args(&["substr", "abc", "0", &(std::usize::MAX.to_string() + "0")])
|
|
.fails()
|
|
.status_code(1)
|
|
.stdout_only("\n");
|
|
}
|