// Copyright 2018 Guillaume Pinot (@TeXitoi) , // Kevin Knapp (@kbknapp) , and // Andrew Hobden (@hoverbear) // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. // // 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] extern crate clap; use clap::Clap; #[derive(Clap, PartialEq, Debug)] struct Opt { #[clap(short = "f", long = "force")] force: bool, #[clap(short = "v", long = "verbose", parse(from_occurrences))] verbose: u64, #[clap(subcommand)] cmd: Sub, } #[derive(Clap, PartialEq, Debug)] enum Sub { #[clap(name = "fetch")] Fetch {}, #[clap(name = "add")] Add {}, } #[derive(Clap, PartialEq, Debug)] struct Opt2 { #[clap(short = "f", long = "force")] force: bool, #[clap(short = "v", long = "verbose", parse(from_occurrences))] verbose: u64, #[clap(subcommand)] cmd: Option, } #[test] fn test_no_cmd() { let result = Opt::into_app().get_matches_from_safe(&["test"]); assert!(result.is_err()); assert_eq!( Opt2 { force: false, verbose: 0, cmd: None }, Opt2::from_argmatches(&Opt2::into_app().get_matches_from(&["test"])) ); } #[test] fn test_fetch() { assert_eq!( Opt { force: false, verbose: 3, cmd: Sub::Fetch {} }, Opt::from_argmatches(&Opt::into_app().get_matches_from(&["test", "-vvv", "fetch"])) ); assert_eq!( Opt { force: true, verbose: 0, cmd: Sub::Fetch {} }, Opt::from_argmatches(&Opt::into_app().get_matches_from(&["test", "--force", "fetch"])) ); } #[test] fn test_add() { assert_eq!( Opt { force: false, verbose: 0, cmd: Sub::Add {} }, Opt::from_argmatches(&Opt::into_app().get_matches_from(&["test", "add"])) ); assert_eq!( Opt { force: false, verbose: 2, cmd: Sub::Add {} }, Opt::from_argmatches(&Opt::into_app().get_matches_from(&["test", "-vv", "add"])) ); } #[test] fn test_badinput() { let result = Opt::into_app().get_matches_from_safe(&["test", "badcmd"]); assert!(result.is_err()); let result = Opt::into_app().get_matches_from_safe(&["test", "add", "--verbose"]); assert!(result.is_err()); let result = Opt::into_app().get_matches_from_safe(&["test", "--badopt", "add"]); assert!(result.is_err()); let result = Opt::into_app().get_matches_from_safe(&["test", "add", "--badopt"]); assert!(result.is_err()); } #[derive(Clap, PartialEq, Debug)] struct Opt3 { #[clap(short = "a", long = "all")] all: bool, #[clap(subcommand)] cmd: Sub2, } #[derive(Clap, PartialEq, Debug)] enum Sub2 { #[clap(name = "foo")] Foo { file: String, #[clap(subcommand)] cmd: Sub3, }, #[clap(name = "bar")] Bar {}, } #[derive(Clap, PartialEq, Debug)] enum Sub3 { #[clap(name = "baz")] Baz {}, #[clap(name = "quux")] Quux {}, } #[test] fn test_subsubcommand() { assert_eq!( Opt3 { all: true, cmd: Sub2::Foo { file: "lib.rs".to_string(), cmd: Sub3::Quux {} } }, Opt3::from_argmatches( &Opt3::into_app().get_matches_from(&["test", "--all", "foo", "lib.rs", "quux"]) ) ); } #[derive(Clap, PartialEq, Debug)] enum SubSubCmdWithOption { #[clap(name = "remote")] Remote { #[clap(subcommand)] cmd: Option, }, #[clap(name = "stash")] Stash { #[clap(subcommand)] cmd: Stash, }, } #[derive(Clap, PartialEq, Debug)] enum Remote { #[clap(name = "add")] Add { name: String, url: String }, #[clap(name = "remove")] Remove { name: String }, } #[derive(Clap, PartialEq, Debug)] enum Stash { #[clap(name = "save")] Save, #[clap(name = "pop")] Pop, } #[test] fn sub_sub_cmd_with_option() { fn make(args: &[&str]) -> Option { SubSubCmdWithOption::into_app() .get_matches_from_safe(args) .ok() .map(|m| SubSubCmdWithOption::from_clap(&m)) } assert_eq!( Some(SubSubCmdWithOption::Remote { cmd: None }), make(&["", "remote"]) ); assert_eq!( Some(SubSubCmdWithOption::Remote { cmd: Some(Remote::Add { name: "origin".into(), url: "http".into() }) }), make(&["", "remote", "add", "origin", "http"]) ); assert_eq!( Some(SubSubCmdWithOption::Stash { cmd: Stash::Save }), make(&["", "stash", "save"]) ); assert_eq!(None, make(&["", "stash"])); }