@@ -6,7 +6,7 @@ use std::path::Path;
6
6
use std:: process:: { Command as StdCommand , ExitStatus , Output , Stdio } ;
7
7
8
8
use crate :: drop_bomb:: DropBomb ;
9
- use crate :: { assert_contains, assert_not_contains, handle_failed_output} ;
9
+ use crate :: { assert_contains, assert_equals , assert_not_contains, handle_failed_output} ;
10
10
11
11
/// This is a custom command wrapper that simplifies working with commands and makes it easier to
12
12
/// ensure that we check the exit status of executed processes.
@@ -21,6 +21,7 @@ use crate::{assert_contains, assert_not_contains, handle_failed_output};
21
21
///
22
22
/// [`run`]: Self::run
23
23
/// [`run_fail`]: Self::run_fail
24
+ /// [`run_unchecked`]: Self::run_unchecked
24
25
#[ derive( Debug ) ]
25
26
pub struct Command {
26
27
cmd : StdCommand ,
@@ -116,6 +117,15 @@ impl Command {
116
117
output
117
118
}
118
119
120
+ /// Run the command but do not check its exit status.
121
+ /// Only use if you explicitly don't care about the exit status.
122
+ /// Prefer to use [`Self::run`] and [`Self::run_fail`]
123
+ /// whenever possible.
124
+ #[ track_caller]
125
+ pub fn run_unchecked ( & mut self ) -> CompletedProcess {
126
+ self . command_output ( )
127
+ }
128
+
119
129
#[ track_caller]
120
130
fn command_output ( & mut self ) -> CompletedProcess {
121
131
self . drop_bomb . defuse ( ) ;
@@ -163,41 +173,45 @@ impl CompletedProcess {
163
173
self . output . status
164
174
}
165
175
166
- /// Checks that trimmed `stdout` matches trimmed `content `.
176
+ /// Checks that trimmed `stdout` matches trimmed `expected `.
167
177
#[ track_caller]
168
- pub fn assert_stdout_equals < S : AsRef < str > > ( & self , content : S ) -> & Self {
169
- assert_eq ! ( self . stdout_utf8( ) . trim( ) , content . as_ref( ) . trim( ) ) ;
178
+ pub fn assert_stdout_equals < S : AsRef < str > > ( & self , expected : S ) -> & Self {
179
+ assert_equals ( self . stdout_utf8 ( ) . trim ( ) , expected . as_ref ( ) . trim ( ) ) ;
170
180
self
171
181
}
172
182
183
+ /// Checks that `stdout` does not contain `unexpected`.
173
184
#[ track_caller]
174
- pub fn assert_stdout_contains < S : AsRef < str > > ( self , needle : S ) -> Self {
175
- assert_contains ( & self . stdout_utf8 ( ) , needle . as_ref ( ) ) ;
185
+ pub fn assert_stdout_not_contains < S : AsRef < str > > ( & self , unexpected : S ) -> & Self {
186
+ assert_not_contains ( & self . stdout_utf8 ( ) , unexpected . as_ref ( ) ) ;
176
187
self
177
188
}
178
189
190
+ /// Checks that `stdout` contains `expected`.
179
191
#[ track_caller]
180
- pub fn assert_stdout_not_contains < S : AsRef < str > > ( & self , needle : S ) -> & Self {
181
- assert_not_contains ( & self . stdout_utf8 ( ) , needle . as_ref ( ) ) ;
192
+ pub fn assert_stdout_contains < S : AsRef < str > > ( & self , expected : S ) -> & Self {
193
+ assert_contains ( & self . stdout_utf8 ( ) , expected . as_ref ( ) ) ;
182
194
self
183
195
}
184
196
185
- /// Checks that trimmed `stderr` matches trimmed `content `.
197
+ /// Checks that trimmed `stderr` matches trimmed `expected `.
186
198
#[ track_caller]
187
- pub fn assert_stderr_equals < S : AsRef < str > > ( & self , content : S ) -> & Self {
188
- assert_eq ! ( self . stderr_utf8( ) . trim( ) , content . as_ref( ) . trim( ) ) ;
199
+ pub fn assert_stderr_equals < S : AsRef < str > > ( & self , expected : S ) -> & Self {
200
+ assert_equals ( self . stderr_utf8 ( ) . trim ( ) , expected . as_ref ( ) . trim ( ) ) ;
189
201
self
190
202
}
191
203
204
+ /// Checks that `stderr` contains `expected`.
192
205
#[ track_caller]
193
- pub fn assert_stderr_contains < S : AsRef < str > > ( & self , needle : S ) -> & Self {
194
- assert_contains ( & self . stderr_utf8 ( ) , needle . as_ref ( ) ) ;
206
+ pub fn assert_stderr_contains < S : AsRef < str > > ( & self , expected : S ) -> & Self {
207
+ assert_contains ( & self . stderr_utf8 ( ) , expected . as_ref ( ) ) ;
195
208
self
196
209
}
197
210
211
+ /// Checks that `stderr` does not contain `unexpected`.
198
212
#[ track_caller]
199
- pub fn assert_stderr_not_contains < S : AsRef < str > > ( & self , needle : S ) -> & Self {
200
- assert_not_contains ( & self . stdout_utf8 ( ) , needle . as_ref ( ) ) ;
213
+ pub fn assert_stderr_not_contains < S : AsRef < str > > ( & self , unexpected : S ) -> & Self {
214
+ assert_not_contains ( & self . stdout_utf8 ( ) , unexpected . as_ref ( ) ) ;
201
215
self
202
216
}
203
217
0 commit comments