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
#![deny(missing_debug_implementations, missing_docs, warnings)]

//! # terraform-zap-ignore-lib
//!
//! Contain all ignore related implementation

extern crate serde;
#[macro_use]
extern crate serde_derive;

/// Root structure to hold the ignore method type
/// Using #[serde(untagged)] at the moment due to issue
/// <https://github.com/alexcrichton/toml-rs/issues/225>
#[derive(Serialize, Deserialize, Debug)]
#[serde(untagged)]
pub enum Ignore {
    /// Variant to ignore by exact string match
    Exact {
        /// Array of full resource names to ignore
        exact: Vec<String>,
    },
}

#[cfg(test)]
mod tests {
    extern crate toml;

    use super::*;

    #[test]
    fn test_grep_invert_valid_1() {
        const CONTENT: &str = r#"
            exact = []
        "#;

        let _: Ignore = toml::from_str(CONTENT).unwrap();
    }

    #[test]
    fn test_grep_invert_valid_2() {
        const CONTENT: &str = r#"
            exact = [
                "hello",
                "world",
            ]
        "#;

        let _: Ignore = toml::from_str(CONTENT).unwrap();
    }

    #[test]
    fn test_invalid_1() {
        const CONTENT: &str = "";
        let parsed: Result<Ignore, _> = toml::from_str(CONTENT);
        assert!(parsed.is_err());
    }

    #[test]
    fn test_invalid_2() {
        const CONTENT: &str = "[]";
        let parsed: Result<Ignore, _> = toml::from_str(CONTENT);
        assert!(parsed.is_err());
    }

    #[test]
    fn test_invalid_3() {
        const CONTENT: &str = r#"["hello", "world"]"#;
        let parsed: Result<Ignore, _> = toml::from_str(CONTENT);
        assert!(parsed.is_err());
    }
}