summaryrefslogtreecommitdiffstats
path: root/tests/ui/src/imag_tag.rs
blob: 2f86496ace783006e9b022ec8262670088a12413 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
//
// imag - the personal information management suite for the commandline
// Copyright (C) 2015-2020 Matthias Beyer <mail@beyermatthias.de> and contributors
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; version
// 2.1 of the License.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// 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("--pipe-input");
    binary.arg("--pipe-output");
    binary.args(args);
    debug!("Command = {:?}", binary);
    crate::imag::stdout_of_command(binary)
}

pub fn call_give_ids(tmpdir: &TempDir, args: &[&str]) -> Vec<String> {
    let mut binary = binary(tmpdir);
    binary.stdin(std::process::Stdio::inherit());
    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");
}

#[test]
fn test_listing_entries_with_certain_tag() {
    crate::setup_logging();
    let imag_home = crate::imag::make_temphome();
    crate::imag_init::call(&imag_home);
    crate::imag_create::call(&imag_home, &["test1", "test2", "test3"]);
    let _      = call(&imag_home, &["test1", "add", "tag1"]);
    let _      = call(&imag_home, &["test2", "add", "tag2"]);
    let _      = call(&imag_home, &["test3", "add", "tag3"]);

    let output = call_give_ids(&imag_home, &["present", "tag1"]);
    debug!("output = {:?}", output);

    assert!(!output.is_empty());
    assert_eq!(output.len(), 1);
    assert!(output[0].contains("test1"));
    assert!(output.iter().all(|s| !s.contains("test2")));
    assert!(output.iter().all(|s| !s.contains("test3")));
}

#[test]
fn test_listing_entries_without_certain_tag() {
    crate::setup_logging();
    let imag_home = crate::imag::make_temphome();
    crate::imag_init::call(&imag_home);
    crate::imag_create::call(&imag_home, &["test1", "test2", "test3"]);
    let _      = call(&imag_home, &["test1", "add", "tag1"]);
    let _      = call(&imag_home, &["test2", "add", "tag2"]);
    let _      = call(&imag_home, &["test3", "add", "tag3"]);

    let output = call_give_ids(&imag_home, &["missing", "tag1"]);
    debug!("output = {:?}", output);

    assert!(!output.is_empty());
    assert_eq!(output.len(), 2);
    assert!(output.iter().any(|s| s.contains("test2")));
    assert!(output.iter().any(|s| s.contains("test3")));
    assert!(output.iter().all(|s| !s.contains("test1")));
}