security_pkg_test_util/
storage.rs1use ramdevice_client::{RamdiskClient, RamdiskClientBuilder};
5use zx::Vmo;
6
7const RAMDISK_BLOCK_SIZE: u64 = 512;
8
9pub async fn mount_image_as_ramdisk(resource_path: &str) -> RamdiskClient {
14 let image_buffer = fuchsia_fs::file::read_in_namespace(resource_path).await.unwrap();
15 let image_size = image_buffer.len();
16 let image_vmo = Vmo::create(image_size.try_into().unwrap()).unwrap();
17 image_vmo.write(&image_buffer, 0).unwrap();
18
19 let ramdisk_client = RamdiskClientBuilder::new_with_vmo(image_vmo, Some(RAMDISK_BLOCK_SIZE))
20 .build()
21 .await
22 .unwrap();
23
24 ramdisk_client
25}