/
githubmirror
/
thin-provisioning-tools
Обзор
Документация
Войти
/
githubmirror
/
thin-provisioning-tools
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/cache_dump.rs
124 строки
3 KB
Ming-Hung Tsai
[tests] Replace duplicate code with utility functions
23 май 2024, 22:05
23 май 2024, 22:05
110da3a
Код
Авторство
О чём код?
use anyhow::Result; mod common; use common::cache::*; use common::common_args::*; use common::fixture::*; use common::input_arg::*; use common::process::*; use common::program::*; use common::target::*; use common::test_dir::*; //------------------------------------------ const USAGE: &str = "Dump the cache metadata to stdout in XML format Usage: cache_dump [OPTIONS] <INPUT> Arguments: <INPUT> Specify the input device to dump Options: -h, --help Print help -o, --output <FILE> Specify the output file rather than stdout -r, --repair Repair the metadata whilst dumping it -V, --version Print version"; //------------------------------------------ struct CacheDump; impl<'a> Program<'a> for CacheDump { fn name() -> &'a str { "cache_dump" } fn cmd<I>(args: I) -> Command where I: IntoIterator, I::Item: Into<std::ffi::OsString>, { cache_dump_cmd(args) } fn usage() -> &'a str { USAGE } fn arg_type() -> ArgType { ArgType::InputArg } fn bad_option_hint(option: &str) -> String { msg::bad_option_hint(option) } } impl<'a> InputProgram<'a> for CacheDump { fn mk_valid_input(td: &mut TestDir) -> Result<std::path::PathBuf> { mk_valid_md(td) } fn file_not_found() -> &'a str { msg::FILE_NOT_FOUND } fn missing_input_arg() -> &'a str { msg::MISSING_INPUT_ARG } fn corrupted_input() -> &'a str { msg::BAD_SUPERBLOCK } } //------------------------------------------ test_accepts_help!(CacheDump); test_accepts_version!(CacheDump); test_rejects_bad_option!(CacheDump); test_missing_input_arg!(CacheDump); test_input_file_not_found!(CacheDump); test_input_cannot_be_a_directory!(CacheDump); test_unreadable_input_file!(CacheDump); test_readonly_input_file!(CacheDump); //------------------------------------------ // TODO: share with thin_dump #[test] fn dump_restore_cycle() -> Result<()> { let mut td = TestDir::new()?; let md = mk_valid_md(&mut td)?; let output = run_ok_raw(cache_dump_cmd(args![&md]))?; let xml = td.mk_path("meta.xml"); write_file(&xml, &output.stdout)?; let md2 = mk_zeroed_md(&mut td)?; run_ok(cache_restore_cmd(args!["-i", &xml, "-o", &md2]))?; let output2 = run_ok_raw(cache_dump_cmd(args![&md2]))?; assert_eq!(output.stdout, output2.stdout); Ok(()) } //------------------------------------------ // test no stderr on broken pipe errors #[test] fn no_stderr_on_broken_pipe_xml() -> Result<()> { common::piping::test_no_stderr_on_broken_pipe::<CacheDump>(mk_valid_md, &[]) } #[test] fn no_stderr_on_broken_fifo_xml() -> Result<()> { common::piping::test_no_stderr_on_broken_fifo::<CacheDump>(mk_valid_md, &[]) } //------------------------------------------