2015-09-09 02:39:31 +00:00
|
|
|
extern crate clap;
|
2016-05-10 02:46:09 +00:00
|
|
|
extern crate regex;
|
|
|
|
|
|
|
|
include!("../clap-test.rs");
|
2015-09-09 02:39:31 +00:00
|
|
|
|
2016-10-20 23:37:39 +00:00
|
|
|
use clap::{App, AppSettings, SubCommand, ErrorKind, Arg};
|
2016-05-09 03:20:50 +00:00
|
|
|
|
|
|
|
static HELP: &'static str = "clap-test v1.4.8
|
|
|
|
Kevin K. <kbknapp@gmail.com>
|
|
|
|
tests clap library
|
|
|
|
|
|
|
|
USAGE:
|
|
|
|
clap-test [FLAGS] [OPTIONS] [ARGS] [SUBCOMMAND]
|
|
|
|
|
|
|
|
FLAGS:
|
|
|
|
-f, --flag tests flags
|
|
|
|
-F tests flags with exclusions
|
|
|
|
-h, --help Prints help information
|
|
|
|
-V, --version Prints version information
|
|
|
|
|
|
|
|
OPTIONS:
|
|
|
|
-O, --Option <option3> specific vals [values: fast, slow]
|
|
|
|
--long-option-2 <option2> tests long options with exclusions
|
|
|
|
--maxvals3 <maxvals>... Tests 3 max vals
|
|
|
|
--minvals2 <minvals>... Tests 2 min vals
|
|
|
|
--multvals <one> <two> Tests mutliple values, not mult occs
|
|
|
|
--multvalsmo <one> <two> Tests mutliple values, and mult occs
|
|
|
|
-o, --option <opt>... tests options
|
|
|
|
|
|
|
|
ARGS:
|
|
|
|
<positional> tests positionals
|
|
|
|
<positional2> tests positionals with exclusions
|
|
|
|
<positional3>... tests specific values [values: vi, emacs]
|
|
|
|
|
|
|
|
SUBCOMMANDS:
|
|
|
|
help Prints this message or the help of the given subcommand(s)
|
2016-05-30 09:39:54 +00:00
|
|
|
subcmd tests subcommands";
|
2016-05-09 03:20:50 +00:00
|
|
|
|
2016-05-30 10:01:00 +00:00
|
|
|
static AFTER_HELP: &'static str = "some text that comes before the help
|
|
|
|
|
|
|
|
clap-test v1.4.8
|
|
|
|
tests clap library
|
|
|
|
|
|
|
|
USAGE:
|
2016-06-24 04:17:04 +00:00
|
|
|
clap-test
|
2016-05-30 10:01:00 +00:00
|
|
|
|
|
|
|
FLAGS:
|
|
|
|
-h, --help Prints help information
|
|
|
|
-V, --version Prints version information
|
|
|
|
|
|
|
|
some text that comes after the help";
|
|
|
|
|
2016-05-09 03:20:50 +00:00
|
|
|
static SC_HELP: &'static str = "subcmd 0.1
|
|
|
|
Kevin K. <kbknapp@gmail.com>
|
|
|
|
tests subcommands
|
|
|
|
|
|
|
|
USAGE:
|
2016-06-04 03:16:02 +00:00
|
|
|
subcmd [FLAGS] [OPTIONS] [--] [scpositional]
|
2016-05-09 03:20:50 +00:00
|
|
|
|
|
|
|
FLAGS:
|
|
|
|
-f, --flag tests flags
|
|
|
|
|
|
|
|
OPTIONS:
|
|
|
|
-o, --option <scoption>... tests options
|
|
|
|
|
|
|
|
ARGS:
|
2016-05-30 09:39:54 +00:00
|
|
|
<scpositional> tests positionals";
|
2016-01-13 17:03:27 +00:00
|
|
|
|
2016-12-01 23:47:20 +00:00
|
|
|
// Using number_of_values(1) with multiple(true) misaligns help message
|
|
|
|
static ISSUE_760: &'static str = "ctest 0.1
|
|
|
|
|
|
|
|
USAGE:
|
|
|
|
ctest [OPTIONS]
|
|
|
|
|
|
|
|
FLAGS:
|
|
|
|
-h, --help Prints help information
|
|
|
|
-V, --version Prints version information
|
|
|
|
|
|
|
|
OPTIONS:
|
|
|
|
-O, --opt <opt> tests options
|
|
|
|
-o, --option <option>... tests options";
|
|
|
|
|
2016-08-20 21:14:18 +00:00
|
|
|
static MULTI_SC_HELP: &'static str = "ctest-subcmd-multi 0.1
|
|
|
|
Kevin K. <kbknapp@gmail.com>
|
|
|
|
tests subcommands
|
|
|
|
|
|
|
|
USAGE:
|
|
|
|
ctest subcmd multi [FLAGS] [OPTIONS]
|
|
|
|
|
|
|
|
FLAGS:
|
|
|
|
-f, --flag tests flags
|
|
|
|
-h, --help Prints help information
|
|
|
|
-V, --version Prints version information
|
|
|
|
|
|
|
|
OPTIONS:
|
|
|
|
-o, --option <scoption>... tests options";
|
|
|
|
|
2016-08-25 01:50:20 +00:00
|
|
|
static ISSUE_626_CUTOFF: &'static str = "ctest 0.1
|
|
|
|
|
|
|
|
USAGE:
|
|
|
|
ctest [OPTIONS]
|
|
|
|
|
|
|
|
FLAGS:
|
|
|
|
-h, --help Prints help information
|
|
|
|
-V, --version Prints version information
|
|
|
|
|
|
|
|
OPTIONS:
|
2016-09-06 00:46:18 +00:00
|
|
|
-c, --cafe <FILE> A coffeehouse, coffee shop, or café is an
|
|
|
|
establishment which primarily serves hot
|
2016-09-07 12:42:42 +00:00
|
|
|
coffee, related coffee beverages (e.g., café
|
|
|
|
latte, cappuccino, espresso), tea, and other
|
|
|
|
hot beverages. Some coffeehouses also serve
|
|
|
|
cold beverages such as iced coffee and iced
|
|
|
|
tea. Many cafés also serve some type of
|
|
|
|
food, such as light snacks, muffins, or
|
|
|
|
pastries.";
|
2016-08-25 01:50:20 +00:00
|
|
|
|
|
|
|
static ISSUE_626_PANIC: &'static str = "ctest 0.1
|
|
|
|
|
|
|
|
USAGE:
|
|
|
|
ctest [OPTIONS]
|
|
|
|
|
|
|
|
FLAGS:
|
|
|
|
-h, --help Prints help information
|
|
|
|
-V, --version Prints version information
|
|
|
|
|
|
|
|
OPTIONS:
|
2016-08-28 03:42:31 +00:00
|
|
|
-c, --cafe <FILE>
|
2016-09-06 00:46:18 +00:00
|
|
|
La culture du café est très développée
|
|
|
|
dans de nombreux pays à climat chaud
|
2016-09-07 12:42:42 +00:00
|
|
|
d\'Amérique, d\'Afrique et d\'Asie, dans
|
|
|
|
des plantations qui sont cultivées pour
|
|
|
|
les marchés d\'exportation. Le café est
|
|
|
|
souvent une contribution majeure aux
|
2016-09-06 00:46:18 +00:00
|
|
|
exportations des régions productrices.";
|
2016-08-25 01:50:20 +00:00
|
|
|
|
2016-09-11 03:08:40 +00:00
|
|
|
static HIDE_POS_VALS: &'static str = "ctest 0.1
|
|
|
|
|
|
|
|
USAGE:
|
|
|
|
ctest [OPTIONS]
|
|
|
|
|
|
|
|
FLAGS:
|
|
|
|
-h, --help Prints help information
|
|
|
|
-V, --version Prints version information
|
|
|
|
|
|
|
|
OPTIONS:
|
|
|
|
-c, --cafe <FILE> A coffeehouse, coffee shop, or café.
|
|
|
|
-p, --pos <VAL> Some vals [values: fast, slow]";
|
|
|
|
|
2016-09-13 03:20:40 +00:00
|
|
|
static OLD_NEWLINE_CHARS: &'static str = "ctest 0.1
|
|
|
|
|
|
|
|
USAGE:
|
|
|
|
ctest [FLAGS]
|
|
|
|
|
|
|
|
FLAGS:
|
|
|
|
-h, --help Prints help information
|
|
|
|
-m Some help with some wrapping
|
|
|
|
(Defaults to something)
|
|
|
|
-V, --version Prints version information";
|
|
|
|
|
2016-10-20 23:37:39 +00:00
|
|
|
|
|
|
|
static ISSUE_688: &'static str = "ctest 0.1
|
|
|
|
|
|
|
|
USAGE:
|
|
|
|
ctest [OPTIONS]
|
|
|
|
|
|
|
|
FLAGS:
|
|
|
|
-h, --help Prints help information
|
|
|
|
-V, --version Prints version information
|
|
|
|
|
|
|
|
OPTIONS:
|
|
|
|
--filter <filter> Sets the filter, or sampling method, to use for interpolation when resizing the particle
|
|
|
|
images. The default is Linear (Bilinear). [values: Nearest, Linear, Cubic, Gaussian,
|
|
|
|
Lanczos3]";
|
|
|
|
|
2016-10-24 09:56:21 +00:00
|
|
|
static ISSUE_702: &'static str = "myapp 1.0
|
|
|
|
foo
|
|
|
|
bar
|
|
|
|
|
|
|
|
USAGE:
|
|
|
|
myapp [OPTIONS] [--] [ARGS]
|
|
|
|
|
|
|
|
FLAGS:
|
|
|
|
-h, --help Prints help information
|
|
|
|
-V, --version Prints version information
|
|
|
|
|
|
|
|
OPTIONS:
|
|
|
|
-l, --label <label>... a label
|
|
|
|
-o, --other <other> some other option
|
|
|
|
-s, --some <some> some option
|
|
|
|
|
|
|
|
ARGS:
|
|
|
|
<arg1> some option
|
|
|
|
<arg2>... some option";
|
|
|
|
|
2016-01-13 17:03:27 +00:00
|
|
|
#[test]
|
|
|
|
fn help_short() {
|
|
|
|
let m = App::new("test")
|
|
|
|
.author("Kevin K.")
|
|
|
|
.about("tests stuff")
|
|
|
|
.version("1.3")
|
2016-01-21 05:18:53 +00:00
|
|
|
.get_matches_from_safe(vec!["myprog", "-h"]);
|
2016-01-13 17:03:27 +00:00
|
|
|
|
|
|
|
assert!(m.is_err());
|
2016-01-21 05:18:53 +00:00
|
|
|
assert_eq!(m.unwrap_err().kind, ErrorKind::HelpDisplayed);
|
2016-01-13 17:03:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn help_long() {
|
|
|
|
let m = App::new("test")
|
|
|
|
.author("Kevin K.")
|
|
|
|
.about("tests stuff")
|
|
|
|
.version("1.3")
|
2016-01-21 05:18:53 +00:00
|
|
|
.get_matches_from_safe(vec!["myprog", "--help"]);
|
2016-01-13 17:03:27 +00:00
|
|
|
|
|
|
|
assert!(m.is_err());
|
2016-01-21 05:18:53 +00:00
|
|
|
assert_eq!(m.unwrap_err().kind, ErrorKind::HelpDisplayed);
|
2016-01-13 17:03:27 +00:00
|
|
|
}
|
2015-09-09 02:39:31 +00:00
|
|
|
|
2016-01-15 04:23:50 +00:00
|
|
|
#[test]
|
|
|
|
fn help_no_subcommand() {
|
|
|
|
let m = App::new("test")
|
|
|
|
.author("Kevin K.")
|
|
|
|
.about("tests stuff")
|
|
|
|
.version("1.3")
|
2016-01-21 05:18:53 +00:00
|
|
|
.get_matches_from_safe(vec!["myprog", "help"]);
|
2016-01-15 04:23:50 +00:00
|
|
|
|
|
|
|
assert!(m.is_err());
|
2016-01-21 06:48:30 +00:00
|
|
|
assert_eq!(m.unwrap_err().kind, ErrorKind::UnknownArgument);
|
2016-01-15 04:23:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn help_subcommand() {
|
|
|
|
let m = App::new("test")
|
|
|
|
.author("Kevin K.")
|
|
|
|
.about("tests stuff")
|
|
|
|
.version("1.3")
|
|
|
|
.subcommand(SubCommand::with_name("test")
|
|
|
|
.about("tests things")
|
|
|
|
.arg_from_usage("-v --verbose 'with verbosity'"))
|
2016-01-21 05:18:53 +00:00
|
|
|
.get_matches_from_safe(vec!["myprog", "help"]);
|
2016-01-15 04:23:50 +00:00
|
|
|
|
|
|
|
assert!(m.is_err());
|
2016-01-21 05:18:53 +00:00
|
|
|
assert_eq!(m.unwrap_err().kind, ErrorKind::HelpDisplayed);
|
2016-01-15 04:23:50 +00:00
|
|
|
}
|
|
|
|
|
2015-09-09 02:39:31 +00:00
|
|
|
#[test]
|
2016-05-09 03:20:50 +00:00
|
|
|
fn subcommand_short_help() {
|
2016-05-10 02:46:09 +00:00
|
|
|
let m = test::complex_app()
|
2016-05-09 03:20:50 +00:00
|
|
|
.get_matches_from_safe(vec!["clap-test", "subcmd", "-h"]);
|
2015-09-09 02:39:31 +00:00
|
|
|
|
2016-05-09 03:20:50 +00:00
|
|
|
assert!(m.is_err());
|
|
|
|
assert_eq!(m.unwrap_err().kind, ErrorKind::HelpDisplayed);
|
|
|
|
}
|
2015-09-09 02:39:31 +00:00
|
|
|
|
2016-05-09 03:20:50 +00:00
|
|
|
#[test]
|
|
|
|
fn subcommand_long_help() {
|
2016-05-10 02:46:09 +00:00
|
|
|
let m = test::complex_app()
|
2016-05-09 03:20:50 +00:00
|
|
|
.get_matches_from_safe(vec!["clap-test", "subcmd", "--help"]);
|
2015-09-09 02:39:31 +00:00
|
|
|
|
2016-05-09 03:20:50 +00:00
|
|
|
assert!(m.is_err());
|
|
|
|
assert_eq!(m.unwrap_err().kind, ErrorKind::HelpDisplayed);
|
|
|
|
}
|
2015-09-09 02:39:31 +00:00
|
|
|
|
2016-05-09 03:20:50 +00:00
|
|
|
#[test]
|
|
|
|
fn subcommand_help_rev() {
|
2016-05-10 02:46:09 +00:00
|
|
|
let m = test::complex_app()
|
2016-05-09 03:20:50 +00:00
|
|
|
.get_matches_from_safe(vec!["clap-test", "help", "subcmd"]);
|
|
|
|
|
|
|
|
assert!(m.is_err());
|
|
|
|
assert_eq!(m.unwrap_err().kind, ErrorKind::HelpDisplayed);
|
2015-09-09 02:39:31 +00:00
|
|
|
}
|
2016-02-02 08:13:43 +00:00
|
|
|
|
|
|
|
#[test]
|
2016-05-09 03:20:50 +00:00
|
|
|
fn complex_help_output() {
|
2016-05-10 02:46:09 +00:00
|
|
|
test::check_help(test::complex_app(), HELP);
|
2016-05-09 03:20:50 +00:00
|
|
|
}
|
2016-02-02 08:13:43 +00:00
|
|
|
|
2016-05-30 10:01:00 +00:00
|
|
|
#[test]
|
|
|
|
fn after_and_before_help_output() {
|
|
|
|
let app = App::new("clap-test")
|
|
|
|
.version("v1.4.8")
|
|
|
|
.about("tests clap library")
|
|
|
|
.before_help("some text that comes before the help")
|
|
|
|
.after_help("some text that comes after the help");
|
|
|
|
test::check_help(app, AFTER_HELP);
|
|
|
|
}
|
|
|
|
|
2016-08-20 21:14:18 +00:00
|
|
|
#[test]
|
|
|
|
fn multi_level_sc_help() {
|
|
|
|
let app = App::new("ctest")
|
|
|
|
.subcommand(SubCommand::with_name("subcmd")
|
|
|
|
.subcommand(SubCommand::with_name("multi")
|
|
|
|
.about("tests subcommands")
|
|
|
|
.author("Kevin K. <kbknapp@gmail.com>")
|
|
|
|
.version("0.1")
|
|
|
|
.args_from_usage("
|
|
|
|
-f, --flag 'tests flags'
|
|
|
|
-o, --option [scoption]... 'tests options'
|
|
|
|
")));
|
|
|
|
test::check_err_output(app, "ctest help subcmd multi", MULTI_SC_HELP, false);
|
|
|
|
}
|
|
|
|
|
2016-08-24 23:35:16 +00:00
|
|
|
#[test]
|
|
|
|
fn no_wrap_help() {
|
|
|
|
let app = App::new("ctest")
|
|
|
|
.set_term_width(0)
|
|
|
|
.help(MULTI_SC_HELP);
|
|
|
|
test::check_err_output(app, "ctest --help", MULTI_SC_HELP, false);
|
|
|
|
}
|
|
|
|
|
2016-05-09 03:20:50 +00:00
|
|
|
#[test]
|
|
|
|
fn complex_subcommand_help_output() {
|
2016-09-30 21:54:14 +00:00
|
|
|
let a = test::complex_app();
|
|
|
|
test::check_subcommand_help(a, "subcmd", SC_HELP);
|
2016-02-02 08:13:43 +00:00
|
|
|
}
|
2016-08-25 01:50:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn issue_626_unicode_cutoff() {
|
|
|
|
let app = App::new("ctest")
|
|
|
|
.version("0.1")
|
|
|
|
.set_term_width(70)
|
|
|
|
.arg(Arg::with_name("cafe")
|
|
|
|
.short("c")
|
|
|
|
.long("cafe")
|
|
|
|
.value_name("FILE")
|
|
|
|
.help("A coffeehouse, coffee shop, or café is an establishment \
|
|
|
|
which primarily serves hot coffee, related coffee beverages \
|
|
|
|
(e.g., café latte, cappuccino, espresso), tea, and other hot \
|
|
|
|
beverages. Some coffeehouses also serve cold beverages such as \
|
|
|
|
iced coffee and iced tea. Many cafés also serve some type of \
|
|
|
|
food, such as light snacks, muffins, or pastries.")
|
|
|
|
.takes_value(true));
|
|
|
|
test::check_err_output(app, "ctest --help", ISSUE_626_CUTOFF, false);
|
|
|
|
}
|
|
|
|
|
2016-09-11 03:08:40 +00:00
|
|
|
#[test]
|
|
|
|
fn hide_possible_vals() {
|
|
|
|
let app = App::new("ctest")
|
|
|
|
.version("0.1")
|
|
|
|
.arg(Arg::with_name("pos")
|
|
|
|
.short("p")
|
|
|
|
.long("pos")
|
|
|
|
.value_name("VAL")
|
|
|
|
.possible_values(&["fast", "slow"])
|
|
|
|
.help("Some vals")
|
|
|
|
.takes_value(true))
|
|
|
|
.arg(Arg::with_name("cafe")
|
|
|
|
.short("c")
|
|
|
|
.long("cafe")
|
|
|
|
.value_name("FILE")
|
|
|
|
.hide_possible_values(true)
|
|
|
|
.possible_values(&["fast", "slow"])
|
|
|
|
.help("A coffeehouse, coffee shop, or café.")
|
|
|
|
.takes_value(true));
|
|
|
|
test::check_err_output(app, "ctest --help", HIDE_POS_VALS, false);
|
|
|
|
}
|
|
|
|
|
2016-08-25 01:50:20 +00:00
|
|
|
#[test]
|
|
|
|
fn issue_626_panic() {
|
|
|
|
let app = App::new("ctest")
|
|
|
|
.version("0.1")
|
2016-08-25 22:50:48 +00:00
|
|
|
.set_term_width(52)
|
2016-08-25 01:50:20 +00:00
|
|
|
.arg(Arg::with_name("cafe")
|
|
|
|
.short("c")
|
|
|
|
.long("cafe")
|
|
|
|
.value_name("FILE")
|
|
|
|
.help("La culture du café est très développée dans de nombreux pays à climat chaud d'Amérique, \
|
|
|
|
d'Afrique et d'Asie, dans des plantations qui sont cultivées pour les marchés d'exportation. \
|
|
|
|
Le café est souvent une contribution majeure aux exportations des régions productrices.")
|
|
|
|
.takes_value(true));
|
|
|
|
test::check_err_output(app, "ctest --help", ISSUE_626_PANIC, false);
|
|
|
|
}
|
2016-08-25 22:50:48 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn issue_626_variable_panic() {
|
|
|
|
for i in 10..320 {
|
|
|
|
let _ = App::new("ctest")
|
|
|
|
.version("0.1")
|
|
|
|
.set_term_width(i)
|
|
|
|
.arg(Arg::with_name("cafe")
|
|
|
|
.short("c")
|
|
|
|
.long("cafe")
|
|
|
|
.value_name("FILE")
|
|
|
|
.help("La culture du café est très développée dans de nombreux pays à climat chaud d'Amérique, \
|
|
|
|
d'Afrique et d'Asie, dans des plantations qui sont cultivées pour les marchés d'exportation. \
|
|
|
|
Le café est souvent une contribution majeure aux exportations des régions productrices.")
|
|
|
|
.takes_value(true))
|
|
|
|
.get_matches_from_safe(vec!["ctest", "--help"]);
|
|
|
|
}
|
|
|
|
}
|
2016-09-13 03:20:40 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn old_newline_chars() {
|
|
|
|
let app = App::new("ctest")
|
|
|
|
.version("0.1")
|
|
|
|
.arg(Arg::with_name("mode")
|
|
|
|
.short("m")
|
|
|
|
.help("Some help with some wrapping{n}(Defaults to something)"));
|
|
|
|
test::check_err_output(app, "ctest --help", OLD_NEWLINE_CHARS, false);
|
|
|
|
}
|
2016-10-20 23:37:39 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn issue_688_hidden_pos_vals() {
|
|
|
|
let filter_values = ["Nearest", "Linear", "Cubic", "Gaussian", "Lanczos3"];
|
|
|
|
|
|
|
|
let app1 = App::new("ctest")
|
|
|
|
.version("0.1")
|
|
|
|
.set_term_width(120)
|
|
|
|
.setting(AppSettings::HidePossibleValuesInHelp)
|
|
|
|
.arg(Arg::with_name("filter")
|
|
|
|
.help("Sets the filter, or sampling method, to use for interpolation when resizing the particle \
|
|
|
|
images. The default is Linear (Bilinear). [values: Nearest, Linear, Cubic, Gaussian, Lanczos3]")
|
|
|
|
.long("filter")
|
|
|
|
.possible_values(&filter_values)
|
|
|
|
.takes_value(true));
|
|
|
|
test::check_err_output(app1, "ctest --help", ISSUE_688, false);
|
|
|
|
|
|
|
|
let app2 = App::new("ctest")
|
|
|
|
.version("0.1")
|
|
|
|
.set_term_width(120)
|
|
|
|
.arg(Arg::with_name("filter")
|
|
|
|
.help("Sets the filter, or sampling method, to use for interpolation when resizing the particle \
|
|
|
|
images. The default is Linear (Bilinear).")
|
|
|
|
.long("filter")
|
|
|
|
.possible_values(&filter_values)
|
|
|
|
.takes_value(true));
|
|
|
|
test::check_err_output(app2, "ctest --help", ISSUE_688, false);
|
|
|
|
|
|
|
|
let app3 = App::new("ctest")
|
|
|
|
.version("0.1")
|
|
|
|
.set_term_width(120)
|
|
|
|
.arg(Arg::with_name("filter")
|
|
|
|
.help("Sets the filter, or sampling method, to use for interpolation when resizing the particle \
|
|
|
|
images. The default is Linear (Bilinear). [values: Nearest, Linear, Cubic, Gaussian, Lanczos3]")
|
|
|
|
.long("filter")
|
|
|
|
.takes_value(true));
|
|
|
|
test::check_err_output(app3, "ctest --help", ISSUE_688, false);
|
2016-10-24 09:56:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn issue_702_multiple_values() {
|
|
|
|
let app = App::new("myapp")
|
|
|
|
.version("1.0")
|
|
|
|
.author("foo")
|
|
|
|
.about("bar")
|
|
|
|
.arg(Arg::with_name("arg1")
|
|
|
|
.help("some option"))
|
|
|
|
.arg(Arg::with_name("arg2")
|
|
|
|
.multiple(true)
|
|
|
|
.help("some option"))
|
|
|
|
.arg(Arg::with_name("some")
|
|
|
|
.help("some option")
|
|
|
|
.short("s")
|
|
|
|
.long("some")
|
|
|
|
.takes_value(true))
|
|
|
|
.arg(Arg::with_name("other")
|
|
|
|
.help("some other option")
|
|
|
|
.short("o")
|
|
|
|
.long("other")
|
|
|
|
.takes_value(true))
|
|
|
|
.arg(Arg::with_name("label")
|
|
|
|
.help("a label")
|
|
|
|
.short("l")
|
|
|
|
.long("label")
|
|
|
|
.multiple(true)
|
|
|
|
.takes_value(true));
|
|
|
|
test::check_err_output(app, "myapp --help", ISSUE_702, false);
|
2016-12-01 23:47:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn issue_760() {
|
|
|
|
let app = App::new("ctest")
|
|
|
|
.version("0.1")
|
|
|
|
.arg(Arg::with_name("option")
|
|
|
|
.help("tests options")
|
|
|
|
.short("o")
|
|
|
|
.long("option")
|
|
|
|
.takes_value(true)
|
|
|
|
.multiple(true)
|
|
|
|
.number_of_values(1))
|
|
|
|
.arg(Arg::with_name("opt")
|
|
|
|
.help("tests options")
|
|
|
|
.short("O")
|
|
|
|
.long("opt")
|
|
|
|
.takes_value(true));
|
|
|
|
test::check_err_output(app, "ctest --help", ISSUE_760, false);
|
2016-10-20 23:37:39 +00:00
|
|
|
}
|