summaryrefslogtreecommitdiffstats
path: root/tests/ui/src/imag_category.rs
blob: 0f865c5db902e049b0082e90107c7b5c5b1235d6 (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
//
// 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-category")
}

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_category() {
    crate::setup_logging();
    let imag_home = crate::imag::make_temphome();
    crate::imag_init::call(&imag_home);
    crate::imag_create::call(&imag_home, &["test"]);

    let (assert, stderr_output) = {
        let mut binary = binary(&imag_home);
        binary.stdin(std::process::Stdio::inherit());
        binary.args(&["--ignore-ids", "get", "test"]);
        crate::imag::stderr_of_command(&mut binary)
    };

    assert.failure();
    assert!(stderr_output.iter().any(|substr| substr.contains("Category name missing")));
}

#[test]
fn test_after_setting_a_new_category_there_is_a_category() {
    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, &["create-category", "cat"]);
    let _ = call(&imag_home, &["set", "cat", "test"]);
    let output = call(&imag_home, &["get", "test"]);
    debug!("output = {:?}", output);
    assert!(!output.is_empty());
    assert_eq!(output.len(), 1);
    assert_eq!(output[0], "cat");
}