clap/tests/hidden_args.rs

205 lines
4.7 KiB
Rust
Raw Normal View History

2015-10-01 03:34:23 +00:00
extern crate clap;
extern crate regex;
2015-10-01 03:34:23 +00:00
use clap::{App, Arg};
include!("../clap-test.rs");
2015-10-01 03:34:23 +00:00
static HIDDEN_ARGS: &str = "test 1.4
2015-10-01 03:34:23 +00:00
Kevin K.
tests stuff
USAGE:
2017-03-09 22:53:36 +00:00
test [FLAGS] [OPTIONS]
2015-10-01 03:34:23 +00:00
FLAGS:
-F, --flag2 some other flag
-h, --help Prints help information
-V, --version Prints version information
OPTIONS:
--option <opt> some option";
#[test]
fn hidden_args() {
let app = App::new("test")
.author("Kevin K.")
.about("tests stuff")
.version("1.4")
2018-01-25 04:05:05 +00:00
.args(&[
2018-04-21 18:59:19 +00:00
Arg::from("-f, --flag 'some flag'").hidden(true),
Arg::from("-F, --flag2 'some other flag'"),
Arg::from("--option [opt] 'some option'"),
Arg::with_name("DUMMY").hidden(true),
2018-01-25 04:05:05 +00:00
]);
assert!(test::compare_output(app, "test --help", HIDDEN_ARGS, false));
2015-10-01 03:34:23 +00:00
}
static HIDDEN_SHORT_ARGS: &str = "test 2.31.2
Steve P.
hides short args
USAGE:
test [FLAGS]
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
-v, --visible This text should be visible";
static HIDDEN_SHORT_ARGS_LONG_HELP: &str = "test 2.31.2
Steve P.
hides short args
USAGE:
test [FLAGS]
FLAGS:
-c, --config
Some help text describing the --config arg
-h, --help
Prints help information
-V, --version
Prints version information
-v, --visible
This text should be visible";
/// Ensure hidden with short option
#[test]
fn hidden_short_args() {
let app = App::new("test")
.about("hides short args")
.author("Steve P.")
.version("2.31.2")
.args(&[
Arg::with_name("cfg")
.short('c')
.long("config")
.hidden_short_help(true)
2018-08-02 03:13:51 +00:00
.help("Some help text describing the --config arg"),
Arg::with_name("visible")
.short('v')
.long("visible")
2018-08-02 03:13:51 +00:00
.help("This text should be visible"),
]);
2018-08-02 03:13:51 +00:00
assert!(test::compare_output(
app,
"test -h",
HIDDEN_SHORT_ARGS,
false
));
}
/// Ensure visible with opposite option
#[test]
fn hidden_short_args_long_help() {
let app = App::new("test")
.about("hides short args")
.author("Steve P.")
.version("2.31.2")
.args(&[
Arg::with_name("cfg")
.short('c')
.long("config")
.hidden_short_help(true)
2018-08-02 03:13:51 +00:00
.help("Some help text describing the --config arg"),
Arg::with_name("visible")
.short('v')
.long("visible")
2018-08-02 03:13:51 +00:00
.help("This text should be visible"),
]);
2018-08-02 03:13:51 +00:00
assert!(test::compare_output(
app,
"test --help",
HIDDEN_SHORT_ARGS_LONG_HELP,
false
));
}
static HIDDEN_LONG_ARGS: &str = "test 2.31.2
Steve P.
hides long args
USAGE:
test [FLAGS]
FLAGS:
-h, --help
Prints help information
-V, --version
Prints version information
-v, --visible
This text should be visible";
#[test]
fn hidden_long_args() {
let app = App::new("test")
.about("hides long args")
.author("Steve P.")
.version("2.31.2")
.args(&[
Arg::with_name("cfg")
.short('c')
.long("config")
.hidden_long_help(true)
2018-08-02 03:13:51 +00:00
.help("Some help text describing the --config arg"),
Arg::with_name("visible")
.short('v')
.long("visible")
2018-08-02 03:13:51 +00:00
.help("This text should be visible"),
]);
2018-08-02 03:13:51 +00:00
assert!(test::compare_output(
app,
"test --help",
HIDDEN_LONG_ARGS,
false
));
}
static HIDDEN_LONG_ARGS_SHORT_HELP: &str = "test 2.31.2
Steve P.
hides long args
USAGE:
test [FLAGS]
FLAGS:
-c, --config Some help text describing the --config arg
-h, --help Prints help information
-V, --version Prints version information
-v, --visible This text should be visible";
#[test]
fn hidden_long_args_short_help() {
let app = App::new("test")
.about("hides long args")
.author("Steve P.")
.version("2.31.2")
.args(&[
Arg::with_name("cfg")
.short('c')
.long("config")
.hidden_long_help(true)
2018-08-02 03:13:51 +00:00
.help("Some help text describing the --config arg"),
Arg::with_name("visible")
.short('v')
.long("visible")
2018-08-02 03:13:51 +00:00
.help("This text should be visible"),
]);
2018-08-02 03:13:51 +00:00
assert!(test::compare_output(
app,
"test -h",
HIDDEN_LONG_ARGS_SHORT_HELP,
false
));
}