mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-10 20:19:07 +00:00
Some distributions (such as Debian) put the mkfs.ext4 binary in /sbin or /usr/sbin. However, in our case, we don't need to be root, since we are only using it to create a filesystem inside a normal file, not on a block device. Adding these directories to the path lets us find the mkfs binary on these systems without requiring sudo privileges. BUG=None TEST=cargo test -p integration_tests -- --test-threads=1 Change-Id: I9b180f941ee81c5febf78004050d211fe1912621 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3940108 Commit-Queue: Daniel Verkamp <dverkamp@chromium.org> Reviewed-by: Junichi Uekawa <uekawa@chromium.org>
49 lines
1.4 KiB
Rust
49 lines
1.4 KiB
Rust
// Copyright 2022 The ChromiumOS Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
//! Testing virtio-block.
|
|
|
|
pub mod fixture;
|
|
|
|
use std::env;
|
|
use std::process::Command;
|
|
|
|
use fixture::Config;
|
|
use fixture::TestVm;
|
|
use tempfile::NamedTempFile;
|
|
|
|
fn prepare_disk_img() -> NamedTempFile {
|
|
let mut disk = NamedTempFile::new().unwrap();
|
|
disk.as_file_mut().set_len(1024 * 1024).unwrap();
|
|
|
|
// Add /sbin and /usr/sbin to PATH since some distributions put mkfs.ext4 in one of those
|
|
// directories but don't add them to non-root PATH.
|
|
let path = env::var("PATH").unwrap();
|
|
let path = [&path, "/sbin", "/usr/sbin"].join(":");
|
|
|
|
// TODO(b/243127910): Use `mkfs.ext4 -d` to include test data.
|
|
Command::new("mkfs.ext4")
|
|
.arg(disk.path().to_str().unwrap())
|
|
.env("PATH", path)
|
|
.output()
|
|
.expect("failed to execute process");
|
|
disk
|
|
}
|
|
|
|
// TODO(b/243127498): Add tests for write and sync operations.
|
|
#[test]
|
|
fn mount_block() {
|
|
let disk = prepare_disk_img();
|
|
let disk_path = disk.path().to_str().unwrap().to_string();
|
|
println!("disk={disk_path}");
|
|
|
|
let config = Config::new().extra_args(vec!["--rwdisk".to_string(), disk_path]);
|
|
let mut vm = TestVm::new(config).unwrap();
|
|
assert_eq!(
|
|
vm.exec_in_guest("mount -t ext4 /dev/vdb /mnt && echo 42")
|
|
.unwrap()
|
|
.trim(),
|
|
"42"
|
|
);
|
|
}
|