flowey_lib_hvlite/
test_nextest_vmm_tests_archive.rs

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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! Run cargo-nextest based VMM tests from a pre-built archive.
//!
//! NOTE: The caller is responsible for setting `extra_env` and
//! `pre_run_deps` to ensure that all tests filtered by
//! `nextest_filter_expr` are able to run successfully.

use crate::build_nextest_vmm_tests::NextestVmmTestsArchive;
use crate::run_cargo_nextest_run::NextestProfile;
use flowey::node::prelude::*;
use flowey_lib_common::run_cargo_nextest_run::TestResults;
use std::collections::BTreeMap;

flowey_request! {
    pub struct Request {
        /// Pre-built VMM tests nextest archive
        pub nextest_archive_file: ReadVar<NextestVmmTestsArchive>,
        /// nextest filter expression for what VMM tests to run
        pub nextest_filter_expr: Option<String>,
        /// Nextest profile to use when running the source code
        pub nextest_profile: NextestProfile,
        /// Additional env vars set when executing the tests.
        pub extra_env: ReadVar<BTreeMap<String, String>>,
        /// Wait for specified side-effects to resolve before building / running
        /// any tests. (e.g: to allow for some ambient packages / dependencies
        /// to get installed).
        pub pre_run_deps: Vec<ReadVar<SideEffect>>,
        /// Results of running the tests
        pub results: WriteVar<TestResults>,
    }
}

new_simple_flow_node!(struct Node);

impl SimpleFlowNode for Node {
    type Request = Request;

    fn imports(ctx: &mut ImportCtx<'_>) {
        ctx.import::<crate::run_cargo_nextest_run::Node>();
    }

    fn process_request(request: Self::Request, ctx: &mut NodeCtx<'_>) -> anyhow::Result<()> {
        let Request {
            nextest_archive_file,
            nextest_filter_expr,
            nextest_profile,
            extra_env,
            mut pre_run_deps,
            results,
        } = request;

        if !matches!(ctx.backend(), FlowBackend::Local)
            && matches!(ctx.platform(), FlowPlatform::Linux(_))
        {
            pre_run_deps.push({
                ctx.emit_rust_step("ensure /dev/kvm is accessible", |_| {
                    |_| {
                        let sh = xshell::Shell::new()?;
                        xshell::cmd!(sh, "sudo chmod a+rw /dev/kvm").run()?;
                        Ok(())
                    }
                })
            });
        }

        let nextest_archive = nextest_archive_file.map(ctx, |x| x.0);

        ctx.req(crate::run_cargo_nextest_run::Request {
            friendly_name: "vmm_tests".into(),
            run_kind: flowey_lib_common::run_cargo_nextest_run::NextestRunKind::RunFromArchive(
                nextest_archive,
            ),
            nextest_profile,
            nextest_filter_expr,
            run_ignored: false,
            extra_env: Some(extra_env),
            pre_run_deps,
            results,
        });

        Ok(())
    }
}