xref: /DADK/dadk-config/tests/test_rootfs_config.rs (revision 1ad837a44976ed9fbcb8d70a0b0b47ea3286c5ed)
1 use dadk_config::{self, rootfs::RootFSConfigFile};
2 use test_base::{
3     dadk_config::DadkConfigTestContext,
4     test_context::{self as test_context, test_context},
5 };
6 
7 const ROOTFS_MANIFEST_FILE_NAME: &str = "config/rootfs.toml";
8 
9 /// 测试加载模板目录中的 rootfs.toml 文件,验证它能被加载成功,并且已经包含了所有字段
10 #[test_context(DadkConfigTestContext)]
11 #[test]
12 fn test_load_rootfs_manifest_template(ctx: &DadkConfigTestContext) {
13     let rootfs_manifest_path = ctx.templates_dir().join(ROOTFS_MANIFEST_FILE_NAME);
14     assert_eq!(rootfs_manifest_path.exists(), true);
15     assert_eq!(rootfs_manifest_path.is_file(), true);
16     let _manifest =
17         RootFSConfigFile::load(&rootfs_manifest_path).expect("Failed to load rootfs manifest");
18     // TODO 校验 manifest 中的字段是否齐全
19 }
20