nextest-runner 0.114.0

Core runner logic for cargo nextest.
Documentation
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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
// Copyright (c) The nextest Contributors
// SPDX-License-Identifier: MIT OR Apache-2.0

use super::ToolName;
use crate::errors::ToolConfigFileParseError;
use camino::{Utf8Path, Utf8PathBuf};
use std::str::FromStr;

/// A tool-specific config file.
///
/// Tool-specific config files are lower priority than repository configs, but higher priority than
/// the default config shipped with nextest.
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct ToolConfigFile {
    /// The name of the tool.
    pub tool: ToolName,

    /// The path to the config file.
    pub config_file: Utf8PathBuf,
}

impl FromStr for ToolConfigFile {
    type Err = ToolConfigFileParseError;

    fn from_str(input: &str) -> Result<Self, Self::Err> {
        match input.split_once(':') {
            Some((tool, config_file)) => {
                let tool = ToolName::new(tool.into()).map_err(|error| {
                    ToolConfigFileParseError::InvalidToolName {
                        input: input.to_owned(),
                        error,
                    }
                })?;
                if config_file.is_empty() {
                    Err(ToolConfigFileParseError::EmptyConfigFile {
                        input: input.to_owned(),
                    })
                } else {
                    let config_file = Utf8Path::new(config_file);
                    if config_file.is_absolute() {
                        Ok(Self {
                            tool,
                            config_file: Utf8PathBuf::from(config_file),
                        })
                    } else {
                        Err(ToolConfigFileParseError::ConfigFileNotAbsolute {
                            config_file: config_file.to_owned(),
                        })
                    }
                }
            }
            None => Err(ToolConfigFileParseError::InvalidFormat {
                input: input.to_owned(),
            }),
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::{
        config::{
            core::{NextestConfig, NextestVersionConfig, NextestVersionReq, VersionOnlyConfig},
            elements::{RetryPolicy, TestGroup},
            utils::test_helpers::*,
        },
        run_mode::NextestRunMode,
    };
    use camino_tempfile::tempdir;
    use camino_tempfile_ext::prelude::*;
    use guppy::graph::cargo::BuildPlatform;
    use nextest_filtering::{ParseContext, TestQuery};
    use nextest_metadata::TestCaseName;

    fn tool_name(s: &str) -> ToolName {
        ToolName::new(s.into()).unwrap()
    }

    #[test]
    fn parse_tool_config_file() {
        use crate::errors::{InvalidToolName, ToolConfigFileParseError};

        cfg_if::cfg_if! {
            if #[cfg(windows)] {
                let valid = ["tool:C:\\foo\\bar", "tool:\\\\?\\C:\\foo\\bar"];
            } else {
                let valid = ["tool:/foo/bar"];
            }
        }

        for valid_input in valid {
            valid_input.parse::<ToolConfigFile>().unwrap_or_else(|err| {
                panic!("valid input {valid_input} should parse correctly: {err}")
            });
        }

        cfg_if::cfg_if! {
            if #[cfg(windows)] {
                let invalid: &[(&str, ToolConfigFileParseError)] = &[
                    ("no-colon-here", ToolConfigFileParseError::InvalidFormat {
                        input: "no-colon-here".to_owned(),
                    }),
                    ("tool:\\foo\\bar", ToolConfigFileParseError::ConfigFileNotAbsolute {
                        config_file: "\\foo\\bar".into(),
                    }),
                    ("tool:foo/bar", ToolConfigFileParseError::ConfigFileNotAbsolute {
                        config_file: "foo/bar".into(),
                    }),
                ];
            } else {
                let invalid: &[(&str, ToolConfigFileParseError)] = &[
                    ("/foo/bar", ToolConfigFileParseError::InvalidFormat {
                        input: "/foo/bar".to_owned(),
                    }),
                    ("tool:foo/bar", ToolConfigFileParseError::ConfigFileNotAbsolute {
                        config_file: "foo/bar".into(),
                    }),
                    ("tool:./foo", ToolConfigFileParseError::ConfigFileNotAbsolute {
                        config_file: "./foo".into(),
                    }),
                ];
            }
        }

        // Common invalid cases for all platforms.
        let common_invalid: &[(&str, ToolConfigFileParseError)] = &[
            (
                ":/foo/bar",
                ToolConfigFileParseError::InvalidToolName {
                    input: ":/foo/bar".to_owned(),
                    error: InvalidToolName::Empty,
                },
            ),
            (
                "_invalid:/foo/bar",
                ToolConfigFileParseError::InvalidToolName {
                    input: "_invalid:/foo/bar".to_owned(),
                    error: InvalidToolName::InvalidXid("_invalid".into()),
                },
            ),
            // Tool names starting with "@tool" are rejected with a specific error.
            (
                "@tool:/path",
                ToolConfigFileParseError::InvalidToolName {
                    input: "@tool:/path".to_owned(),
                    error: InvalidToolName::StartsWithToolPrefix("@tool".into()),
                },
            ),
            (
                "tool:",
                ToolConfigFileParseError::EmptyConfigFile {
                    input: "tool:".to_owned(),
                },
            ),
        ];

        for (input, expected) in invalid.iter().chain(common_invalid.iter()) {
            let actual = input.parse::<ToolConfigFile>().unwrap_err();
            assert_eq!(&actual, expected, "for input {input:?}");
        }
    }

