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:27:45 +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:27:45 +00:00
|
|
|
|
|
|
|
#[macro_use]
|
2018-07-02 19:06:46 +00:00
|
|
|
extern crate clap;
|
2018-02-04 18:27:45 +00:00
|
|
|
|
2018-07-02 19:06:46 +00:00
|
|
|
use clap::Clap;
|
2018-02-04 18:27:45 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn required_option() {
|
2018-07-02 19:06:46 +00:00
|
|
|
#[derive(Clap, PartialEq, Debug)]
|
2018-02-04 18:27:45 +00:00
|
|
|
struct Opt {
|
2018-07-02 19:06:46 +00:00
|
|
|
#[clap(short = "a", long = "arg")]
|
2018-02-04 18:27:45 +00:00
|
|
|
arg: i32,
|
|
|
|
}
|
2018-07-13 00:32:28 +00:00
|
|
|
assert_eq!(Opt { arg: 42 }, Opt::parse_from(&["test", "-a42"]));
|
|
|
|
assert_eq!(Opt { arg: 42 }, Opt::parse_from(&["test", "-a", "42"]));
|
|
|
|
assert_eq!(Opt { arg: 42 }, Opt::parse_from(&["test", "--arg", "42"]));
|
|
|
|
assert!(Opt::try_parse_from(&["test"]).is_err());
|
|
|
|
assert!(Opt::try_parse_from(&["test", "-a42", "-a24"]).is_err());
|
2018-02-04 18:27:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn optional_option() {
|
2018-07-02 19:06:46 +00:00
|
|
|
#[derive(Clap, PartialEq, Debug)]
|
2018-02-04 18:27:45 +00:00
|
|
|
struct Opt {
|
2018-07-02 19:06:46 +00:00
|
|
|
#[clap(short = "a")]
|
2018-02-04 18:27:45 +00:00
|
|
|
arg: Option<i32>,
|
|
|
|
}
|
2018-07-13 00:32:28 +00:00
|
|
|
assert_eq!(Opt { arg: Some(42) }, Opt::parse_from(&["test", "-a42"]));
|
|
|
|
assert_eq!(Opt { arg: None }, Opt::parse_from(&["test"]));
|
|
|
|
assert!(Opt::try_parse_from(&["test", "-a42", "-a24"]).is_err());
|
2018-02-04 18:27:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn option_with_default() {
|
2018-07-02 19:06:46 +00:00
|
|
|
#[derive(Clap, PartialEq, Debug)]
|
2018-02-04 18:27:45 +00:00
|
|
|
struct Opt {
|
2018-07-02 19:06:46 +00:00
|
|
|
#[clap(short = "a", default_value = "42")]
|
2018-02-04 18:27:45 +00:00
|
|
|
arg: i32,
|
|
|
|
}
|
2018-07-13 00:32:28 +00:00
|
|
|
assert_eq!(Opt { arg: 24 }, Opt::parse_from(&["test", "-a24"]));
|
|
|
|
assert_eq!(Opt { arg: 42 }, Opt::parse_from(&["test"]));
|
|
|
|
assert!(Opt::try_parse_from(&["test", "-a42", "-a24"]).is_err());
|
2018-02-04 18:27:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn option_with_raw_default() {
|
2018-07-02 19:06:46 +00:00
|
|
|
#[derive(Clap, PartialEq, Debug)]
|
2018-02-04 18:27:45 +00:00
|
|
|
struct Opt {
|
2018-07-02 19:06:46 +00:00
|
|
|
#[clap(short = "a", raw(default_value = r#""42""#))]
|
2018-02-04 18:27:45 +00:00
|
|
|
arg: i32,
|
|
|
|
}
|
2018-07-13 00:32:28 +00:00
|
|
|
assert_eq!(Opt { arg: 24 }, Opt::parse_from(&["test", "-a24"]));
|
|
|
|
assert_eq!(Opt { arg: 42 }, Opt::parse_from(&["test"]));
|
|
|
|
assert!(Opt::try_parse_from(&["test", "-a42", "-a24"]).is_err());
|
2018-02-04 18:27:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn options() {
|
2018-07-02 19:06:46 +00:00
|
|
|
#[derive(Clap, PartialEq, Debug)]
|
2018-02-04 18:27:45 +00:00
|
|
|
struct Opt {
|
2018-07-02 19:06:46 +00:00
|
|
|
#[clap(short = "a", long = "arg")]
|
2018-02-04 18:27:45 +00:00
|
|
|
arg: Vec<i32>,
|
|
|
|
}
|
2018-07-13 00:32:28 +00:00
|
|
|
assert_eq!(Opt { arg: vec![24] }, Opt::parse_from(&["test", "-a24"]));
|
|
|
|
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-13 00:32:28 +00:00
|
|
|
Opt::parse_from(&["test", "-a24", "--arg", "42"])
|
2018-05-21 14:54:22 +00:00
|
|
|
);
|
2018-02-04 18:27:45 +00:00
|
|
|
}
|
2018-02-12 22:46:15 +00:00
|
|
|
|
|
|
|
#[test]
|
2018-07-20 14:46:20 +00:00
|
|
|
fn default_value() {
|
2018-07-02 19:06:46 +00:00
|
|
|
#[derive(Clap, PartialEq, Debug)]
|
2018-02-12 22:46:15 +00:00
|
|
|
struct Opt {
|
2018-07-20 14:46:20 +00:00
|
|
|
#[clap(short = "a", default_value = "test")]
|
2018-02-12 22:46:15 +00:00
|
|
|
arg: String,
|
|
|
|
}
|
2018-07-20 14:46:20 +00:00
|
|
|
assert_eq!(Opt { arg: "test".into() }, Opt::parse_from(&["test"]));
|
2018-05-21 14:54:22 +00:00
|
|
|
assert_eq!(
|
|
|
|
Opt { arg: "foo".into() },
|
2018-07-02 19:06:46 +00:00
|
|
|
Opt::parse_from(&["test", "-afoo"])
|
2018-05-21 14:54:22 +00:00
|
|
|
);
|
2018-02-12 22:46:15 +00:00
|
|
|
}
|