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
use camino::{Utf8Path, Utf8PathBuf};
use serde::{Deserialize, Serialize};
use std::{collections::BTreeMap, fmt, path::PathBuf, process::Command};
use crate::CommandError;
#[derive(Clone, Debug, Default)]
pub struct ListCommand {
cargo_path: Option<Box<Utf8Path>>,
manifest_path: Option<Box<Utf8Path>>,
current_dir: Option<Box<Utf8Path>>,
args: Vec<Box<str>>,
}
impl ListCommand {
pub fn new() -> Self {
Self::default()
}
pub fn cargo_path(&mut self, path: impl Into<Utf8PathBuf>) -> &mut Self {
self.cargo_path = Some(path.into().into());
self
}
pub fn manifest_path(&mut self, path: impl Into<Utf8PathBuf>) -> &mut Self {
self.manifest_path = Some(path.into().into());
self
}
pub fn current_dir(&mut self, path: impl Into<Utf8PathBuf>) -> &mut Self {
self.current_dir = Some(path.into().into());
self
}
pub fn add_arg(&mut self, arg: impl Into<String>) -> &mut Self {
self.args.push(arg.into().into());
self
}
pub fn add_args(&mut self, args: impl IntoIterator<Item = impl Into<String>>) -> &mut Self {
for arg in args {
self.add_arg(arg.into());
}
self
}
pub fn cargo_command(&self) -> Command {
let cargo_path: PathBuf = self.cargo_path.as_ref().map_or_else(
|| std::env::var_os("CARGO").map_or("cargo".into(), PathBuf::from),
|path| PathBuf::from(path.as_std_path()),
);
let mut command = Command::new(&cargo_path);
if let Some(path) = &self.manifest_path.as_deref() {
command.args(["--manifest-path", path.as_str()]);
}
if let Some(current_dir) = &self.current_dir.as_deref() {
command.current_dir(current_dir);
}
command.args(["nextest", "list", "--format=json"]);
command.args(self.args.iter().map(|s| s.as_ref()));
command
}
pub fn exec(&self) -> Result<TestListSummary, CommandError> {
let mut command = self.cargo_command();
let output = command.output().map_err(CommandError::Exec)?;
if !output.status.success() {
let exit_code = output.status.code();
let stderr = output.stderr;
return Err(CommandError::CommandFailed { exit_code, stderr });
}
serde_json::from_slice(&output.stdout).map_err(CommandError::Json)
}
}
#[derive(Clone, Debug, Default, Eq, PartialEq, Deserialize, Serialize)]
#[serde(rename_all = "kebab-case")]
#[non_exhaustive]
pub struct TestListSummary {
pub test_count: usize,
pub rust_suites: BTreeMap<String, RustTestSuiteSummary>,
}
impl TestListSummary {
pub fn parse_json(json: impl AsRef<str>) -> Result<Self, serde_json::Error> {
serde_json::from_str(json.as_ref())
}
}
#[derive(Clone, Debug, Eq, PartialEq, Deserialize, Serialize)]
#[serde(rename_all = "kebab-case")]
pub struct RustTestSuiteSummary {
pub package_name: String,
pub binary_name: String,
pub package_id: String,
pub binary_path: Utf8PathBuf,
pub cwd: Utf8PathBuf,
pub testcases: BTreeMap<String, RustTestCaseSummary>,
}
#[derive(Clone, Debug, Eq, PartialEq, Deserialize, Serialize)]
#[serde(rename_all = "kebab-case")]
pub struct RustTestCaseSummary {
pub ignored: bool,
pub filter_match: FilterMatch,
}
#[derive(Copy, Clone, Debug, Eq, PartialEq, Deserialize, Serialize)]
#[serde(rename_all = "kebab-case", tag = "status")]
pub enum FilterMatch {
Matches,
Mismatch {
reason: MismatchReason,
},
}
impl FilterMatch {
pub fn is_match(&self) -> bool {
matches!(self, FilterMatch::Matches)
}
}
#[derive(Copy, Clone, Debug, Eq, PartialEq, Deserialize, Serialize)]
#[serde(rename_all = "kebab-case")]
#[non_exhaustive]
pub enum MismatchReason {
Ignored,
String,
Partition,
}
impl fmt::Display for MismatchReason {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
MismatchReason::Ignored => write!(f, "does not match the run-ignored option"),
MismatchReason::String => write!(f, "does not match the provided string filters"),
MismatchReason::Partition => write!(f, "is in a different partition"),
}
}
}