checked-command

Version 0.2.x is a extension trait to std::process::Command and can be found here: in the 0.2 branch

Provides an alternative to rust's std::process::Command which is more testable, flexible and prevents the way to easy class of bugs where the programmer forgets to check the exit status of a process as intuition tels us a "failed command" should return a error. (But the error in std::process::Command is about failing to launch a sub-process and doesn't care about exit codes at all).

For now this is focused on cases which wait until the subprocess is completed and then map the output (or do not care about the output).

Currently this type contains following features:

Mini Example

Use cargo run --example readme to run this:

```rust use checked_command::{Command, CommandExecutionWithStringOutputError as Error, MapStdoutString};

fn ls_command() -> Command, Error> { Command::new( "ls", MapStdoutString(|out| { let lines = out.lines().map(Into::into).collect::>(); Ok(lines) }), ) }

fn main() { let entries = ls_command().run().unwrap(); println!("ls:"); for entry in entries { println!("\t{}", entry); } } ```

For other examples e.g. about how the mocking works take a look at the examples dir or the module level documentation produced by rustdoc which likely should be hosted on docs.rs. Be aware that the link leads to the latest released version and might as such be out of sync if updates have not yet been released.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.