clap/tests/cargo.rs

81 lines
1.9 KiB
Rust
Raw Normal View History

2021-11-17 20:27:20 +00:00
#![cfg(feature = "cargo")]
use clap::{crate_authors, crate_description, crate_name, crate_version, App, ErrorKind};
static DESCRIPTION_ONLY: &str = "prog 1
A simple to use, efficient, and full-featured Command Line Argument Parser
USAGE:
prog
OPTIONS:
-h, --help Print help information
-V, --version Print version information
";
static AUTHORS_ONLY: &str = "prog 1
2020-02-10 18:26:10 +00:00
Kevin K. <kbknapp@gmail.com>:Clap Maintainers
USAGE:
prog
OPTIONS:
-h, --help Print help information
-V, --version Print version information
";
#[test]
fn crate_version() {
let res = App::new("prog")
.version(crate_version!())
.try_get_matches_from(vec!["prog", "--version"]);
assert!(res.is_err());
let err = res.unwrap_err();
assert_eq!(err.kind, ErrorKind::DisplayVersion);
2020-04-12 01:39:13 +00:00
assert_eq!(
err.to_string(),
2020-06-10 13:45:27 +00:00
format!("prog {}\n", env!("CARGO_PKG_VERSION"))
2020-04-12 01:39:13 +00:00
);
}
#[test]
fn crate_description() {
let res = App::new("prog")
.version("1")
.about(crate_description!())
.try_get_matches_from(vec!["prog", "--help"]);
assert!(res.is_err());
let err = res.unwrap_err();
assert_eq!(err.kind, ErrorKind::DisplayHelp);
2020-04-12 01:39:13 +00:00
assert_eq!(err.to_string(), DESCRIPTION_ONLY);
}
#[test]
fn crate_authors() {
let res = App::new("prog")
.version("1")
.author(crate_authors!())
.try_get_matches_from(vec!["prog", "--help"]);
assert!(res.is_err());
let err = res.unwrap_err();
assert_eq!(err.kind, ErrorKind::DisplayHelp);
2020-04-12 01:39:13 +00:00
assert_eq!(err.to_string(), AUTHORS_ONLY);
}
#[test]
fn crate_name() {
let res = App::new(crate_name!())
.version("3.0")
.try_get_matches_from(vec!["clap", "--version"]);
assert!(res.is_err());
let err = res.unwrap_err();
assert_eq!(err.kind, ErrorKind::DisplayVersion);
assert_eq!(err.to_string(), "clap 3.0\n");
}