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
use std::{
convert::Infallible,
env, error,
ffi::OsStr,
fmt, io,
path::{Path, PathBuf},
process::Command,
time::Duration,
};
mod standard;
mod transcript_impl;
pub use self::standard::StdShell;
use crate::{
traits::{ConfigureCommand, Echoing, SpawnShell, SpawnedShell},
Captured, ExitStatus,
};
type StatusCheckerFn = dyn Fn(&Captured) -> Option<ExitStatus>;
pub(crate) struct StatusCheck {
command: String,
response_checker: Box<StatusCheckerFn>,
}
impl fmt::Debug for StatusCheck {
fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
formatter
.debug_struct("StatusCheck")
.field("command", &self.command)
.finish()
}
}
impl StatusCheck {
pub fn command(&self) -> &str {
&self.command
}
pub fn check(&self, response: &Captured) -> Option<ExitStatus> {
(self.response_checker)(response)
}
}
pub struct ShellOptions<Cmd = Command> {
command: Cmd,
path_additions: Vec<PathBuf>,
io_timeout: Duration,
init_timeout: Duration,
init_commands: Vec<String>,
line_decoder: Box<dyn FnMut(Vec<u8>) -> io::Result<String>>,
status_check: Option<StatusCheck>,
}
impl<Cmd: fmt::Debug> fmt::Debug for ShellOptions<Cmd> {
fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
formatter
.debug_struct("ShellOptions")
.field("command", &self.command)
.field("path_additions", &self.path_additions)
.field("io_timeout", &self.io_timeout)
.field("init_timeout", &self.init_timeout)
.field("init_commands", &self.init_commands)
.field("status_check", &self.status_check)
.finish()
}
}
#[cfg(any(unix, windows))]
impl Default for ShellOptions {
fn default() -> Self {
Self::new(Self::default_shell())
}
}
impl<Cmd: ConfigureCommand> From<Cmd> for ShellOptions<Cmd> {
fn from(command: Cmd) -> Self {
Self::new(command)
}
}
impl<Cmd: ConfigureCommand> ShellOptions<Cmd> {
#[cfg(unix)]
fn default_shell() -> Command {
Command::new("sh")
}
#[cfg(windows)]
fn default_shell() -> Command {
let mut command = Command::new("cmd");
command.arg("/Q").arg("/K").arg("echo off && chcp 65001");
command
}
pub fn new(command: Cmd) -> Self {
Self {
command,
path_additions: vec![],
io_timeout: Duration::from_millis(500),
init_timeout: Duration::from_millis(1_500),
init_commands: vec![],
line_decoder: Box::new(|line| {
String::from_utf8(line)
.map_err(|err| io::Error::new(io::ErrorKind::InvalidData, err.utf8_error()))
}),
status_check: None,
}
}
#[must_use]
pub fn echoing(self, is_echoing: bool) -> ShellOptions<Echoing<Cmd>> {
ShellOptions {
command: Echoing::new(self.command, is_echoing),
path_additions: self.path_additions,
io_timeout: self.io_timeout,
init_timeout: self.init_timeout,
init_commands: self.init_commands,
line_decoder: self.line_decoder,
status_check: self.status_check,
}
}
#[must_use]
pub fn with_current_dir(mut self, current_dir: impl AsRef<Path>) -> Self {
self.command.current_dir(current_dir.as_ref());
self
}
#[must_use]
pub fn with_io_timeout(mut self, io_timeout: Duration) -> Self {
self.io_timeout = io_timeout;
self
}
#[must_use]
pub fn with_init_timeout(mut self, init_timeout: Duration) -> Self {
self.init_timeout = init_timeout;
self
}
#[must_use]
pub fn with_init_command(mut self, command: impl Into<String>) -> Self {
self.init_commands.push(command.into());
self
}
#[must_use]
pub fn with_env(mut self, name: impl AsRef<str>, value: impl AsRef<OsStr>) -> Self {
self.command.env(name.as_ref(), value.as_ref());
self
}
#[must_use]
pub fn with_line_decoder<E, F>(mut self, mut mapper: F) -> Self
where
E: Into<Box<dyn error::Error + Send + Sync>>,
F: FnMut(Vec<u8>) -> Result<String, E> + 'static,
{
self.line_decoder = Box::new(move |line| {
mapper(line).map_err(|err| io::Error::new(io::ErrorKind::InvalidData, err))
});
self
}
#[must_use]
pub fn with_lossy_utf8_decoder(self) -> Self {
self.with_line_decoder::<Infallible, _>(|line| {
Ok(String::from_utf8_lossy(&line).into_owned())
})
}
#[must_use]
pub fn with_status_check<F>(mut self, command: impl Into<String>, checker: F) -> Self
where
F: Fn(&Captured) -> Option<ExitStatus> + 'static,
{
let command = command.into();
assert!(
command.bytes().all(|ch| ch != b'\n' && ch != b'\r'),
"`command` contains a newline character ('\\n' or '\\r')"
);
self.status_check = Some(StatusCheck {
command,
response_checker: Box::new(checker),
});
self
}
fn target_path() -> PathBuf {
let mut path = env::current_exe().expect("Cannot obtain path to the executing file");
path.pop();
if path.ends_with("deps") {
path.pop();
}
path
}
#[must_use]
pub fn with_cargo_path(mut self) -> Self {
let target_path = Self::target_path();
self.path_additions.push(target_path.join("examples"));
self.path_additions.push(target_path);
self
}
#[must_use]
pub fn with_additional_path(mut self, path: impl Into<PathBuf>) -> Self {
let path = path.into();
self.path_additions.push(path);
self
}
}
impl<Cmd: SpawnShell> ShellOptions<Cmd> {
#[cfg_attr(
feature = "tracing",
tracing::instrument(
level = "debug",
skip(self),
err,
fields(self.path_additions = ?self.path_additions)
)
)]
fn spawn_shell(&mut self) -> io::Result<SpawnedShell<Cmd>> {
#[cfg(unix)]
const PATH_SEPARATOR: &str = ":";
#[cfg(windows)]
const PATH_SEPARATOR: &str = ";";
if !self.path_additions.is_empty() {
let mut path_var = env::var_os("PATH").unwrap_or_default();
if !path_var.is_empty() {
path_var.push(PATH_SEPARATOR);
}
for (i, addition) in self.path_additions.iter().enumerate() {
path_var.push(addition);
if i + 1 < self.path_additions.len() {
path_var.push(PATH_SEPARATOR);
}
}
self.command.env("PATH", &path_var);
}
self.command.spawn_shell()
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::{Transcript, UserInput};
#[cfg(any(unix, windows))]
#[test]
fn creating_transcript_basics() -> anyhow::Result<()> {
let inputs = vec![
UserInput::command("echo hello"),
UserInput::command("echo foo && echo bar >&2"),
];
let transcript = Transcript::from_inputs(&mut ShellOptions::default(), inputs)?;
assert_eq!(transcript.interactions().len(), 2);
{
let interaction = &transcript.interactions()[0];
assert_eq!(interaction.input().text, "echo hello");
let output = interaction.output().as_ref();
assert_eq!(output.trim(), "hello");
}
let interaction = &transcript.interactions()[1];
assert_eq!(interaction.input().text, "echo foo && echo bar >&2");
let output = interaction.output().as_ref();
assert_eq!(
output.split_whitespace().collect::<Vec<_>>(),
["foo", "bar"]
);
Ok(())
}
#[cfg(unix)]
#[test]
fn transcript_with_multiline_input() -> anyhow::Result<()> {
let mut options = ShellOptions::default();
let inputs = vec![UserInput::command("echo \\\nhello")];
let transcript = Transcript::from_inputs(&mut options, inputs)?;
assert_eq!(transcript.interactions().len(), 1);
let interaction = &transcript.interactions()[0];
let output = interaction.output().as_ref();
assert_eq!(output.trim(), "hello");
Ok(())
}
}