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
use std::collections::BTreeMap;
#[derive(Debug)]
pub(crate) struct RunnerSpec {
cases: Vec<CaseSpec>,
include: Option<Vec<String>>,
default_bin: Option<crate::schema::Bin>,
timeout: Option<std::time::Duration>,
env: crate::schema::Env,
}
impl RunnerSpec {
pub(crate) fn new() -> Self {
Self {
cases: Default::default(),
include: None,
default_bin: None,
timeout: Default::default(),
env: Default::default(),
}
}
pub(crate) fn case(
&mut self,
glob: &std::path::Path,
#[cfg_attr(miri, allow(unused_variables))] expected: Option<crate::schema::CommandStatus>,
) {
self.cases.push(CaseSpec {
glob: glob.into(),
#[cfg(not(miri))]
expected,
#[cfg(miri)]
expected: Some(crate::schema::CommandStatus::Skipped),
});
}
pub(crate) fn include(&mut self, include: Option<Vec<String>>) {
self.include = include;
}
pub(crate) fn default_bin(&mut self, bin: Option<crate::schema::Bin>) {
self.default_bin = bin;
}
pub(crate) fn timeout(&mut self, time: Option<std::time::Duration>) {
self.timeout = time;
}
pub(crate) fn env(&mut self, key: impl Into<String>, value: impl Into<String>) {
self.env.add.insert(key.into(), value.into());
}
pub(crate) fn prepare(&mut self) -> crate::Runner {
let mut runner = crate::Runner::new();
let mut cases: BTreeMap<std::path::PathBuf, crate::Case> = BTreeMap::new();
for spec in &self.cases {
if let Some(glob) = get_glob(&spec.glob) {
match ::glob::glob(glob) {
Ok(paths) => {
for path in paths {
match path {
Ok(path) => {
cases.insert(
path.clone(),
crate::Case {
path,
expected: spec.expected,
default_bin: self.default_bin.clone(),
timeout: self.timeout,
env: self.env.clone(),
error: None,
},
);
}
Err(err) => {
let path = err.path().to_owned();
let err = crate::Error::new(err.into_error().to_string());
cases.insert(path.clone(), crate::Case::with_error(path, err));
}
}
}
}
Err(err) => {
let err = crate::Error::new(err.to_string());
cases.insert(
spec.glob.clone(),
crate::Case::with_error(spec.glob.clone(), err),
);
}
}
} else {
let path = spec.glob.as_path();
cases.insert(
path.into(),
crate::Case {
path: path.into(),
expected: spec.expected,
default_bin: self.default_bin.clone(),
timeout: self.timeout,
env: self.env.clone(),
error: None,
},
);
}
}
for case in cases.into_values() {
if self.is_included(&case) {
runner.case(case);
}
}
runner
}
fn is_included(&self, case: &crate::Case) -> bool {
if let Some(include) = self.include.as_deref() {
include
.iter()
.any(|i| case.path.to_string_lossy().contains(i))
} else {
true
}
}
}
impl Default for RunnerSpec {
fn default() -> Self {
Self::new()
}
}
#[derive(Debug)]
struct CaseSpec {
glob: std::path::PathBuf,
expected: Option<crate::schema::CommandStatus>,
}
fn get_glob(path: &std::path::Path) -> Option<&str> {
if let Some(utf8) = path.to_str() {
if utf8.contains('*') {
return Some(utf8);
}
}
None
}