clap/tests/version.rs

63 lines
1.6 KiB
Rust
Raw Normal View History

2020-02-04 08:10:53 +00:00
mod utils;
use std::str;
2018-11-14 17:12:34 +00:00
use clap::{App, AppSettings, ErrorKind};
2020-06-10 13:45:27 +00:00
static VERSION: &str = "clap-test v1.4.8\n";
#[test]
fn version_short() {
let m = App::new("test")
.author("Kevin K.")
.about("tests stuff")
.version("1.3")
.try_get_matches_from(vec!["myprog", "-V"]);
assert!(m.is_err());
let err = m.unwrap_err();
assert_eq!(err.kind, ErrorKind::VersionDisplayed);
2020-06-10 13:45:27 +00:00
assert_eq!(err.to_string(), "test 1.3\n");
}
#[test]
fn version_long() {
let m = App::new("test")
.author("Kevin K.")
.about("tests stuff")
.version("1.3")
.try_get_matches_from(vec!["myprog", "--version"]);
assert!(m.is_err());
let err = m.unwrap_err();
assert_eq!(err.kind, ErrorKind::VersionDisplayed);
2020-06-10 13:45:27 +00:00
assert_eq!(err.to_string(), "test 1.3\n");
}
#[test]
fn complex_version_output() {
let mut a = App::new("clap-test").version("v1.4.8");
let _ = a.try_get_matches_from_mut(vec![""]);
2018-01-25 04:05:05 +00:00
// Now we check the output of print_version()
let mut ver = vec![];
a.write_version(&mut ver).unwrap();
assert_eq!(str::from_utf8(&ver).unwrap(), VERSION);
}
#[test]
fn override_ver() {
let m = App::new("test")
.setting(AppSettings::NoAutoVersion)
.author("Kevin K.")
.about("tests stuff")
.version("1.3")
2018-11-14 17:05:06 +00:00
.mut_arg("version", |a| {
a.short('v').long("version").about("some version")
2018-11-14 17:05:06 +00:00
})
.try_get_matches_from(vec!["test", "--version"]);
assert!(m.is_ok(), "{:?}", m.unwrap_err().kind);
assert!(m.unwrap().is_present("version"));
2018-01-25 04:05:05 +00:00
}