    #[test]
    fn tool_config_basic() {
        let config_contents = r#"
        nextest-version = "0.9.50"

        [profile.default]
        retries = 3

        [[profile.default.overrides]]
        filter = 'test(test_foo)'
        retries = 20
        test-group = 'foo'

        [[profile.default.overrides]]
        filter = 'test(test_quux)'
        test-group = '@tool:tool1:group1'

        [test-groups.foo]
        max-threads = 2
        "#;

        let tool1_config_contents = r#"
        nextest-version = { required = "0.9.51", recommended = "0.9.52" }

        [profile.default]
        retries = 4

        [[profile.default.overrides]]
        filter = 'test(test_bar)'
        retries = 21

        [profile.tool]
        retries = 12

        [[profile.tool.overrides]]
        filter = 'test(test_baz)'
        retries = 22
        test-group = '@tool:tool1:group1'

        [[profile.tool.overrides]]
        filter = 'test(test_quux)'
        retries = 22
        test-group = '@tool:tool2:group2'

        [test-groups.'@tool:tool1:group1']
        max-threads = 2
        "#;

        let tool2_config_contents = r#"
        nextest-version = { recommended = "0.9.49" }

        [profile.default]
        retries = 5

        [[profile.default.overrides]]
        filter = 'test(test_)'
        retries = 23

        [profile.tool]
        retries = 16

        [[profile.tool.overrides]]
        filter = 'test(test_ba)'
        retries = 24
        test-group = '@tool:tool2:group2'

        [[profile.tool.overrides]]
        filter = 'test(test_)'
        retries = 25
        test-group = '@global'

        [profile.tool2]
        retries = 18

        [[profile.tool2.overrides]]
        filter = 'all()'
        retries = 26

        [test-groups.'@tool:tool2:group2']
        max-threads = 4
        "#;

        let workspace_dir = tempdir().unwrap();

        let graph = temp_workspace(&workspace_dir, config_contents);
        let tool1_path = workspace_dir.child(".config/tool1.toml");
        let tool2_path = workspace_dir.child(".config/tool2.toml");
        tool1_path.write_str(tool1_config_contents).unwrap();
        tool2_path.write_str(tool2_config_contents).unwrap();

        let workspace_root = graph.workspace().root();

        let tool_config_files = [
            ToolConfigFile {
                tool: tool_name("tool1"),
                config_file: tool1_path.to_path_buf(),
            },
            ToolConfigFile {
                tool: tool_name("tool2"),
                config_file: tool2_path.to_path_buf(),
            },
        ];

        let version_only_config =
            VersionOnlyConfig::from_sources(workspace_root, None, &tool_config_files).unwrap();
        let nextest_version = version_only_config.nextest_version();
        assert_eq!(
            nextest_version,
            &NextestVersionConfig {
                required: NextestVersionReq::Version {
                    version: "0.9.51".parse().unwrap(),
                    tool: Some(tool_name("tool1"))
                },
                recommended: NextestVersionReq::Version {
                    version: "0.9.52".parse().unwrap(),
                    tool: Some(tool_name("tool1"))
                }
            },
        );

        let pcx = ParseContext::new(&graph);
        let config = NextestConfig::from_sources(
            workspace_root,
            &pcx,
            None,
            &tool_config_files,
            &Default::default(),
        )
        .expect("config is valid");

        let default_profile = config
            .profile(NextestConfig::DEFAULT_PROFILE)
            .expect("default profile is present")
            .apply_build_platforms(&build_platforms());
        // This is present in .config/nextest.toml and is the highest priority
        assert_eq!(default_profile.retries(), RetryPolicy::new_without_delay(3));

        let package_id = graph.workspace().iter().next().unwrap().id();

        let binary_query = binary_query(
            &graph,
            package_id,
            "lib",
            "my-binary",
            BuildPlatform::Target,
        );
        let test_foo = TestCaseName::new("test_foo");
        let test_foo_query = TestQuery {
            binary_query: binary_query.to_query(),
            test_name: &test_foo,
        };
        let test_bar = TestCaseName::new("test_bar");
        let test_bar_query = TestQuery {
            binary_query: binary_query.to_query(),
            test_name: &test_bar,
        };
        let test_baz = TestCaseName::new("test_baz");
        let test_baz_query = TestQuery {
            binary_query: binary_query.to_query(),
            test_name: &test_baz,
        };
        let test_quux = TestCaseName::new("test_quux");
        let test_quux_query = TestQuery {
            binary_query: binary_query.to_query(),
            test_name: &test_quux,
        };

        assert_eq!(
            default_profile
                .settings_for(NextestRunMode::Test, &test_foo_query)
                .retries(),
            RetryPolicy::new_without_delay(20),
            "retries for test_foo/default profile"
        );
        assert_eq!(
            default_profile
                .settings_for(NextestRunMode::Test, &test_foo_query)
                .test_group(),
            &test_group("foo"),
            "test_group for test_foo/default profile"
        );
        assert_eq!(
            default_profile
                .settings_for(NextestRunMode::Test, &test_bar_query)
                .retries(),
            RetryPolicy::new_without_delay(21),
            "retries for test_bar/default profile"
        );
        assert_eq!(
            default_profile
                .settings_for(NextestRunMode::Test, &test_bar_query)
                .test_group(),
            &TestGroup::Global,
            "test_group for test_bar/default profile"
        );
        assert_eq!(
            default_profile
                .settings_for(NextestRunMode::Test, &test_baz_query)
                .retries(),
            RetryPolicy::new_without_delay(23),
            "retries for test_baz/default profile"
        );
        assert_eq!(
            default_profile
                .settings_for(NextestRunMode::Test, &test_quux_query)
                .test_group(),
            &test_group("@tool:tool1:group1"),
            "test group for test_quux/default profile"
        );

        let tool_profile = config
            .profile("tool")
            .expect("tool profile is present")
            .apply_build_platforms(&build_platforms());
        assert_eq!(tool_profile.retries(), RetryPolicy::new_without_delay(12));
        assert_eq!(
            tool_profile
                .settings_for(NextestRunMode::Test, &test_foo_query)
                .retries(),
            RetryPolicy::new_without_delay(25),
            "retries for test_foo/default profile"
        );
        assert_eq!(
            tool_profile
                .settings_for(NextestRunMode::Test, &test_bar_query)
                .retries(),
            RetryPolicy::new_without_delay(24),
            "retries for test_bar/default profile"
        );
        assert_eq!(
            tool_profile
                .settings_for(NextestRunMode::Test, &test_baz_query)
                .retries(),
            RetryPolicy::new_without_delay(22),
            "retries for test_baz/default profile"
        );

        let tool2_profile = config
            .profile("tool2")
            .expect("tool2 profile is present")
            .apply_build_platforms(&build_platforms());
        assert_eq!(tool2_profile.retries(), RetryPolicy::new_without_delay(18));
        assert_eq!(
            tool2_profile
                .settings_for(NextestRunMode::Test, &test_foo_query)
                .retries(),
            RetryPolicy::new_without_delay(26),
            "retries for test_foo/default profile"
        );
        assert_eq!(
            tool2_profile
                .settings_for(NextestRunMode::Test, &test_bar_query)
                .retries(),
            RetryPolicy::new_without_delay(26),
            "retries for test_bar/default profile"
        );
        assert_eq!(
            tool2_profile
                .settings_for(NextestRunMode::Test, &test_baz_query)
                .retries(),
            RetryPolicy::new_without_delay(26),
            "retries for test_baz/default profile"
        );
    }
}