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
use std::{collections::HashMap, io::Result, path::PathBuf, process::Output};
use async_trait::async_trait;
use tracing::trace;
// Command
/// A command.
///
/// **This is supported on `feature=cmd` only.**
#[derive(Debug, Clone, Eq, PartialEq)]
pub struct Command {
/// The arguments to pass to the command.
pub args: Vec<String>,
/// The current working directory to run the command in.
pub cwd: Option<PathBuf>,
/// The environment variables to set for the command.
pub env: Option<HashMap<String, String>>,
/// The group to run the command as.
#[cfg(unix)]
pub gid: Option<u32>,
/// The program to run.
pub program: String,
/// The user to run the command as.
#[cfg(unix)]
pub uid: Option<u32>,
}
impl Command {
/// Creates a new command.
pub fn new(program: String) -> Self {
Self {
args: vec![],
cwd: None,
env: None,
#[cfg(unix)]
gid: None,
program,
#[cfg(unix)]
uid: None,
}
}
/// Add argument.
pub fn with_arg(mut self, arg: String) -> Self {
self.args.push(arg);
self
}
/// Set arguments.
pub fn with_args(mut self, args: Vec<String>) -> Self {
self.args = args;
self
}
/// Set current working directory.
pub fn with_cwd(mut self, cwd: PathBuf) -> Self {
self.cwd = Some(cwd);
self
}
/// Set environment variable.
pub fn with_env(mut self, key: String, val: String) -> Self {
match self.env {
Some(ref mut env) => {
env.insert(key, val);
}
None => {
self.env = Some(HashMap::from_iter([(key, val)]));
}
}
self
}
/// Set all environment variables.
pub fn with_envs(mut self, env: HashMap<String, String>) -> Self {
self.env = Some(env);
self
}
/// Set GID.
#[cfg(unix)]
pub fn with_gid(mut self, gid: u32) -> Self {
self.gid = Some(gid);
self
}
/// Set UID.
#[cfg(unix)]
pub fn with_uid(mut self, uid: u32) -> Self {
self.uid = Some(uid);
self
}
}
// CommandOutput
/// The output of a command.
///
/// **This is supported on `feature=cmd` only.**
#[derive(Debug, Clone, Eq, PartialEq)]
pub struct CommandOutput {
/// The exit code of the command.
pub code: Option<i32>,
/// The standard error output of the command.
pub stderr: Vec<u8>,
/// The standard output of the command.
pub stdout: Vec<u8>,
}
impl From<Output> for CommandOutput {
fn from(output: Output) -> Self {
Self {
code: output.status.code(),
stderr: output.stderr,
stdout: output.stdout,
}
}
}
// CommandRunner
/// A trait for running commands.
///
/// **This is supported on `feature=cmd` only.**
///
/// [Example](https://github.com/leroyguillaume/mockable/tree/main/examples/cmd.rs).
#[async_trait]
pub trait CommandRunner: Send + Sync {
/// Runs the given command.
async fn run(&self, cmd: Command) -> Result<CommandOutput>;
}
// DefaultCommandRunner
/// Default implementation of [`CommandRunner`](trait.CommandRunner.html).
///
/// **This is supported on `feature=cmd` only.**
///
/// [Example](https://github.com/leroyguillaume/mockable/tree/main/examples/cmd.rs).
pub struct DefaultCommandRunner;
#[async_trait]
impl CommandRunner for DefaultCommandRunner {
async fn run(&self, cmd: Command) -> Result<CommandOutput> {
trace!(?cmd, "running command");
let mut builder = tokio::process::Command::new(cmd.program);
builder.args(cmd.args);
if let Some(cwd) = cmd.cwd {
builder.current_dir(cwd);
}
if let Some(env) = cmd.env {
builder.envs(env);
}
if cfg!(unix) {
if let Some(gid) = cmd.gid {
builder.gid(gid);
}
if let Some(uid) = cmd.uid {
builder.uid(uid);
}
}
let output = builder.output().await?;
Ok(output.into())
}
}
// MockCommandRunner
#[cfg(feature = "mock")]
mockall::mock! {
/// `mockall` implementation of [`CommandRunner`](trait.CommandRunner.html).
///
/// **This is supported on `feature=cmd,mock` only.**
///
/// [Example](https://github.com/leroyguillaume/mockable/tree/main/examples/cmd.rs).
pub CommandRunner {}
#[async_trait]
impl CommandRunner for CommandRunner {
async fn run(&self, cmd: Command) -> Result<CommandOutput>;
}
}