mirror of
https://github.com/clap-rs/clap
synced 2024-12-14 14:52:33 +00:00
134 lines
3 KiB
Rust
134 lines
3 KiB
Rust
use crate::common;
|
|
|
|
#[test]
|
|
fn basic() {
|
|
let name = "my-app";
|
|
let cmd = common::basic_command(name);
|
|
common::assert_matches(
|
|
snapbox::file!["../snapshots/basic.ps1"],
|
|
clap_complete::shells::PowerShell,
|
|
cmd,
|
|
name,
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn feature_sample() {
|
|
let name = "my-app";
|
|
let cmd = common::feature_sample_command(name);
|
|
common::assert_matches(
|
|
snapbox::file!["../snapshots/feature_sample.ps1"],
|
|
clap_complete::shells::PowerShell,
|
|
cmd,
|
|
name,
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn special_commands() {
|
|
let name = "my-app";
|
|
let cmd = common::special_commands_command(name);
|
|
common::assert_matches(
|
|
snapbox::file!["../snapshots/special_commands.ps1"],
|
|
clap_complete::shells::PowerShell,
|
|
cmd,
|
|
name,
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn quoting() {
|
|
let name = "my-app";
|
|
let cmd = common::quoting_command(name);
|
|
common::assert_matches(
|
|
snapbox::file!["../snapshots/quoting.ps1"],
|
|
clap_complete::shells::PowerShell,
|
|
cmd,
|
|
name,
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn aliases() {
|
|
let name = "my-app";
|
|
let cmd = common::aliases_command(name);
|
|
common::assert_matches(
|
|
snapbox::file!["../snapshots/aliases.ps1"],
|
|
clap_complete::shells::PowerShell,
|
|
cmd,
|
|
name,
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn sub_subcommands() {
|
|
let name = "my-app";
|
|
let cmd = common::sub_subcommands_command(name);
|
|
common::assert_matches(
|
|
snapbox::file!["../snapshots/sub_subcommands.ps1"],
|
|
clap_complete::shells::PowerShell,
|
|
cmd,
|
|
name,
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn custom_bin_name() {
|
|
let name = "my-app";
|
|
let bin_name = "bin-name";
|
|
let cmd = common::basic_command(name);
|
|
common::assert_matches(
|
|
snapbox::file!["../snapshots/custom_bin_name.ps1"],
|
|
clap_complete::shells::PowerShell,
|
|
cmd,
|
|
bin_name,
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn value_hint() {
|
|
let name = "my-app";
|
|
let cmd = common::value_hint_command(name);
|
|
common::assert_matches(
|
|
snapbox::file!["../snapshots/value_hint.ps1"],
|
|
clap_complete::shells::PowerShell,
|
|
cmd,
|
|
name,
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn value_terminator() {
|
|
let name = "my-app";
|
|
let cmd = common::value_terminator_command(name);
|
|
common::assert_matches(
|
|
snapbox::file!["../snapshots/value_terminator.ps1"],
|
|
clap_complete::shells::PowerShell,
|
|
cmd,
|
|
name,
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn two_multi_valued_arguments() {
|
|
let name = "my-app";
|
|
let cmd = common::two_multi_valued_arguments_command(name);
|
|
common::assert_matches(
|
|
snapbox::file!["../snapshots/two_multi_valued_arguments.ps1"],
|
|
clap_complete::shells::PowerShell,
|
|
cmd,
|
|
name,
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn subcommand_last() {
|
|
let name = "my-app";
|
|
let cmd = common::subcommand_last(name);
|
|
common::assert_matches(
|
|
snapbox::file!["../snapshots/subcommand_last.ps1"],
|
|
clap_complete::shells::PowerShell,
|
|
cmd,
|
|
name,
|
|
);
|
|
}
|