Expand description
A Rust-based testing framework for VMMs.
At this time - petri
supports testing OpenVMM, OpenHCL,
and Hyper-V based VMs.
Re-exports§
pub use pipette_client as pipette;
Modules§
- Type-tags for
BootImageConfig
- Tools for building a disk image for a VM.
- OpenVMM VM management Code managing the lifetime of a
PetriVmOpenVmm
. All VMs live the same lifecycle:
Macros§
- Write a formatted log entry to the given
PetriLogFile
. - Defines a set of tests from a
TestCase
. - Defines a single test from a value that implements
RunTest
.
Structs§
- A type-safe handle to a particular Artifact, as declared using the
declare_artifacts!
macro. - An artifact resolver, used both to express requirements for artifacts and to resolve them to paths.
- Configuration information for the boot drive of the VM.
- A type-erased handle to a particular Artifact, with no information as to what exactly the artifact is.
- Flags controlling servicing behavior.
- A log file for writing test output.
- A source of
PetriLogFile
log files for test output. - Parameters passed to a
RunTest
when it is run. - A resolved artifact path for artifact
A
. - A resolve artifact path for an optional artifact
A
. - A test defined by an artifact resolver function and a run function.
- A set of dependencies required to run a test.
- A resolved set of test artifacts, returned by
TestArtifactRequirements::resolve
. - A single test case.
Enums§
- Firmware to load into the test VM.
- Isolation type
- The guest the VM will boot into. A boot drive with the chosen setup will be automatically configured.
- The kind of shutdown to perform.
- The guest the VM will boot into. A boot drive with the chosen setup will be automatically configured.
Constants§
- 1 gibibyte’s worth of bytes.
- 1 kibibyte’s worth of bytes.
- 1 mebibyte’s worth of bytes.
Traits§
- Helper trait to allow uniform handling of both typed and untyped artifact handles in various contexts.
- A running VM that tests can interact with.
- Configuration state for a test VM.
- A trait to resolve artifacts to paths.
- A test that can be run.
Functions§
- read from the kmsg stream and write entries to the log
- Logs lines from
reader
intolog_file
. - Entry point for test binaries.
- Initialize Petri tracing with the given output path for log files.