2022-06-07 21:21:12 +00:00
|
|
|
use super::utils;
|
2016-04-10 00:35:24 +00:00
|
|
|
|
2022-02-12 03:48:29 +00:00
|
|
|
use clap::{arg, Command};
|
2016-04-10 00:35:24 +00:00
|
|
|
|
2020-02-04 08:10:53 +00:00
|
|
|
static EXAMPLE1_TMPL_S: &str = "{bin} {version}
|
|
|
|
{author}
|
|
|
|
{about}
|
2017-01-03 04:05:23 +00:00
|
|
|
|
2020-02-04 08:10:53 +00:00
|
|
|
USAGE:
|
|
|
|
{usage}
|
|
|
|
|
|
|
|
{all-args}";
|
|
|
|
|
|
|
|
static EXAMPLE1_TMPS_F: &str = "{bin} {version}
|
|
|
|
{author}
|
|
|
|
{about}
|
|
|
|
|
|
|
|
USAGE:
|
|
|
|
{usage}
|
|
|
|
|
|
|
|
OPTIONS:
|
|
|
|
{options}
|
|
|
|
ARGS:
|
|
|
|
{positionals}
|
|
|
|
SUBCOMMANDS:
|
|
|
|
{subcommands}";
|
2016-04-10 00:35:24 +00:00
|
|
|
|
2019-10-02 13:27:19 +00:00
|
|
|
static CUSTOM_TEMPL_HELP: &str = "MyApp 1.0
|
2016-05-30 09:39:54 +00:00
|
|
|
Kevin K. <kbknapp@gmail.com>
|
|
|
|
Does awesome things
|
|
|
|
|
|
|
|
USAGE:
|
2021-10-11 22:01:33 +00:00
|
|
|
MyApp [OPTIONS] <output> [SUBCOMMAND]
|
2016-05-30 09:39:54 +00:00
|
|
|
|
|
|
|
OPTIONS:
|
|
|
|
-c, --config <FILE> Sets a custom config file
|
2021-10-11 22:01:33 +00:00
|
|
|
-d Turn debugging information on
|
|
|
|
-h, --help Print help information
|
|
|
|
-V, --version Print version information
|
2016-05-30 09:39:54 +00:00
|
|
|
ARGS:
|
|
|
|
<output> Sets an optional output file
|
|
|
|
SUBCOMMANDS:
|
2021-09-24 15:58:39 +00:00
|
|
|
test does testing things
|
2022-07-22 19:58:27 +00:00
|
|
|
help Print this message or the help of the given subcommand(s)
|
2021-09-24 15:58:39 +00:00
|
|
|
";
|
2016-05-30 09:39:54 +00:00
|
|
|
|
2019-10-02 13:27:19 +00:00
|
|
|
static SIMPLE_TEMPLATE: &str = "MyApp 1.0
|
2016-05-30 09:39:54 +00:00
|
|
|
Kevin K. <kbknapp@gmail.com>
|
|
|
|
Does awesome things
|
|
|
|
|
|
|
|
USAGE:
|
2021-10-11 22:01:33 +00:00
|
|
|
MyApp [OPTIONS] <output> [SUBCOMMAND]
|
2016-05-30 09:39:54 +00:00
|
|
|
|
2018-03-07 11:23:20 +00:00
|
|
|
ARGS:
|
|
|
|
<output> Sets an optional output file
|
|
|
|
|
2016-05-30 09:39:54 +00:00
|
|
|
OPTIONS:
|
|
|
|
-c, --config <FILE> Sets a custom config file
|
2021-10-11 22:01:33 +00:00
|
|
|
-d Turn debugging information on
|
|
|
|
-h, --help Print help information
|
|
|
|
-V, --version Print version information
|
2016-05-30 09:39:54 +00:00
|
|
|
|
|
|
|
SUBCOMMANDS:
|
2021-09-24 15:58:39 +00:00
|
|
|
test does testing things
|
2022-07-22 19:58:27 +00:00
|
|
|
help Print this message or the help of the given subcommand(s)
|
2021-09-24 15:58:39 +00:00
|
|
|
";
|
2016-05-30 09:39:54 +00:00
|
|
|
|
2016-04-10 00:35:24 +00:00
|
|
|
#[test]
|
2016-05-30 09:39:54 +00:00
|
|
|
fn with_template() {
|
2022-02-14 21:47:20 +00:00
|
|
|
let cmd = get_app().help_template(EXAMPLE1_TMPL_S);
|
2022-04-29 20:32:25 +00:00
|
|
|
utils::assert_output(cmd, "MyApp --help", SIMPLE_TEMPLATE, false);
|
2016-05-30 09:39:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn custom_template() {
|
2022-02-14 21:47:20 +00:00
|
|
|
let cmd = get_app().help_template(EXAMPLE1_TMPS_F);
|
2022-04-29 20:32:25 +00:00
|
|
|
utils::assert_output(cmd, "MyApp --help", CUSTOM_TEMPL_HELP, false);
|
2016-04-10 00:35:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn template_empty() {
|
2022-02-14 21:47:20 +00:00
|
|
|
let cmd = Command::new("MyApp")
|
2018-01-25 04:05:05 +00:00
|
|
|
.version("1.0")
|
|
|
|
.author("Kevin K. <kbknapp@gmail.com>")
|
|
|
|
.about("Does awesome things")
|
2018-10-19 20:42:13 +00:00
|
|
|
.help_template("");
|
2022-04-29 20:32:25 +00:00
|
|
|
utils::assert_output(cmd, "MyApp --help", "\n", false);
|
2016-04-10 00:35:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn template_notag() {
|
2022-02-14 21:47:20 +00:00
|
|
|
let cmd = Command::new("MyApp")
|
2018-01-25 04:05:05 +00:00
|
|
|
.version("1.0")
|
|
|
|
.author("Kevin K. <kbknapp@gmail.com>")
|
|
|
|
.about("Does awesome things")
|
2018-10-19 20:42:13 +00:00
|
|
|
.help_template("test no tag test");
|
2022-04-29 20:32:25 +00:00
|
|
|
utils::assert_output(cmd, "MyApp --help", "test no tag test\n", false);
|
2016-04-10 00:35:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn template_unknowntag() {
|
2022-02-14 21:47:20 +00:00
|
|
|
let cmd = Command::new("MyApp")
|
2018-01-25 04:05:05 +00:00
|
|
|
.version("1.0")
|
|
|
|
.author("Kevin K. <kbknapp@gmail.com>")
|
|
|
|
.about("Does awesome things")
|
2018-10-19 20:42:13 +00:00
|
|
|
.help_template("test {unknown_tag} test");
|
2022-04-29 20:32:25 +00:00
|
|
|
utils::assert_output(cmd, "MyApp --help", "test {unknown_tag} test\n", false);
|
2016-04-10 00:35:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn template_author_version() {
|
2022-02-14 21:47:20 +00:00
|
|
|
let cmd = Command::new("MyApp")
|
2018-01-25 04:05:05 +00:00
|
|
|
.version("1.0")
|
|
|
|
.author("Kevin K. <kbknapp@gmail.com>")
|
|
|
|
.about("Does awesome things")
|
2018-10-19 20:42:13 +00:00
|
|
|
.help_template("{author}\n{version}\n{about}\n{bin}");
|
2022-04-29 20:32:25 +00:00
|
|
|
utils::assert_output(
|
2022-02-14 21:47:20 +00:00
|
|
|
cmd,
|
2018-01-25 04:05:05 +00:00
|
|
|
"MyApp --help",
|
2021-09-24 15:58:39 +00:00
|
|
|
"Kevin K. <kbknapp@gmail.com>\n1.0\nDoes awesome things\nMyApp\n",
|
2022-04-29 20:32:25 +00:00
|
|
|
false,
|
|
|
|
);
|
2016-04-10 00:35:24 +00:00
|
|
|
}
|
|
|
|
|
2017-01-03 04:05:23 +00:00
|
|
|
// ----------
|
|
|
|
|
2022-02-12 03:48:29 +00:00
|
|
|
fn get_app() -> Command<'static> {
|
|
|
|
Command::new("MyApp")
|
2016-04-10 00:35:24 +00:00
|
|
|
.version("1.0")
|
|
|
|
.author("Kevin K. <kbknapp@gmail.com>")
|
|
|
|
.about("Does awesome things")
|
2021-11-19 20:33:11 +00:00
|
|
|
.arg(
|
|
|
|
arg!(
|
|
|
|
-c --config <FILE> "Sets a custom config file"
|
|
|
|
)
|
|
|
|
.required(false),
|
|
|
|
)
|
|
|
|
.arg(arg!(
|
|
|
|
<output> "Sets an optional output file"
|
2021-11-18 20:17:31 +00:00
|
|
|
))
|
2021-11-19 20:33:11 +00:00
|
|
|
.arg(arg!(
|
|
|
|
d: -d ... "Turn debugging information on"
|
2021-11-18 20:17:31 +00:00
|
|
|
))
|
2018-01-25 04:05:05 +00:00
|
|
|
.subcommand(
|
2022-02-12 03:48:29 +00:00
|
|
|
Command::new("test")
|
2018-01-25 04:05:05 +00:00
|
|
|
.about("does testing things")
|
2021-11-19 20:33:11 +00:00
|
|
|
.arg(arg!(-l --list "lists test values")),
|
2018-01-25 04:05:05 +00:00
|
|
|
)
|
2016-04-10 00:35:24 +00:00
|
|
|
}
|