Skip to content

Commit

Permalink
Merge pull request #255 from Vinatorul/tests
Browse files Browse the repository at this point in the history
Some new tests for positionals
  • Loading branch information
Vinatorul committed Sep 18, 2015
2 parents f9efb54 + eb65a07 commit 320209c
Showing 1 changed file with 84 additions and 0 deletions.
84 changes: 84 additions & 0 deletions tests/positionals.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
extern crate clap;

use clap::{App, Arg, ClapErrorType};

#[test]
fn positional() {
let m = App::new("positional")
.args(vec![
Arg::from_usage("-f, --flag 'some flag'"),
Arg::with_name("positional")
.index(1)
])
.get_matches_from(vec!["", "-f", "test"]);
assert!(m.is_present("positional"));
assert!(m.is_present("flag"));
assert_eq!(m.value_of("positional").unwrap(), "test");

let m = App::new("positional")
.args(vec![
Arg::from_usage("-f, --flag 'some flag'"),
Arg::with_name("positional")
.index(1)
])
.get_matches_from(vec!["", "test", "--flag"]);
assert!(m.is_present("positional"));
assert!(m.is_present("flag"));
assert_eq!(m.value_of("positional").unwrap(), "test");
}

#[test]
fn positional_multiple() {
let m = App::new("positional_multiple")
.args(vec![
Arg::from_usage("-f, --flag 'some flag'"),
Arg::with_name("positional")
.index(1)
.multiple(true)
])
.get_matches_from(vec!["", "-f", "test1", "test2", "test3"]);
assert!(m.is_present("positional"));
assert!(m.is_present("flag"));
assert_eq!(m.values_of("positional").unwrap(), vec!["test1", "test2", "test3"]);

let m = App::new("positional_multiple")
.args(vec![
Arg::from_usage("-f, --flag 'some flag'"),
Arg::with_name("positional")
.index(1)
.multiple(true)
])
.get_matches_from(vec!["", "test1", "test2", "test3", "--flag"]);
assert!(m.is_present("positional"));
assert!(m.is_present("flag"));
assert_eq!(m.values_of("positional").unwrap(), vec!["test1", "test2", "test3"]);
}

#[test]
fn positional_multiple_2() {
let result = App::new("positional_multiple")
.args(vec![
Arg::from_usage("-f, --flag 'some flag'"),
Arg::with_name("positional")
.index(1)
])
.get_matches_from_safe(vec!["", "-f", "test1", "test2", "test3"]);
assert!(result.is_err());
let err = result.err().unwrap();
assert_eq!(err.error_type, ClapErrorType::UnexpectedArgument);
}

#[test]
fn positional_possible_values() {
let m = App::new("positional_possible_values")
.args(vec![
Arg::from_usage("-f, --flag 'some flag'"),
Arg::with_name("positional")
.index(1)
.possible_value("test123")
])
.get_matches_from(vec!["", "-f", "test123"]);
assert!(m.is_present("positional"));
assert!(m.is_present("flag"));
assert_eq!(m.values_of("positional").unwrap(), vec!["test123"]);
}

0 comments on commit 320209c

Please sign in to comment.