clap/tests/raw_attributes.rs

129 lines
3.5 KiB
Rust
Raw Normal View History

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-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.
#[macro_use]
2018-07-02 19:06:46 +00:00
extern crate clap;
2018-07-02 19:06:46 +00:00
use clap::{AppSettings, Clap};
// Check if the global settings compile
2018-07-02 19:06:46 +00:00
#[derive(Clap, Debug, PartialEq, Eq)]
#[clap(raw(global_settings = "&[AppSettings::ColoredHelp]"))]
struct Opt {
2018-07-02 19:06:46 +00:00
#[clap(
2018-06-05 16:16:17 +00:00
long = "x",
raw(
display_order = "2",
next_line_help = "true",
default_value = r#""0""#,
require_equals = "true"
)
)]
x: i32,
2018-07-02 19:06:46 +00:00
#[clap(short = "l", long = "level", raw(aliases = r#"&["set-level", "lvl"]"#))]
level: String,
2018-07-02 19:06:46 +00:00
#[clap(long = "values")]
values: Vec<i32>,
2018-07-02 19:06:46 +00:00
#[clap(name = "FILE", raw(requires_if = r#""FILE", "values""#))]
files: Vec<String>,
}
#[test]
fn test_raw_slice() {
2018-05-21 14:54:22 +00:00
assert_eq!(
Opt {
x: 0,
level: "1".to_string(),
files: Vec::new(),
values: vec![],
},
2018-07-02 19:06:46 +00:00
Opt::from_argmatches(&Opt::into_app().get_matches_from(&["test", "-l", "1"]))
2018-05-21 14:54:22 +00:00
);
assert_eq!(
Opt {
x: 0,
level: "1".to_string(),
files: Vec::new(),
values: vec![],
},
2018-07-02 19:06:46 +00:00
Opt::from_argmatches(&Opt::into_app().get_matches_from(&["test", "--level", "1"]))
2018-05-21 14:54:22 +00:00
);
assert_eq!(
Opt {
x: 0,
level: "1".to_string(),
files: Vec::new(),
values: vec![],
},
2018-07-02 19:06:46 +00:00
Opt::from_argmatches(&Opt::into_app().get_matches_from(&["test", "--set-level", "1"]))
2018-05-21 14:54:22 +00:00
);
assert_eq!(
Opt {
x: 0,
level: "1".to_string(),
files: Vec::new(),
values: vec![],
},
2018-07-02 19:06:46 +00:00
Opt::from_argmatches(&Opt::into_app().get_matches_from(&["test", "--lvl", "1"]))
2018-05-21 14:54:22 +00:00
);
}
#[test]
fn test_raw_multi_args() {
2018-05-21 14:54:22 +00:00
assert_eq!(
Opt {
x: 0,
level: "1".to_string(),
files: vec!["file".to_string()],
values: vec![],
},
2018-07-02 19:06:46 +00:00
Opt::from_argmatches(&Opt::into_app().get_matches_from(&["test", "-l", "1", "file"]))
2018-05-21 14:54:22 +00:00
);
assert_eq!(
Opt {
x: 0,
level: "1".to_string(),
files: vec!["FILE".to_string()],
values: vec![1],
},
2018-07-02 19:06:46 +00:00
Opt::from_argmatches(
&Opt::into_app().get_matches_from(&["test", "-l", "1", "--values", "1", "--", "FILE"]),
2018-07-02 17:41:01 +00:00
)
2018-05-21 14:54:22 +00:00
);
}
#[test]
fn test_raw_multi_args_fail() {
2018-07-02 19:06:46 +00:00
let result = Opt::into_app().get_matches_from_safe(&["test", "-l", "1", "--", "FILE"]);
assert!(result.is_err());
}
#[test]
fn test_raw_bool() {
2018-05-21 14:54:22 +00:00
assert_eq!(
Opt {
x: 1,
level: "1".to_string(),
files: vec![],
values: vec![],
},
2018-07-02 19:06:46 +00:00
Opt::from_argmatches(&Opt::into_app().get_matches_from(&["test", "-l", "1", "--x=1"]))
2018-05-21 14:54:22 +00:00
);
2018-07-02 19:06:46 +00:00
let result = Opt::into_app().get_matches_from_safe(&["test", "-l", "1", "--x", "1"]);
assert!(result.is_err());
}