use assert_cmd::cargo::*;
use predicates::prelude::*;
use assert_fs::fixture::FileWriteStr;
#[test]
fn find_a_match() {
let mut result = Vec::new();
grrs_tutorial::find_matches("lorem ipsum\ndolor sit amet",
"lorem",
&mut result);
assert_eq!(result, b"lorem ipsum\n");
}
#[test] fn file_doesnt_exist() -> Result<(), Box<dyn std::error::Error>> {
let mut cmd = cargo_bin_cmd!("grrs-tutorial");
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<dyn std::error::Error>> {
let file = assert_fs::NamedTempFile::new("sample.txt")?;
file.write_str("A test\nActual content\nMore content\nAnother test")?;
let mut cmd = cargo_bin_cmd!("grrs-tutorial");
cmd.arg("test").arg(file.path());
cmd.assert()
.success()
.stdout(predicate::str::contains("A test\nAnother test"));
Ok(())
}