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 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503
//! <span align="center">
//!
//! <h1><pre><code>cli-sandbox</code></pre></h1>
//!
//! <a href="https://crates.io/crates/cli-sandbox"><img src="https://img.shields.io/crates/d/cli-sandbox?style=for-the-badge&logo=rust"></img></a>
//! <a href="https://docs.rs/cli-sandbox"><img src="https://img.shields.io/docsrs/cli-sandbox?style=for-the-badge&logo=docsdotrs"></img></a>
//!
//! </span>
//!
//! `cli-sandbox` is a sandboxing environment and testing utility to help you test and debug your CLI applications, inspired by [Cargo's `cargo-test-support`](https://github.com/rust-lang/cargo/tree/master/crates/cargo-test-support).
//!
//! All tests get their own temporary directories, where you can create files, check files, test your program against those files and check the output of your program in various ways.
//!
//! For example, if you want to check that your Python to Rust transpiler works correctly:
//!
//! ```rust
//! use cli_sandbox::{project, WithStdout};
//! use std::error::Error;
//!
//! #[test]
//! fn compiling() -> Result<(), Box<dyn Error>> {
//! let proj = project()?; // Create a project
//!
//! // Let's create a file, and put in there some Python.
//! proj.new_file("my-program.py",
//! r#"def main():
//! print("Hi! this is a test")
//!
//! main()"#)?;
//!
//! let cmd = proj.command(["build"])?; // Execute the command "<YOUR COMMAND> build". Cli-sandbox will automatically get pickup your command.
//!
//! // Now, let's check that the transpiler created the file correctly.
//! proj.check_file("my-program.rs",
//! r#"fn main() {
//! println!("Hi! this is a test");
//! }
//!
//! main()"#)?;
//!
//! // And that the command stdout and stderr are correct.
//!
//! cmd.with_stdout("File transpiled correctly! (`my-program.py` -> `my-program.rs`)");
//!
//! // If the stderr isn't empty, we'll panic.
//! if !cmd.empty_stderr() {
//! panic!("Something went wrong! stderr isn't empty");
//! };
//! }
//! ```
//!
//! You can also get the path of a project (it changes each time the tests are executed, they're temporary).
//!
//! ## Installation
//!
//! ```sh
//! cargo add cli-sandbox --dev
//! ```
//!
//! ## Usage
//!
//! The first step is to create a `Project`. You can use either `Project::new()` or `project()`. This will create a temporary directory for you to put all your testing files in there.
//!
//! From a project, you can execute commands, do I/O operations or even operate over it manually by getting the project's path (`Project::path()`).
//!
//! Check the [project's documentation](https://docs.rs/cli-sandbox) for more info.
//!
//! ## Features
//!
//! * Regex support for checking `stdout` and `stderr`. (feature: `regex`)
//! * All output is beautiful thanks to [`pretty-assertions`](https://docs.rs/pretty_assertions/latest/pretty_assertions/) and [`better_panic`](https://docs.rs/better_panic). (feature: `pretty`, also can be enabled individually)
//! * Little fuzzing functionality (feature: `fuzz`)
//! * Testing either the `debug` or `release` profile (features: `dev` or `release`)
//!
// All code blocks in fragments must be ignored because rustdoc hates environment variables, it seems.
#![cfg_attr(feature = "deny-warnings", deny(warnings))] // Use for tests
#![warn(
unused,
clippy::dbg_macro,
clippy::decimal_literal_representation,
clippy::undocumented_unsafe_blocks,
clippy::empty_structs_with_brackets,
clippy::format_push_string,
clippy::get_unwrap,
clippy::if_then_some_else_none,
clippy::impl_trait_in_params,
clippy::integer_division,
clippy::large_include_file,
clippy::let_underscore_must_use,
clippy::semicolon_outside_block,
clippy::str_to_string,
clippy::todo,
clippy::unimplemented,
clippy::unneeded_field_pattern,
clippy::use_debug,
clippy::branches_sharing_code,
clippy::cast_possible_wrap,
clippy::doc_markdown,
clippy::empty_enum,
clippy::if_not_else,
clippy::inefficient_to_string,
clippy::items_after_statements,
clippy::large_digit_groups,
clippy::large_types_passed_by_value,
clippy::match_same_arms,
clippy::missing_const_for_fn,
clippy::missing_panics_doc,
clippy::needless_bitwise_bool,
clippy::needless_collect,
clippy::needless_pass_by_value,
clippy::no_effect_underscore_binding,
clippy::nonstandard_macro_braces,
clippy::or_fun_call,
clippy::range_plus_one,
clippy::range_minus_one,
clippy::similar_names,
clippy::suboptimal_flops,
clippy::too_many_lines,
clippy::unused_self
)]
use std::{
env,
ffi::OsStr,
fs::{write, File},
io::Read,
path::Path,
process::{Command, Output},
str,
};
use anyhow::Result;
#[cfg(feature = "pretty_assertions")]
use pretty_assertions::assert_eq;
#[cfg(feature = "regex")]
use regex::Regex;
use tempfile::{tempdir, TempDir};
#[derive(Debug)]
pub struct Project {
tempdir: TempDir,
}
/// Shortcut for [`Project::new()`].
#[inline(always)]
pub fn project() -> Result<Project> {
Project::new()
}
impl Project {
/// Creates a new [`Project`]
///
pub fn new() -> Result<Self> {
Ok(Self {
tempdir: tempdir()?,
})
}
/// Gets the [`std::path::Path`] for the [`Project`]'s temporary directory.
pub fn path(&self) -> &Path {
self.tempdir.path()
}
/// Creates a new file with a relative path to the project's directory.
///
/// `path` gets redirected to the project's real path (temporary and unknown).
#[inline]
pub fn new_file<P: AsRef<Path>>(&mut self, path: P, contents: &str) -> Result<()> {
Ok(write(self.path().join(path), contents)?)
}
/// Checks that the contents of a file are correct. It will panic if they aren't, and show the differences if the feature **`pretty_assertions`** is enabled
///
/// `path` gets redirected to the project's real path (temporary and unknown)
/// # Panics
/// Will panic if the contents of the file at path aren't encoded as UTF-8
pub fn check_file<P: AsRef<Path>>(&self, path: P, contents: &str) -> Result<()> {
let mut f = File::open(self.path().join(path))?;
let mut buf = Vec::new();
f.read_to_end(&mut buf)?;
let mut buf2 = String::new();
buf2.push_str(match str::from_utf8(&buf) {
Ok(val) => val,
Err(_) => panic!("buf isn't UTF-8 (bug)"),
});
assert_eq!(buf2, contents);
Ok(())
}
/// Executes a command relative to the project's directory
pub fn command<I, S>(&self, args: I) -> Result<Output>
where
I: IntoIterator<Item = S>,
S: AsRef<OsStr>,
{
#[cfg(feature = "dev")]
return Ok(Command::new(
Path::new(&std::env::var("CARGO_TARGET_DIR")?)
.join("debug")
.join(env!("CARGO_PKG_NAME")),
)
.current_dir(self.path())
.args(args)
.output()?);
#[cfg(feature = "release")]
return Ok(Command::new(
Path::new(&std::env::var("CARGO_TARGET_DIR")?)
.join("release")
.join(env!("CARGO_PKG_NAME")),
)
.current_dir(&self.path())
.args(args)
.output()?);
}
}
pub trait WithStdout {
/// Checks that the standard output of a command is what's expected. If they aren't the same, it will show the differences if the `pretty_asssertions` feature is enabled
///
/// ## Example
/// ```no_run
/// # use crate::cli_sandbox::WithStdout;
/// # use std::error::Error;
/// # use cli_sandbox::project;
/// # fn main() -> Result<(), Box<dyn Error>>{
/// let proj = project()?;
/// let cmd = proj.command(["my", "cool", "--args"])?;
/// cmd.with_stdout("Expected stdout");
/// # Ok(())
/// # }
/// ```
fn with_stdout<S: AsRef<str>>(&self, stdout: S);
/// Checks that the standard error of a command is what's expected. If they aren't the same, it will show the differences if the `pretty_asssertions` feature is enabled
///
/// ## Example
/// ```no_run
/// # use std::error::Error;
/// # use cli_sandbox::{project, WithStdout};
/// # fn main() -> Result<(), Box<dyn Error>>{
/// let proj = project()?;
/// let cmd = proj.command(["my", "cool", "--args"])?;
/// cmd.with_stderr("Expected stderr");
/// # Ok(())
/// # }
/// ```
fn with_stderr<S: AsRef<str>>(&self, stderr: S);
/// Checks that the standard output of a command is what's expected (Using regex). If they aren't the same, it will show the differences if the `pretty_asssertions` feature is enabled
///
/// ## Example
/// ```no_run
/// # use std::error::Error;
/// # use cli_sandbox::{project, WithStdout};
/// # fn main() -> Result<(), Box<dyn Error>>{
/// let proj = project()?;
/// let cmd = proj.command(["my", "cool", "--args"])?;
/// cmd.with_stdout_regex("<Regex that matches expected stdout>");
/// # Ok(())
/// # }
/// ```
#[cfg(feature = "regex")]
fn with_stdout_regex<S: AsRef<str>>(&self, stdout: S);
/// Checks that the standard error of a command is what's expected (Using regex). If they aren't the same, it will show the differences if the `pretty_asssertions` feature is enabled
///
/// ## Example
/// ```no_run
/// # use std::error::Error;
/// # use cli_sandbox::{project, WithStdout};
/// # fn main() -> Result<(), Box<dyn Error>>{
/// let proj = project()?;
/// let cmd = proj.command(["my", "cool", "--args"])?;
/// cmd.with_stderr("<Regex that matches expected stderr>");
/// # Ok(())
/// # }
/// ```
#[cfg(feature = "regex")]
fn with_stderr_regex<S: AsRef<str>>(&self, stderr: S);
/// Returns how many times the program contains the word "warning:" in the `stderr`. Useful for checking compile-time warnings.
///
/// ## Example
///
/// ```no_run
/// # use std::error::Error;
/// # use cli_sandbox::{project, WithStdout};
/// # fn main() -> Result<(), Box<dyn Error>> {
/// let proj = project()?;
/// let cmd = proj.command(["my", "cool", "--args"])?;
/// if cmd.stderr_warns() {
/// // Maybe there's something to check with that code...
/// }
/// # Ok(())
/// }
/// ```
fn stdout_warns(&self) -> bool;
/// Returns how many times the program contains the word "warning:" in the `stderr`. Useful for checking compile-time warnings.
///
/// ## Example
///
/// ```no_run
/// # use std::error::Error;
/// # use cli_sandbox::{project, WithStdout};
/// # fn main() -> Result<(), Box<dyn Error>> {
/// let proj = project()?;
/// let cmd = proj.command(["my", "cool", "--args"])?;
/// if cmd.stderr_warns() {
/// // Maybe there's something to check with that code...
/// }
/// # Ok(())
/// }
/// ```
fn stderr_warns(&self) -> bool;
/// Checks that the stderr is empty. It's different from `.with_stderr("")` in that this won't print a whole diff. Useful for when ANY presence of a stderr would mean that there were errors, and the output is invalid.
///
/// ## Example
///
/// ```no_run
/// # use std::error::Error;
/// # use cli_sandbox::{project, WithStdout};
/// # fn main() -> Result<(), Box<dyn Error>> {
/// let proj = project()?;
/// let cmd = proj.command(["my", "cool", "--args"])?;
/// if !cmd.empty_stderr() {
/// panic!("HELP!!! THE OUTPUT IS INVALID!!");
/// }
/// # Ok(())
/// }
/// ```
fn empty_stderr(&self) -> bool;
/// Checks that the stdout is empty. It's different from `.with_stdout("")` in that this won't print a whole diff. Useful for when ANY presence of a stdout, would mean that there were errors, and the output is invalid.
///
/// ## Example
///
/// ```no_run
/// # use std::error::Error;
/// # use cli_sandbox::{project, WithStdout};
/// # fn main() -> Result<(), Box<dyn Error>> {
/// let proj = project()?;
/// let cmd = proj.command(["my", "cool", "--args"])?;
/// if !cmd.empty_stdout() {
/// panic!("HELP!!! THE OUTPUT IS INVALID!!");
/// }
/// # Ok(())
/// }
/// ```
fn empty_stdout(&self) -> bool;
}
impl WithStdout for Output {
fn with_stdout<S: AsRef<str>>(&self, stdout: S) {
let mut buf = String::new();
buf.push_str(match str::from_utf8(&self.stdout) {
Ok(val) => val,
Err(_) => panic!("stdout isn't UTF-8 (bug)"),
});
assert_eq!(buf, stdout.as_ref());
}
fn with_stderr<S: AsRef<str>>(&self, stderr: S) {
let mut buf = String::new();
buf.push_str(match str::from_utf8(&self.stderr) {
Ok(val) => val,
Err(_) => panic!("stderr isn't UTF-8 (bug)"),
});
assert_eq!(buf, stderr.as_ref());
}
#[cfg(feature = "regex")]
fn with_stderr_regex<S: AsRef<str>>(&self, regex: S) {
let re = match Regex::new(regex.as_ref()) {
Ok(re) => re,
Err(e) => panic!("Regex {} isn't valid: {e}", regex.as_ref()),
};
let mut buf = String::new();
buf.push_str(match str::from_utf8(&self.stderr) {
Ok(val) => val,
Err(_) => panic!("stderr isn't UTF-8 (bug)"),
});
if !re.is_match(&buf) {
assert_eq!(buf, regex.as_ref()); // Show differences
};
}
#[cfg(feature = "regex")]
fn with_stdout_regex<S: AsRef<str>>(&self, regex: S) {
let re = match Regex::new(regex.as_ref()) {
Ok(re) => re,
Err(e) => panic!("Regex {} isn't valid: {e}", regex.as_ref()),
};
let mut buf = String::new();
buf.push_str(match str::from_utf8(&self.stdout) {
Ok(val) => val,
Err(_) => panic!("stdout isn't UTF-8 (bug)"),
});
if !re.is_match(&buf) {
assert_eq!(buf, regex.as_ref()); // Show differences
};
}
fn stdout_warns(&self) -> bool {
let mut buf = String::new();
buf.push_str(match str::from_utf8(&self.stdout) {
Ok(val) => val,
Err(_) => panic!("stdout isn't UTF-8 (bug)"),
});
buf.contains("warnings:")
}
fn stderr_warns(&self) -> bool {
let mut buf = String::new();
buf.push_str(match str::from_utf8(&self.stderr) {
Ok(val) => val,
Err(_) => panic!("stderr isn't UTF-8 (bug)"),
});
buf.contains("warnings:")
}
#[inline]
fn empty_stderr(&self) -> bool {
self.stdout.is_empty()
}
#[inline]
fn empty_stdout(&self) -> bool {
self.stdout.is_empty()
}
}
#[cfg(feature = "fuzz")]
/// Generates a random string of text, meant to be used a mini-fuzz test. (As input to your CLI.)
///
/// ## Example
///
/// ```no_run
/// # use cli_sandbox::{project, fuzz, WithStdout};
/// # use std::error::Error;
/// # fn main() -> Result<(), Box<dyn Error>> {
/// let proj = project()?;
/// let cmd = proj.command(["name", &fuzz(10)])?; // Use a random string of length 10
/// cmd.with_stdout("...");
/// # Ok(())
/// # }
/// ```
pub fn fuzz(length: usize) -> String {
let charset = if let Ok(charset) = env::var("CARGO_CFG_FUZZ_CHARSET") {
charset
} else {
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890".into()
};
let chars = charset.chars().collect::<Vec<char>>();
let mut buf = String::new();
for _ in 0..=length {
buf.push(chars[fastrand::usize(..charset.len())]);
}
buf
}
#[cfg(feature = "fuzz_seed")]
/// Generates a random string of text, meant to be used a mini-fuzz test. (As input to your CLI.) It's different from [`fuzz`] because this function also takes a seed, meaining that it will output easily determinitable results.
///
/// ## Example
///
/// ```no_run
/// # use cli_sandbox::{project, fuzz_seed, WithStdout};
/// # use std::error::Error;
/// # fn main() -> Result<(), Box<dyn Error>> {
/// let proj = project()?;
/// let cmd = proj.command(["name", &fuzz_seed(5, 10)])?; // Use a random string of length 10
/// cmd.with_stdout("...");
/// # Ok(())
/// # }
/// ```
pub fn fuzz_seed(length: usize, seed: u64) -> String {
fastrand::seed(seed);
let charset = if let Ok(charset) = env::var("CARGO_CFG_FUZZ_CHARSET") {
charset
} else {
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890".into()
};
let mut chars = charset.chars();
let mut buf = String::new();
for _ in 0..=length {
buf.push(
chars
.nth(fastrand::u8(..charset.len() as u8).into())
.unwrap(),
);
}
charset
}
pub const MANIFEST_DIR: &str = env!("CARGO_MANIFEST_DIR");