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
use super::Initializer;

#[derive(Clone, Debug)]
pub struct CommandFound(pub &'static str);

impl Initializer for CommandFound {
    fn initialize(&self) -> anyhow::Result<bool> {
        Ok(which::which(self.0).is_ok())
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use pretty_assertions::assert_eq;

    #[test]
    fn it_returns_false_when_not_found() {
        let initializer = CommandFound("not-a-real-command");
        let result = initializer.initialize();

        assert_eq!(true, result.is_ok());
        assert_eq!(false, result.unwrap());
    }

    #[cfg(target_family = "windows")]
    #[test]
    fn it_returns_true_when_found() {
        let initializer = CommandFound("cmd.exe");
        let result = initializer.initialize();

        assert_eq!(true, result.is_ok());
        assert_eq!(true, result.unwrap());
    }

    #[cfg(target_family = "windows")]
    #[test]
    fn return_true_windows_xcopy() {
        let initializer = CommandFound("Xcopy");
        let result = initializer.initialize();

        assert_eq!(true, result.is_ok());
        assert_eq!(true, result.unwrap());
    }

    #[cfg(target_family = "unix")]
    #[test]
    fn it_returns_true_when_found() {
        let initializer = CommandFound("ls");
        let result = initializer.initialize();

        assert_eq!(true, result.is_ok());
        assert_eq!(true, result.unwrap());
    }
}