aboutsummaryrefslogtreecommitdiff
path: root/argparse/src/test_enum.rs
blob: 52057387c2d848fbacd88f1a510deb63d9f33941 (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
use std::str::FromStr;

use parser::ArgumentParser;
use super::Store;
use test_parser::{check_ok};

use self::Greeting::{Hello, Hi, NoGreeting};


#[derive(PartialEq, Eq, Debug)]
enum Greeting {
    Hello,
    Hi,
    NoGreeting,
}

impl FromStr for Greeting {
    type Err = ();
    fn from_str(src: &str) -> Result<Greeting, ()> {
        return match src {
            "hello" => Ok(Hello),
            "hi" => Ok(Hi),
            _ => Err(()),
        };
    }
}

fn parse_enum(args: &[&str]) -> Greeting {
    let mut val = NoGreeting;
    {
        let mut ap = ArgumentParser::new();
        ap.refer(&mut val)
          .add_option(&["-g"], Store,
            "Greeting");
        check_ok(&ap, args);
    }
    return val;
}

#[test]
fn test_parse_enum() {
    assert_eq!(parse_enum(&["./argparse_test"]), NoGreeting);
    assert_eq!(parse_enum(&["./argparse_test", "-ghello"]), Hello);
    assert_eq!(parse_enum(&["./argparse_test", "-ghi"]), Hi);
}

#[test]
#[should_panic]
fn test_parse_error() {
    parse_enum(&["./argparse_test", "-ghell"]);
}