2020-02-04 09:51:37 +00:00
|
|
|
// https://github.com/TeXitoi/structopt/issues/{NUMBER}
|
|
|
|
|
2021-11-30 15:36:53 +00:00
|
|
|
use crate::utils;
|
2020-02-04 09:51:37 +00:00
|
|
|
|
2022-02-10 17:51:40 +00:00
|
|
|
use clap::{ArgGroup, Args, Parser, Subcommand};
|
2020-01-07 10:17:23 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn issue_151() {
|
2021-10-11 19:48:13 +00:00
|
|
|
#[derive(Args, Debug)]
|
2020-05-14 20:50:56 +00:00
|
|
|
#[clap(group = ArgGroup::new("verb").required(true).multiple(true))]
|
2020-01-07 10:17:23 +00:00
|
|
|
struct Opt {
|
|
|
|
#[clap(long, group = "verb")]
|
|
|
|
foo: bool,
|
|
|
|
#[clap(long, group = "verb")]
|
|
|
|
bar: bool,
|
|
|
|
}
|
|
|
|
|
2021-07-13 17:50:55 +00:00
|
|
|
#[derive(Debug, Parser)]
|
2020-01-07 10:17:23 +00:00
|
|
|
struct Cli {
|
|
|
|
#[clap(flatten)]
|
|
|
|
a: Opt,
|
|
|
|
}
|
|
|
|
|
|
|
|
assert!(Cli::try_parse_from(&["test"]).is_err());
|
|
|
|
assert!(Cli::try_parse_from(&["test", "--foo"]).is_ok());
|
|
|
|
assert!(Cli::try_parse_from(&["test", "--bar"]).is_ok());
|
|
|
|
assert!(Cli::try_parse_from(&["test", "--zebra"]).is_err());
|
2019-12-21 12:20:57 +00:00
|
|
|
assert!(Cli::try_parse_from(&["test", "--foo", "--bar"]).is_ok());
|
2020-01-07 10:17:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn issue_289() {
|
2021-07-13 17:50:55 +00:00
|
|
|
#[derive(Parser)]
|
2022-02-10 17:51:40 +00:00
|
|
|
#[clap(infer_subcommands = true)]
|
2020-01-07 10:17:23 +00:00
|
|
|
enum Args {
|
2021-07-13 17:39:46 +00:00
|
|
|
SomeCommand {
|
|
|
|
#[clap(subcommand)]
|
|
|
|
sub: SubSubCommand,
|
|
|
|
},
|
2020-01-07 10:17:23 +00:00
|
|
|
AnotherCommand,
|
|
|
|
}
|
|
|
|
|
2021-10-11 19:48:13 +00:00
|
|
|
#[derive(Subcommand)]
|
2022-02-10 17:51:40 +00:00
|
|
|
#[clap(infer_subcommands = true)]
|
2020-01-07 10:17:23 +00:00
|
|
|
enum SubSubCommand {
|
|
|
|
TestCommand,
|
|
|
|
}
|
|
|
|
|
|
|
|
assert!(Args::try_parse_from(&["test", "some-command", "test-command"]).is_ok());
|
|
|
|
assert!(Args::try_parse_from(&["test", "some", "test-command"]).is_ok());
|
|
|
|
assert!(Args::try_parse_from(&["test", "some-command", "test"]).is_ok());
|
|
|
|
assert!(Args::try_parse_from(&["test", "some", "test"]).is_ok());
|
|
|
|
}
|
2020-02-04 09:51:37 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn issue_324() {
|
|
|
|
fn my_version() -> &'static str {
|
|
|
|
"MY_VERSION"
|
|
|
|
}
|
|
|
|
|
2021-07-13 17:50:55 +00:00
|
|
|
#[derive(Parser)]
|
2020-02-04 09:51:37 +00:00
|
|
|
#[clap(version = my_version())]
|
|
|
|
struct Opt {
|
|
|
|
#[clap(subcommand)]
|
2021-11-04 15:15:04 +00:00
|
|
|
_cmd: SubCommand,
|
2020-02-04 09:51:37 +00:00
|
|
|
}
|
|
|
|
|
2021-10-11 19:48:13 +00:00
|
|
|
#[derive(Subcommand)]
|
2020-02-04 09:51:37 +00:00
|
|
|
enum SubCommand {
|
|
|
|
Start,
|
|
|
|
}
|
|
|
|
|
2021-11-30 15:36:53 +00:00
|
|
|
let help = utils::get_long_help::<Opt>();
|
2020-02-04 09:51:37 +00:00
|
|
|
assert!(help.contains("MY_VERSION"));
|
|
|
|
}
|
2021-10-06 18:22:56 +00:00
|
|
|
|
2021-10-25 21:28:23 +00:00
|
|
|
#[test]
|
|
|
|
fn issue_418() {
|
|
|
|
#[derive(Debug, Parser)]
|
|
|
|
struct Opts {
|
|
|
|
#[clap(subcommand)]
|
|
|
|
/// The command to run
|
|
|
|
command: Command,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Subcommand)]
|
|
|
|
enum Command {
|
|
|
|
/// Reticulate the splines
|
|
|
|
#[clap(visible_alias = "ret")]
|
|
|
|
Reticulate {
|
|
|
|
/// How many splines
|
2022-05-23 20:42:34 +00:00
|
|
|
#[clap(value_parser)]
|
2021-10-25 21:28:23 +00:00
|
|
|
num_splines: u8,
|
|
|
|
},
|
|
|
|
/// Frobnicate the rest
|
|
|
|
#[clap(visible_alias = "frob")]
|
|
|
|
Frobnicate,
|
|
|
|
}
|
|
|
|
|
2021-11-30 15:36:53 +00:00
|
|
|
let help = utils::get_long_help::<Opts>();
|
2021-10-25 21:28:23 +00:00
|
|
|
assert!(help.contains("Reticulate the splines [aliases: ret]"));
|
|
|
|
}
|
|
|
|
|
2021-10-06 18:22:56 +00:00
|
|
|
#[test]
|
|
|
|
fn issue_490() {
|
2021-07-13 17:50:55 +00:00
|
|
|
use clap::Parser;
|
2021-10-06 18:22:56 +00:00
|
|
|
use std::iter::FromIterator;
|
|
|
|
use std::str::FromStr;
|
|
|
|
|
|
|
|
struct U16ish;
|
|
|
|
impl FromStr for U16ish {
|
|
|
|
type Err = ();
|
|
|
|
fn from_str(_: &str) -> Result<Self, Self::Err> {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
impl<'a> FromIterator<&'a U16ish> for Vec<u16> {
|
|
|
|
fn from_iter<T: IntoIterator<Item = &'a U16ish>>(_: T) -> Self {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-13 17:50:55 +00:00
|
|
|
#[derive(Parser, Debug)]
|
2021-10-06 18:22:56 +00:00
|
|
|
struct Opt {
|
2022-05-23 20:42:34 +00:00
|
|
|
#[clap(value_parser)]
|
2021-10-06 18:22:56 +00:00
|
|
|
opt_vec: Vec<u16>,
|
2022-05-23 20:42:34 +00:00
|
|
|
#[clap(long, value_parser)]
|
2021-10-06 18:22:56 +00:00
|
|
|
opt_opt_vec: Option<Vec<u16>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Assert that it compiles
|
|
|
|
}
|