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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
use std::default;
use std::process::Command;
use std::path::PathBuf;
use std::vec::Vec;
use errors::*;
use output::{OutputAssertion, OutputKind};
/// Assertions for a specific command.
#[derive(Debug)]
pub struct Assert {
cmd: Vec<String>,
current_dir: Option<PathBuf>,
expect_success: Option<bool>,
expect_exit_code: Option<i32>,
expect_output: Vec<OutputAssertion>,
}
impl default::Default for Assert {
/// Construct an assert using `cargo run --` as command.
///
/// Defaults to asserting _successful_ execution.
fn default() -> Self {
Assert {
cmd: vec!["cargo", "run", "--"]
.into_iter().map(String::from).collect(),
current_dir: None,
expect_success: Some(true),
expect_exit_code: None,
expect_output: vec![],
}
}
}
impl Assert {
/// Run the crate's main binary.
///
/// Defaults to asserting _successful_ execution.
pub fn main_binary() -> Self {
Assert::default()
}
/// Run a specific binary of the current crate.
///
/// Defaults to asserting _successful_ execution.
pub fn cargo_binary(name: &str) -> Self {
Assert {
cmd: vec!["cargo", "run", "--bin", name, "--"]
.into_iter().map(String::from).collect(),
..Self::default()
}
}
/// Run a custom command.
///
/// Defaults to asserting _successful_ execution.
///
/// # Examples
///
/// ```rust
/// extern crate assert_cli;
///
/// assert_cli::Assert::command(&["echo", "1337"])
/// .unwrap();
/// ```
pub fn command(cmd: &[&str]) -> Self {
Assert {
cmd: cmd.into_iter().cloned().map(String::from).collect(),
..Self::default()
}
}
/// Add arguments to the command.
///
/// # Examples
///
/// ```rust
/// extern crate assert_cli;
///
/// assert_cli::Assert::command(&["echo"])
/// .with_args(&["42"])
/// .stdout().contains("42")
/// .unwrap();
/// ```
pub fn with_args(mut self, args: &[&str]) -> Self {
self.cmd.extend(args.into_iter().cloned().map(String::from));
self
}
/// Sets the working directory for the command.
///
/// # Examples
///
/// ```rust
/// extern crate assert_cli;
///
/// assert_cli::Assert::command(&["wc", "lib.rs"])
/// .current_dir(std::path::Path::new("src"))
/// .stdout().contains("lib.rs")
/// .execute()
/// .unwrap();
/// ```
pub fn current_dir<P: Into<PathBuf>>(mut self, dir: P) -> Self {
self.current_dir = Some(dir.into());
self
}
/// Small helper to make chains more readable.
///
/// # Examples
///
/// ```rust
/// extern crate assert_cli;
///
/// assert_cli::Assert::command(&["echo", "42"])
/// .stdout().contains("42")
/// .unwrap();
/// ```
pub fn and(self) -> Self {
self
}
/// Expect the command to be executed successfully.
///
/// # Examples
///
/// ```rust
/// extern crate assert_cli;
///
/// assert_cli::Assert::command(&["echo", "42"])
/// .unwrap();
/// ```
pub fn succeeds(mut self) -> Self {
self.expect_exit_code = None;
self.expect_success = Some(true);
self
}
/// Expect the command to fail.
///
/// Note: This does not include shell failures like `command not found`. I.e. the
/// command must _run_ and fail for this assertion to pass.
///
/// # Examples
///
/// ```rust
/// extern crate assert_cli;
///
/// assert_cli::Assert::command(&["cat", "non-existing-file"])
/// .fails()
/// .and()
/// .stderr().contains("non-existing-file")
/// .unwrap();
/// ```
pub fn fails(mut self) -> Self {
self.expect_success = Some(false);
self
}
/// Expect the command to fail and return a specific error code.
///
/// # Examples
///
/// ```rust
/// extern crate assert_cli;
///
/// assert_cli::Assert::command(&["cat", "non-existing-file"])
/// .fails_with(1)
/// .and()
/// .stderr().is("cat: non-existing-file: No such file or directory")
/// .unwrap();
/// ```
pub fn fails_with(mut self, expect_exit_code: i32) -> Self {
self.expect_success = Some(false);
self.expect_exit_code = Some(expect_exit_code);
self
}
/// Create an assertion for stdout's contents
///
/// # Examples
///
/// ```rust
/// extern crate assert_cli;
///
/// assert_cli::Assert::command(&["echo", "42"])
/// .stdout().contains("42")
/// .unwrap();
/// ```
pub fn stdout(self) -> OutputAssertionBuilder {
OutputAssertionBuilder {
assertion: self,
kind: OutputKind::StdOut,
expected_result: true,
}
}
/// Create an assertion for stdout's contents
///
/// # Examples
///
/// ```rust
/// extern crate assert_cli;
///
/// assert_cli::Assert::command(&["cat", "non-existing-file"])
/// .fails_with(1)
/// .and()
/// .stderr().is("cat: non-existing-file: No such file or directory")
/// .unwrap();
/// ```
pub fn stderr(self) -> OutputAssertionBuilder {
OutputAssertionBuilder {
assertion: self,
kind: OutputKind::StdErr,
expected_result: true,
}
}
/// Execute the command and check the assertions.
///
/// # Examples
///
/// ```rust
/// extern crate assert_cli;
///
/// let test = assert_cli::Assert::command(&["echo", "42"])
/// .stdout().contains("42")
/// .execute();
/// assert!(test.is_ok());
/// ```
pub fn execute(self) -> Result<()> {
let cmd = &self.cmd[0];
let args: Vec<_> = self.cmd.iter().skip(1).collect();
let mut command = Command::new(cmd);
let command = command.args(&args);
let command = match self.current_dir {
Some(ref dir) => command.current_dir(dir),
None => command,
};
let output = command.output()?;
if let Some(expect_success) = self.expect_success {
if expect_success != output.status.success() {
let out = String::from_utf8_lossy(&output.stdout).to_string();
let err = String::from_utf8_lossy(&output.stderr).to_string();
bail!(ErrorKind::StatusMismatch(
self.cmd.clone(),
expect_success,
out,
err,
));
}
}
if self.expect_exit_code.is_some() &&
self.expect_exit_code != output.status.code() {
let out = String::from_utf8_lossy(&output.stdout).to_string();
let err = String::from_utf8_lossy(&output.stderr).to_string();
bail!(ErrorKind::ExitCodeMismatch(
self.cmd.clone(),
self.expect_exit_code,
output.status.code(),
out,
err,
));
}
self.expect_output
.iter()
.map(|a| a.execute(&output, &self.cmd))
.collect::<Result<Vec<()>>>()?;
Ok(())
}
/// Execute the command, check the assertions, and panic when they fail.
///
/// # Examples
///
/// ```rust,should_panic="Assert CLI failure"
/// extern crate assert_cli;
///
/// assert_cli::Assert::command(&["echo", "42"])
/// .fails()
/// .unwrap(); // panics
/// ```
pub fn unwrap(self) {
if let Err(err) = self.execute() {
panic!("{}", err);
}
}
}
/// Assertions for command output.
#[derive(Debug)]
pub struct OutputAssertionBuilder {
assertion: Assert,
kind: OutputKind,
expected_result: bool,
}
impl OutputAssertionBuilder {
/// Negate the assertion predicate
///
/// # Examples
///
/// ```rust
/// extern crate assert_cli;
///
/// assert_cli::Assert::command(&["echo", "42"])
/// .stdout().not().contains("73")
/// .unwrap();
/// ```
pub fn not(mut self) -> Self {
self.expected_result = ! self.expected_result;
self
}
/// Expect the command's output to **contain** `output`.
///
/// # Examples
///
/// ```rust
/// extern crate assert_cli;
///
/// assert_cli::Assert::command(&["echo", "42"])
/// .stdout().contains("42")
/// .unwrap();
/// ```
pub fn contains<O: Into<String>>(mut self, output: O) -> Assert {
self.assertion.expect_output.push(OutputAssertion {
expect: output.into(),
fuzzy: true,
expected_result: self.expected_result,
kind: self.kind,
});
self.assertion
}
/// Expect the command to output **exactly** this `output`.
///
/// # Examples
///
/// ```rust
/// extern crate assert_cli;
///
/// assert_cli::Assert::command(&["echo", "42"])
/// .stdout().is("42")
/// .unwrap();
/// ```
pub fn is<O: Into<String>>(mut self, output: O) -> Assert {
self.assertion.expect_output.push(OutputAssertion {
expect: output.into(),
fuzzy: false,
expected_result: self.expected_result,
kind: self.kind,
});
self.assertion
}
/// Expect the command's output to not **contain** `output`.
///
/// # Examples
///
/// ```rust
/// extern crate assert_cli;
///
/// assert_cli::Assert::command(&["echo", "42"])
/// .stdout().doesnt_contain("73")
/// .unwrap();
/// ```
pub fn doesnt_contain<O: Into<String>>(self, output: O) -> Assert {
self.not().contains(output)
}
/// Expect the command to output to not be **exactly** this `output`.
///
/// # Examples
///
/// ```rust
/// extern crate assert_cli;
///
/// assert_cli::Assert::command(&["echo", "42"])
/// .stdout().isnt("73")
/// .unwrap();
/// ```
pub fn isnt<O: Into<String>>(self, output: O) -> Assert {
self.not().is(output)
}
}