use assert_cmd::prelude::*; use assert_fs::prelude::*; use predicates::prelude::*; use std::process::Command; #[test] fn file_doesnt_exist() -> Result<(), Box> { let mut cmd = Command::cargo_bin("grrs")?; cmd.arg("foobar").arg("test/file/doesnt/exist"); cmd.assert() .failure() .stderr(predicate::str::contains("could not read file")); Ok(()) } #[test] fn find_content_in_file() -> Result<(), Box> { let file = assert_fs::NamedTempFile::new("sample.txt")?; file.write_str("A test\nActual content\nMore content\nAnother test")?; let mut cmd = Command::cargo_bin("grrs")?; cmd.arg("test").arg(file.path()); cmd.assert() .success() .stdout(predicate::str::contains("A test\nAnother test")); Ok(()) } #[test] fn get_all_file_content() -> Result<(), Box> { let file = assert_fs::NamedTempFile::new("foo.txt")?; file.write_str("fn foo\nfn foo2")?; let mut cmd = Command::cargo_bin("grrs")?; cmd.arg(" ").arg(file.path()); cmd.assert() .success() .stdout(predicate::str::contains(std::fs::read_to_string(file.path())?)); Ok(()) }