clap/tests/flags.rs
Guillaume Pinot be60de036b structopt reexport structopt_derive
As using structopt without structopt_derive is quite meaningless, reexport
structopt_derive, symplifying the usage.

Inspired by the failure crate.

fix #45
2018-02-03 16:55:43 +01:00

79 lines
3.2 KiB
Rust

// Copyright (c) 2017 Guillaume Pinot <texitoi(a)texitoi.eu>
//
// This work is free. You can redistribute it and/or modify it under
// the terms of the Do What The Fuck You Want To Public License,
// Version 2, as published by Sam Hocevar. See the COPYING file for
// more details.
#[macro_use]
extern crate structopt;
use structopt::StructOpt;
#[test]
fn unique_flag() {
#[derive(StructOpt, PartialEq, Debug)]
struct Opt {
#[structopt(short = "a", long = "alice")]
alice: bool,
}
assert_eq!(Opt { alice: false },
Opt::from_clap(&Opt::clap().get_matches_from(&["test"])));
assert_eq!(Opt { alice: true },
Opt::from_clap(&Opt::clap().get_matches_from(&["test", "-a"])));
assert_eq!(Opt { alice: true },
Opt::from_clap(&Opt::clap().get_matches_from(&["test", "--alice"])));
assert!(Opt::clap().get_matches_from_safe(&["test", "-i"]).is_err());
assert!(Opt::clap().get_matches_from_safe(&["test", "-a", "foo"]).is_err());
assert!(Opt::clap().get_matches_from_safe(&["test", "-a", "-a"]).is_err());
assert!(Opt::clap().get_matches_from_safe(&["test", "-a", "--alice"]).is_err());
}
#[test]
fn multiple_flag() {
#[derive(StructOpt, PartialEq, Debug)]
struct Opt {
#[structopt(short = "a", long = "alice", parse(from_occurrences))]
alice: u64,
#[structopt(short = "b", long = "bob", parse(from_occurrences))]
bob: u8,
}
assert_eq!(Opt { alice: 0, bob: 0 },
Opt::from_clap(&Opt::clap().get_matches_from(&["test"])));
assert_eq!(Opt { alice: 1, bob: 0 },
Opt::from_clap(&Opt::clap().get_matches_from(&["test", "-a"])));
assert_eq!(Opt { alice: 2, bob: 0 },
Opt::from_clap(&Opt::clap().get_matches_from(&["test", "-a", "-a"])));
assert_eq!(Opt { alice: 2, bob: 2 },
Opt::from_clap(&Opt::clap().get_matches_from(&["test", "-a", "--alice", "-bb"])));
assert_eq!(Opt { alice: 3, bob: 1 },
Opt::from_clap(&Opt::clap().get_matches_from(&["test", "-aaa", "--bob"])));
assert!(Opt::clap().get_matches_from_safe(&["test", "-i"]).is_err());
assert!(Opt::clap().get_matches_from_safe(&["test", "-a", "foo"]).is_err());
}
#[test]
fn combined_flags() {
#[derive(StructOpt, PartialEq, Debug)]
struct Opt {
#[structopt(short = "a", long = "alice")]
alice: bool,
#[structopt(short = "b", long = "bob", parse(from_occurrences))]
bob: u64,
}
assert_eq!(Opt { alice: false, bob: 0 },
Opt::from_clap(&Opt::clap().get_matches_from(&["test"])));
assert_eq!(Opt { alice: true, bob: 0 },
Opt::from_clap(&Opt::clap().get_matches_from(&["test", "-a"])));
assert_eq!(Opt { alice: true, bob: 0 },
Opt::from_clap(&Opt::clap().get_matches_from(&["test", "-a"])));
assert_eq!(Opt { alice: false, bob: 1 },
Opt::from_clap(&Opt::clap().get_matches_from(&["test", "-b"])));
assert_eq!(Opt { alice: true, bob: 1 },
Opt::from_clap(&Opt::clap().get_matches_from(&["test", "--alice", "--bob"])));
assert_eq!(Opt { alice: true, bob: 4 },
Opt::from_clap(&Opt::clap().get_matches_from(&["test", "-bb", "-a", "-bb"])));
}