2018-01-25 04:05:05 +00:00
|
|
|
#![cfg(feature = "yaml")]
|
2016-01-12 05:13:14 +00:00
|
|
|
|
2020-02-03 18:04:07 +00:00
|
|
|
use clap::{load_yaml, App};
|
2015-08-31 03:26:17 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn create_app_from_yaml() {
|
2020-07-20 23:22:54 +00:00
|
|
|
let yaml = load_yaml!("fixtures/app.yaml");
|
|
|
|
App::from(yaml);
|
2016-01-12 05:13:14 +00:00
|
|
|
}
|
2017-03-10 06:52:02 +00:00
|
|
|
|
2018-06-22 11:50:44 +00:00
|
|
|
// TODO: Uncomment to test yaml with 2 spaces https://github.com/chyh1990/yaml-rust/issues/101
|
|
|
|
// #[test]
|
|
|
|
// fn create_app_from_yaml_2spaces() {
|
2020-07-20 23:22:54 +00:00
|
|
|
// let yaml = load_yaml!("fixtures/app_2space.yaml");
|
|
|
|
// App::from(yaml);
|
2018-06-22 11:50:44 +00:00
|
|
|
// }
|
|
|
|
|
2017-03-10 06:52:02 +00:00
|
|
|
#[test]
|
|
|
|
fn help_message() {
|
2020-07-20 23:22:54 +00:00
|
|
|
let yaml = load_yaml!("fixtures/app.yaml");
|
|
|
|
let mut app = App::from(yaml);
|
2017-03-10 06:52:02 +00:00
|
|
|
// Generate the full help message!
|
2018-10-19 20:42:13 +00:00
|
|
|
let _ = app.try_get_matches_from_mut(Vec::<String>::new());
|
2017-03-10 06:52:02 +00:00
|
|
|
|
|
|
|
let mut help_buffer = Vec::new();
|
|
|
|
app.write_help(&mut help_buffer).unwrap();
|
|
|
|
let help_string = String::from_utf8(help_buffer).unwrap();
|
2020-05-03 06:13:24 +00:00
|
|
|
assert!(help_string
|
|
|
|
.contains("-h, --help prints help with a nonstandard description\n"));
|
2017-03-10 06:52:02 +00:00
|
|
|
}
|
2017-03-22 07:49:23 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn author() {
|
2020-07-20 23:22:54 +00:00
|
|
|
let yaml = load_yaml!("fixtures/app.yaml");
|
|
|
|
let mut app = App::from(yaml);
|
2017-03-22 07:49:23 +00:00
|
|
|
// Generate the full help message!
|
2018-10-19 20:42:13 +00:00
|
|
|
let _ = app.try_get_matches_from_mut(Vec::<String>::new());
|
2017-03-22 07:49:23 +00:00
|
|
|
|
|
|
|
let mut help_buffer = Vec::new();
|
|
|
|
app.write_help(&mut help_buffer).unwrap();
|
|
|
|
let help_string = String::from_utf8(help_buffer).unwrap();
|
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
|
|
|
}
|