2018-07-02 17:41:01 +00:00
|
|
|
// Copyright 2018 Guillaume Pinot (@TeXitoi) <texitoi@texitoi.eu>,
|
|
|
|
// Kevin Knapp (@kbknapp) <kbknapp@gmail.com>, and
|
|
|
|
// Andrew Hobden (@hoverbear) <andrew@hoverbear.org>
|
2017-06-15 18:14:16 +00:00
|
|
|
//
|
2018-02-25 10:22:24 +00:00
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
2018-07-02 17:41:01 +00:00
|
|
|
//
|
|
|
|
// This work was derived from Structopt (https://github.com/TeXitoi/structopt)
|
|
|
|
// commit#ea76fa1b1b273e65e3b0b1046643715b49bec51f which is licensed under the
|
|
|
|
// MIT/Apache 2.0 license.
|
2017-06-15 18:14:16 +00:00
|
|
|
|
|
|
|
#[macro_use]
|
2018-01-29 22:51:40 +00:00
|
|
|
extern crate structopt;
|
2017-06-15 18:14:16 +00:00
|
|
|
|
|
|
|
use structopt::StructOpt;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn commets_intead_of_actual_help() {
|
|
|
|
/// Lorem ipsum
|
|
|
|
#[derive(StructOpt, PartialEq, Debug)]
|
|
|
|
struct LoremIpsum {
|
|
|
|
/// Fooify a bar
|
2017-11-01 21:00:15 +00:00
|
|
|
/// and a baz
|
2017-06-15 18:14:16 +00:00
|
|
|
#[structopt(short = "f", long = "foo")]
|
|
|
|
foo: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut output = Vec::new();
|
|
|
|
LoremIpsum::clap().write_long_help(&mut output).unwrap();
|
|
|
|
let output = String::from_utf8(output).unwrap();
|
|
|
|
|
|
|
|
assert!(output.contains("Lorem ipsum"));
|
2017-11-01 21:00:15 +00:00
|
|
|
assert!(output.contains("Fooify a bar and a baz"));
|
2017-06-15 18:14:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn help_is_better_than_comments() {
|
|
|
|
/// Lorem ipsum
|
|
|
|
#[derive(StructOpt, PartialEq, Debug)]
|
|
|
|
#[structopt(name = "lorem-ipsum", about = "Dolor sit amet")]
|
|
|
|
struct LoremIpsum {
|
|
|
|
/// Fooify a bar
|
|
|
|
#[structopt(short = "f", long = "foo", help = "DO NOT PASS A BAR UNDER ANY CIRCUMSTANCES")]
|
|
|
|
foo: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut output = Vec::new();
|
|
|
|
LoremIpsum::clap().write_long_help(&mut output).unwrap();
|
|
|
|
let output = String::from_utf8(output).unwrap();
|
|
|
|
|
|
|
|
assert!(output.contains("Dolor sit amet"));
|
|
|
|
assert!(!output.contains("Lorem ipsum"));
|
|
|
|
assert!(output.contains("DO NOT PASS A BAR"));
|
|
|
|
}
|
2018-02-16 22:11:33 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn empty_line_in_doc_comment_is_double_linefeed() {
|
|
|
|
/// Foo.
|
|
|
|
///
|
|
|
|
/// Bar
|
|
|
|
#[derive(StructOpt, PartialEq, Debug)]
|
|
|
|
#[structopt(name = "lorem-ipsum", author = "", version = "")]
|
|
|
|
struct LoremIpsum {}
|
|
|
|
|
|
|
|
let mut output = Vec::new();
|
|
|
|
LoremIpsum::clap().write_long_help(&mut output).unwrap();
|
|
|
|
let output = String::from_utf8(output).unwrap();
|
|
|
|
|
|
|
|
println!("{}", output);
|
|
|
|
assert!(output.starts_with("lorem-ipsum \nFoo.\n\nBar\n\nUSAGE:"));
|
|
|
|
}
|