blob: 7c5369806d095d3d53d3d2ad140e0c907a53c58b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
use std::process::Command;
use assert_cmd::prelude::*;
use clap::{crate_name, crate_version, ValueEnum};
use clap_complete::Shell;
mod fixtures;
use crate::fixtures::Error;
#[test]
/// Show help and exit.
fn help_shows() -> Result<(), Error> {
Command::cargo_bin("miniserve")?
.arg("-h")
.assert()
.success();
Ok(())
}
#[test]
/// Show version and exit.
fn version_shows() -> Result<(), Error> {
Command::cargo_bin("miniserve")?
.arg("-V")
.assert()
.success()
.stdout(format!("{} {}\n", crate_name!(), crate_version!()));
Ok(())
}
#[test]
/// Print completions and exit.
fn print_completions() -> Result<(), Error> {
for shell in Shell::value_variants() {
Command::cargo_bin("miniserve")?
.arg("--print-completions")
.arg(shell.to_string())
.assert()
.success();
}
Ok(())
}
#[test]
/// Print completions rejects invalid shells.
fn print_completions_invalid_shell() -> Result<(), Error> {
Command::cargo_bin("miniserve")?
.arg("--print-completions")
.arg("fakeshell")
.assert()
.failure();
Ok(())
}
|