blob: 40fabbd2ce9171582b49113d4d2f1280ead011a6 (
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
use std::process::Command; // Run programs
use assert_cmd::prelude::*; // Add methods on commands
use predicates::prelude::*; // Used for writing assertions
use assert_cmd::assert::Assert;
#[cfg(unix)]
use std::os::unix::process::ExitStatusExt;
pub trait Success2 {
// Our own function with better reporting of errors
fn success2(self) -> Self;
}
impl Success2 for Assert {
fn success2(self) -> Self {
if !self.get_output().status.success() {
let code = self.get_output().status.code();
if cfg!(unix) {
if code.is_none() {
let signal = self.get_output().status.signal().unwrap();
panic!("INTERRUPTED with signal: {}", signal);
}
}
let actual_code = code.unwrap();
panic!("Non zero exit code: {}", actual_code);
}
self
}
}
#[test]
fn test_help() {
let mut cmd = Command::cargo_bin("fpm").unwrap();
cmd.arg("--help");
cmd.assert()
.success2()
.stdout(
predicate::str::contains("--help Prints help information"));
}
#[test]
fn test_1() {
let mut build = Command::cargo_bin("fpm").unwrap();
build.arg("build")
.current_dir("tests/1");
build.assert()
.success2()
.stdout(predicate::str::contains("Built target p1")
.and(predicate::str::contains("TEST1 OK").not()));
let mut run = Command::cargo_bin("fpm").unwrap();
run.arg("run")
.current_dir("tests/1");
run.assert()
.success2()
.stdout(predicate::str::contains("TEST1 OK"));
}
#[test]
fn test_2() {
let mut build = Command::cargo_bin("fpm").unwrap();
build.arg("build")
.current_dir("tests/2");
build.assert()
.success2()
.stdout(predicate::str::contains("Built target p1")
.and(predicate::str::contains("TEST2 OK").not()));
let mut run = Command::cargo_bin("fpm").unwrap();
run.arg("run")
.current_dir("tests/2");
run.assert()
.success2()
.stdout(predicate::str::contains("TEST2 OK"));
}
|