2018-07-02 17:41:01 +00:00
|
|
|
// Copyright 2018 Guillaume Pinot (@TeXitoi) <texitoi@texitoi.eu>,
|
|
|
|
// Kevin Knapp (@kbknapp) <kbknapp@gmail.com>, and
|
|
|
|
// Andrew Hobden (@hoverbear) <andrew@hoverbear.org>
|
2018-02-04 18:05:08 +00:00
|
|
|
//
|
2018-02-25 10:22:24 +00:00
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
2018-07-02 17:41:01 +00:00
|
|
|
//
|
|
|
|
// This work was derived from Structopt (https://github.com/TeXitoi/structopt)
|
|
|
|
// commit#ea76fa1b1b273e65e3b0b1046643715b49bec51f which is licensed under the
|
|
|
|
// MIT/Apache 2.0 license.
|
2018-02-04 18:05:08 +00:00
|
|
|
|
|
|
|
#[macro_use]
|
2018-07-02 19:06:46 +00:00
|
|
|
extern crate clap;
|
2018-02-04 18:05:08 +00:00
|
|
|
|
2018-07-02 19:06:46 +00:00
|
|
|
use clap::Clap;
|
2018-02-04 18:05:08 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn required_argument() {
|
2018-07-02 19:06:46 +00:00
|
|
|
#[derive(Clap, PartialEq, Debug)]
|
2018-02-04 18:05:08 +00:00
|
|
|
struct Opt {
|
|
|
|
arg: i32,
|
|
|
|
}
|
2018-07-02 19:06:46 +00:00
|
|
|
assert_eq!(Opt { arg: 42 }, Opt::parse_from(&["test", "42"]));
|
|
|
|
assert!(Opt::into_app().get_matches_from_safe(&["test"]).is_err());
|
2018-05-21 14:54:22 +00:00
|
|
|
assert!(
|
2018-07-02 19:06:46 +00:00
|
|
|
Opt::into_app()
|
2018-05-21 14:54:22 +00:00
|
|
|
.get_matches_from_safe(&["test", "42", "24"])
|
|
|
|
.is_err()
|
|
|
|
);
|
2018-02-04 18:05:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn optional_argument() {
|
2018-07-02 19:06:46 +00:00
|
|
|
#[derive(Clap, PartialEq, Debug)]
|
2018-02-04 18:05:08 +00:00
|
|
|
struct Opt {
|
|
|
|
arg: Option<i32>,
|
|
|
|
}
|
2018-07-02 19:06:46 +00:00
|
|
|
assert_eq!(Opt { arg: Some(42) }, Opt::parse_from(&["test", "42"]));
|
|
|
|
assert_eq!(Opt { arg: None }, Opt::parse_from(&["test"]));
|
2018-05-21 14:54:22 +00:00
|
|
|
assert!(
|
2018-07-02 19:06:46 +00:00
|
|
|
Opt::into_app()
|
2018-05-21 14:54:22 +00:00
|
|
|
.get_matches_from_safe(&["test", "42", "24"])
|
|
|
|
.is_err()
|
|
|
|
);
|
2018-02-04 18:05:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn argument_with_default() {
|
2018-07-02 19:06:46 +00:00
|
|
|
#[derive(Clap, PartialEq, Debug)]
|
2018-02-04 18:05:08 +00:00
|
|
|
struct Opt {
|
2018-07-02 19:06:46 +00:00
|
|
|
#[clap(default_value = "42")]
|
2018-02-04 18:05:08 +00:00
|
|
|
arg: i32,
|
|
|
|
}
|
2018-07-02 19:06:46 +00:00
|
|
|
assert_eq!(Opt { arg: 24 }, Opt::parse_from(&["test", "24"]));
|
|
|
|
assert_eq!(Opt { arg: 42 }, Opt::parse_from(&["test"]));
|
2018-05-21 14:54:22 +00:00
|
|
|
assert!(
|
2018-07-02 19:06:46 +00:00
|
|
|
Opt::into_app()
|
2018-05-21 14:54:22 +00:00
|
|
|
.get_matches_from_safe(&["test", "42", "24"])
|
|
|
|
.is_err()
|
|
|
|
);
|
2018-02-04 18:05:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn argument_with_raw_default() {
|
2018-07-02 19:06:46 +00:00
|
|
|
#[derive(Clap, PartialEq, Debug)]
|
2018-02-04 18:05:08 +00:00
|
|
|
struct Opt {
|
2018-07-02 19:06:46 +00:00
|
|
|
#[clap(raw(default_value = r#""42""#))]
|
2018-02-04 18:05:08 +00:00
|
|
|
arg: i32,
|
|
|
|
}
|
2018-07-02 19:06:46 +00:00
|
|
|
assert_eq!(Opt { arg: 24 }, Opt::parse_from(&["test", "24"]));
|
|
|
|
assert_eq!(Opt { arg: 42 }, Opt::parse_from(&["test"]));
|
2018-05-21 14:54:22 +00:00
|
|
|
assert!(
|
2018-07-02 19:06:46 +00:00
|
|
|
Opt::into_app()
|
2018-05-21 14:54:22 +00:00
|
|
|
.get_matches_from_safe(&["test", "42", "24"])
|
|
|
|
.is_err()
|
|
|
|
);
|
2018-02-04 18:05:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn arguments() {
|
2018-07-02 19:06:46 +00:00
|
|
|
#[derive(Clap, PartialEq, Debug)]
|
2018-02-04 18:05:08 +00:00
|
|
|
struct Opt {
|
|
|
|
arg: Vec<i32>,
|
|
|
|
}
|
2018-07-02 19:06:46 +00:00
|
|
|
assert_eq!(Opt { arg: vec![24] }, Opt::parse_from(&["test", "24"]));
|
|
|
|
assert_eq!(Opt { arg: vec![] }, Opt::parse_from(&["test"]));
|
2018-05-21 14:54:22 +00:00
|
|
|
assert_eq!(
|
|
|
|
Opt { arg: vec![24, 42] },
|
2018-07-02 19:06:46 +00:00
|
|
|
Opt::parse_from(&["test", "24", "42"])
|
2018-05-21 14:54:22 +00:00
|
|
|
);
|
2018-02-04 18:05:08 +00:00
|
|
|
}
|
2018-04-20 13:02:12 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn arguments_safe() {
|
2018-07-02 19:06:46 +00:00
|
|
|
#[derive(Clap, PartialEq, Debug)]
|
2018-04-20 13:02:12 +00:00
|
|
|
struct Opt {
|
|
|
|
arg: Vec<i32>,
|
|
|
|
}
|
2018-05-21 14:54:22 +00:00
|
|
|
assert_eq!(
|
|
|
|
Opt { arg: vec![24] },
|
2018-07-02 19:06:46 +00:00
|
|
|
Opt::try_parse_from(&["test", "24"]).unwrap()
|
2018-05-21 14:54:22 +00:00
|
|
|
);
|
2018-07-03 18:54:44 +00:00
|
|
|
assert_eq!(Opt { arg: vec![] }, Opt::try_parse_from(&["test"]).unwrap());
|
2018-05-21 14:54:22 +00:00
|
|
|
assert_eq!(
|
|
|
|
Opt { arg: vec![24, 42] },
|
2018-07-02 19:06:46 +00:00
|
|
|
Opt::try_parse_from(&["test", "24", "42"]).unwrap()
|
2018-05-21 14:54:22 +00:00
|
|
|
);
|
2018-04-20 13:02:12 +00:00
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
clap::ErrorKind::ValueValidation,
|
2018-07-02 19:06:46 +00:00
|
|
|
Opt::try_parse_from(&["test", "NOPE"]).err().unwrap().kind
|
2018-04-20 13:02:12 +00:00
|
|
|
);
|
|
|
|
}
|