2018-01-25 04:05:05 +00:00
|
|
|
#![cfg(feature = "yaml")]
|
2021-11-18 20:27:21 +00:00
|
|
|
#![allow(deprecated)]
|
2016-01-12 05:13:14 +00:00
|
|
|
|
2022-02-12 03:48:29 +00:00
|
|
|
use clap::{load_yaml, Command};
|
2015-08-31 03:26:17 +00:00
|
|
|
|
|
|
|
#[test]
|
2022-02-14 21:47:20 +00:00
|
|
|
fn create_cmd_from_yaml() {
|
2021-12-02 21:28:04 +00:00
|
|
|
let yml = load_yaml!("app.yml");
|
2022-02-12 03:48:29 +00:00
|
|
|
Command::from_yaml(yml);
|
2016-01-12 05:13:14 +00:00
|
|
|
}
|
2017-03-10 06:52:02 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn help_message() {
|
2021-12-02 21:28:04 +00:00
|
|
|
let yml = load_yaml!("app.yml");
|
2022-02-14 21:47:20 +00:00
|
|
|
let mut cmd = Command::from_yaml(yml);
|
2017-03-10 06:52:02 +00:00
|
|
|
// Generate the full help message!
|
2022-02-14 21:47:20 +00:00
|
|
|
let _ = cmd.get_matches_from_safe_borrow(Vec::<String>::new());
|
2017-03-10 06:52:02 +00:00
|
|
|
|
|
|
|
let mut help_buffer = Vec::new();
|
2022-02-14 21:47:20 +00:00
|
|
|
cmd.write_help(&mut help_buffer).unwrap();
|
2017-03-10 06:52:02 +00:00
|
|
|
let help_string = String::from_utf8(help_buffer).unwrap();
|
2021-12-02 21:28:04 +00:00
|
|
|
println!("{}", &help_string);
|
|
|
|
assert!(help_string.contains("tests positionals with exclusions\n"));
|
2017-03-10 06:52:02 +00:00
|
|
|
}
|
2017-03-22 07:49:23 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn author() {
|
2021-12-02 21:28:04 +00:00
|
|
|
let yml = load_yaml!("app.yml");
|
2022-02-14 21:47:20 +00:00
|
|
|
let mut cmd = Command::from_yaml(yml);
|
2017-03-22 07:49:23 +00:00
|
|
|
// Generate the full help message!
|
2022-02-14 21:47:20 +00:00
|
|
|
let _ = cmd.get_matches_from_safe_borrow(Vec::<String>::new());
|
2017-03-22 07:49:23 +00:00
|
|
|
|
|
|
|
let mut help_buffer = Vec::new();
|
2022-02-14 21:47:20 +00:00
|
|
|
cmd.write_help(&mut help_buffer).unwrap();
|
2017-03-22 07:49:23 +00:00
|
|
|
let help_string = String::from_utf8(help_buffer).unwrap();
|
2021-12-02 21:28:04 +00:00
|
|
|
println!("{}", &help_string);
|
2018-01-25 04:05:05 +00:00
|
|
|
assert!(help_string.contains("Kevin K. <kbknapp@gmail.com>"));
|
2017-03-22 07:49:23 +00:00
|
|
|
}
|