Add imag-tag tests

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
Matthias Beyer 2019-10-20 18:41:15 +02:00
parent f7bc7d0834
commit 0c685fde73

View file

@ -17,3 +17,80 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
// //
use std::process::Command;
use assert_fs::fixture::TempDir;
pub fn binary(tempdir: &TempDir) -> Command {
crate::imag::binary(tempdir, "imag-tag")
}
pub fn call(tmpdir: &TempDir, args: &[&str]) -> Vec<String> {
let mut binary = binary(tmpdir);
binary.stdin(std::process::Stdio::inherit());
binary.arg("--ignore-ids");
binary.args(args);
debug!("Command = {:?}", binary);
crate::imag::stdout_of_command(binary)
}
#[test]
fn test_new_entry_has_no_tags() {
crate::setup_logging();
let imag_home = crate::imag::make_temphome();
crate::imag_init::call(&imag_home);
crate::imag_create::call(&imag_home, &["test"]);
let output = call(&imag_home, &["test", "list", "--linewise"]);
debug!("output = {:?}", output);
assert!(output.is_empty());
}
#[test]
fn test_after_adding_tag_there_is_tag() {
crate::setup_logging();
let imag_home = crate::imag::make_temphome();
crate::imag_init::call(&imag_home);
crate::imag_create::call(&imag_home, &["test"]);
let _ = call(&imag_home, &["test", "add", "tag"]);
let output = call(&imag_home, &["test", "list", "--linewise"]);
debug!("output = {:?}", output);
assert!(!output.is_empty());
assert_eq!(output.len(), 1);
assert_eq!(output[0], "tag");
}
#[test]
fn test_after_adding_and_removing_there_is_no_tag() {
crate::setup_logging();
let imag_home = crate::imag::make_temphome();
crate::imag_init::call(&imag_home);
crate::imag_create::call(&imag_home, &["test"]);
let _ = call(&imag_home, &["test", "add", "tag"]);
let _ = call(&imag_home, &["test", "remove", "tag"]);
let output = call(&imag_home, &["test", "list", "--linewise"]);
debug!("output = {:?}", output);
assert!(output.is_empty());
}
#[test]
fn test_adding_twice_does_not_add_twice() {
crate::setup_logging();
let imag_home = crate::imag::make_temphome();
crate::imag_init::call(&imag_home);
crate::imag_create::call(&imag_home, &["test"]);
let _ = call(&imag_home, &["test", "add", "tag"]);
let _ = call(&imag_home, &["test", "add", "tag"]);
let output = call(&imag_home, &["test", "list", "--linewise"]);
debug!("output = {:?}", output);
assert!(!output.is_empty());
assert_eq!(output.len(), 1);
assert_eq!(output[0], "tag");
}