// 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. use clap::Clap; use std::ffi::{CString, OsStr}; use std::num::ParseIntError; use std::path::PathBuf; #[derive(Clap, PartialEq, Debug)] struct PathOpt { #[clap(short, long, parse(from_os_str))] path: PathBuf, #[clap(short, default_value = "../", parse(from_os_str))] default_path: PathBuf, #[clap(short, parse(from_os_str))] vector_path: Vec, #[clap(short, parse(from_os_str))] option_path_1: Option, #[clap(short = 'q', parse(from_os_str))] option_path_2: Option, } #[test] fn test_path_opt_simple() { assert_eq!( PathOpt { path: PathBuf::from("/usr/bin"), default_path: PathBuf::from("../"), vector_path: vec![ PathBuf::from("/a/b/c"), PathBuf::from("/d/e/f"), PathBuf::from("/g/h/i"), ], option_path_1: None, option_path_2: Some(PathBuf::from("j.zip")), }, PathOpt::parse_from(&[ "test", "-p", "/usr/bin", "-v", "/a/b/c", "-v", "/d/e/f", "-v", "/g/h/i", "-q", "j.zip", ]) ); } fn parse_hex(input: &str) -> Result { u64::from_str_radix(input, 16) } #[derive(Clap, PartialEq, Debug)] struct HexOpt { #[clap(short, parse(try_from_str = parse_hex))] number: u64, } #[test] fn test_parse_hex() { assert_eq!( HexOpt { number: 5 }, HexOpt::parse_from(&["test", "-n", "5"]) ); assert_eq!( HexOpt { number: 0x00ab_cdef }, HexOpt::parse_from(&["test", "-n", "abcdef"]) ); let err = HexOpt::try_parse_from(&["test", "-n", "gg"]).unwrap_err(); assert!( err.to_string().contains("invalid digit found in string"), err ); } fn custom_parser_1(_: &str) -> &'static str { "A" } #[derive(Debug)] struct ErrCode(u32); impl std::error::Error for ErrCode {} impl std::fmt::Display for ErrCode { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { std::fmt::Display::fmt(&self.0, f) } } fn custom_parser_2(_: &str) -> Result<&'static str, ErrCode> { Ok("B") } fn custom_parser_3(_: &OsStr) -> &'static str { "C" } fn custom_parser_4(_: &OsStr) -> Result<&'static str, String> { Ok("D") } #[derive(Clap, PartialEq, Debug)] struct NoOpOpt { #[clap(short, parse(from_str = custom_parser_1))] a: &'static str, #[clap(short, parse(try_from_str = custom_parser_2))] b: &'static str, #[clap(short, parse(from_os_str = custom_parser_3))] c: &'static str, #[clap(short, parse(try_from_os_str = custom_parser_4))] d: &'static str, } #[test] fn test_every_custom_parser() { assert_eq!( NoOpOpt { a: "A", b: "B", c: "C", d: "D" }, NoOpOpt::parse_from(&["test", "-a=?", "-b=?", "-c=?", "-d=?"]) ); } // Note: can't use `Vec` directly, as clap would instead look for // conversion function from `&str` to `u8`. type Bytes = Vec; #[derive(Clap, PartialEq, Debug)] struct DefaultedOpt { #[clap(short, parse(from_str))] bytes: Bytes, #[clap(short, parse(try_from_str))] integer: u64, #[clap(short, parse(from_os_str))] path: PathBuf, } #[test] fn test_parser_with_default_value() { assert_eq!( DefaultedOpt { bytes: b"E\xc2\xb2=p\xc2\xb2c\xc2\xb2+m\xc2\xb2c\xe2\x81\xb4".to_vec(), integer: 9000, path: PathBuf::from("src/lib.rs"), }, DefaultedOpt::parse_from(&[ "test", "-b", "E²=p²c²+m²c⁴", "-i", "9000", "-p", "src/lib.rs", ]) ); } #[derive(PartialEq, Debug)] struct Foo(u8); fn foo(value: u64) -> Foo { Foo(value as u8) } #[derive(Clap, PartialEq, Debug)] struct Occurrences { #[clap(short, long, parse(from_occurrences))] signed: i32, #[clap(short, parse(from_occurrences))] little_signed: i8, #[clap(short, parse(from_occurrences))] unsigned: usize, #[clap(short = 'r', parse(from_occurrences))] little_unsigned: u8, #[clap(short, long, parse(from_occurrences = foo))] custom: Foo, } #[test] fn test_parser_occurrences() { assert_eq!( Occurrences { signed: 3, little_signed: 1, unsigned: 0, little_unsigned: 4, custom: Foo(5), }, Occurrences::parse_from(&[ "test", "-s", "--signed", "--signed", "-l", "-rrrr", "-cccc", "--custom", ]) ); } #[test] fn test_custom_bool() { fn parse_bool(s: &str) -> Result { match s { "true" => Ok(true), "false" => Ok(false), _ => Err(format!("invalid bool {}", s)), } } #[derive(Clap, PartialEq, Debug)] struct Opt { #[clap(short, parse(try_from_str = parse_bool))] debug: bool, #[clap( short, default_value = "false", parse(try_from_str = parse_bool) )] verbose: bool, #[clap(short, parse(try_from_str = parse_bool))] tribool: Option, #[clap(short, parse(try_from_str = parse_bool))] bitset: Vec, } assert!(Opt::try_parse_from(&["test"]).is_err()); assert!(Opt::try_parse_from(&["test", "-d"]).is_err()); assert!(Opt::try_parse_from(&["test", "-dfoo"]).is_err()); assert_eq!( Opt { debug: false, verbose: false, tribool: None, bitset: vec![], }, Opt::parse_from(&["test", "-dfalse"]) ); assert_eq!( Opt { debug: true, verbose: false, tribool: None, bitset: vec![], }, Opt::parse_from(&["test", "-dtrue"]) ); assert_eq!( Opt { debug: true, verbose: false, tribool: None, bitset: vec![], }, Opt::parse_from(&["test", "-dtrue", "-vfalse"]) ); assert_eq!( Opt { debug: true, verbose: true, tribool: None, bitset: vec![], }, Opt::parse_from(&["test", "-dtrue", "-vtrue"]) ); assert_eq!( Opt { debug: true, verbose: false, tribool: Some(false), bitset: vec![], }, Opt::parse_from(&["test", "-dtrue", "-tfalse"]) ); assert_eq!( Opt { debug: true, verbose: false, tribool: Some(true), bitset: vec![], }, Opt::parse_from(&["test", "-dtrue", "-ttrue"]) ); assert_eq!( Opt { debug: true, verbose: false, tribool: None, bitset: vec![false, true, false, false], }, Opt::parse_from(&["test", "-dtrue", "-bfalse", "-btrue", "-bfalse", "-bfalse"]) ); } #[test] fn test_cstring() { #[derive(Clap)] struct Opt { #[clap(parse(try_from_str = CString::new))] c_string: CString, } assert!(Opt::try_parse_from(&["test"]).is_err()); assert_eq!( Opt::parse_from(&["test", "bla"]).c_string.to_bytes(), b"bla" ); assert!(Opt::try_parse_from(&["test", "bla\0bla"]).is_err()); }