From: "Max R. Carrara" <m.carrara@proxmox.com>
To: pve-devel@lists.proxmox.com
Subject: [PATCH pve-storage v1 44/54] test: parse volname: parameterize test case creation for some vtypes
Date: Wed, 22 Apr 2026 13:13:10 +0200 [thread overview]
Message-ID: <20260422111322.257380-45-m.carrara@proxmox.com> (raw)
In-Reply-To: <20260422111322.257380-1-m.carrara@proxmox.com>
Currently, a lot of test cases are simply defined as part of the
overall list of tests. While this is completely fine in itself, it
does not scale if one wants to add cases that account for additional
parameters in the future.
Therefore, create a lot of existing test cases in blocks and push them
onto the list of test cases, instead of defining them up front.
Note that we already do this for test cases regarding VM disk / backup
file volume names.
This is done as a preparational step for future commits, primarily in
order to avoid writing a lot of test cases by hand.
Signed-off-by: Max R. Carrara <m.carrara@proxmox.com>
---
src/test/parse_volname_test.pm | 226 ++++++++++++++++-----------------
1 file changed, 108 insertions(+), 118 deletions(-)
diff --git a/src/test/parse_volname_test.pm b/src/test/parse_volname_test.pm
index fb300ad5..1dcec9d6 100644
--- a/src/test/parse_volname_test.pm
+++ b/src/test/parse_volname_test.pm
@@ -34,70 +34,6 @@ my $tests = [
],
},
#
- # iso
- #
- {
- description => 'ISO image, iso',
- volname => 'iso/some-installation-disk.iso',
- expected => ['iso', 'some-installation-disk.iso', undef, undef, undef, undef, 'raw'],
- },
- {
- description => 'ISO image, img',
- volname => 'iso/some-other-installation-disk.img',
- expected =>
- ['iso', 'some-other-installation-disk.img', undef, undef, undef, undef, 'raw'],
- },
- #
- # container templates
- #
- {
- description => 'Container template tar',
- volname => 'vztmpl/debian-10.0-standard_10.0-1_amd64.tar',
- expected => [
- 'vztmpl', 'debian-10.0-standard_10.0-1_amd64.tar', undef, undef, undef, undef,
- 'raw',
- ],
- },
- {
- description => 'Container template tar.gz',
- volname => 'vztmpl/debian-10.0-standard_10.0-1_amd64.tar.gz',
- expected => [
- 'vztmpl',
- 'debian-10.0-standard_10.0-1_amd64.tar.gz',
- undef,
- undef,
- undef,
- undef,
- 'raw',
- ],
- },
- {
- description => 'Container template tar.xz',
- volname => 'vztmpl/debian-10.0-standard_10.0-1_amd64.tar.xz',
- expected => [
- 'vztmpl',
- 'debian-10.0-standard_10.0-1_amd64.tar.xz',
- undef,
- undef,
- undef,
- undef,
- 'raw',
- ],
- },
- {
- description => 'Container template tar.bz2',
- volname => 'vztmpl/debian-10.0-standard_10.0-1_amd64.tar.bz2',
- expected => [
- 'vztmpl',
- 'debian-10.0-standard_10.0-1_amd64.tar.bz2',
- undef,
- undef,
- undef,
- undef,
- 'raw',
- ],
- },
- #
# container rootdir
#
{
@@ -120,62 +56,8 @@ my $tests = [
],
},
#
- # Snippets
- #
- {
- description => 'Snippets, yaml',
- volname => 'snippets/userconfig.yaml',
- expected => ['snippets', 'userconfig.yaml', undef, undef, undef, undef, 'raw'],
- },
- {
- description => 'Snippets, perl',
- volname => 'snippets/hookscript.pl',
- expected => ['snippets', 'hookscript.pl', undef, undef, undef, undef, 'raw'],
- },
- #
# Import
#
- {
- description => "Import, ova",
- volname => 'import/import.ova',
- expected => ['import', 'import.ova', undef, undef, undef, undef, 'ova'],
- },
- {
- description => "Import, ovf",
- volname => 'import/import.ovf',
- expected => ['import', 'import.ovf', undef, undef, undef, undef, 'ovf'],
- },
- {
- description => "Import, qcow2",
- volname => 'import/import.qcow2',
- expected => ['import', 'import.qcow2', undef, undef, undef, undef, 'qcow2'],
- },
- {
- description => "Import, vmdk",
- volname => 'import/import.vmdk',
- expected => ['import', 'import.vmdk', undef, undef, undef, undef, 'vmdk'],
- },
- {
- description => "Import, raw",
- volname => 'import/import.raw',
- expected => ['import', 'import.raw', undef, undef, undef, undef, 'raw'],
- },
- {
- description => "Import, inner file of ova (qcow2)",
- volname => 'import/import.ova/disk.qcow2',
- expected =>
- ['import', 'import.ova/disk.qcow2', undef, undef, undef, undef, 'ova+qcow2'],
- },
- {
- description => "Import, inner file of ova (vmdk)",
- volname => 'import/import.ova/disk.vmdk',
- expected => ['import', 'import.ova/disk.vmdk', undef, undef, undef, undef, 'ova+vmdk'],
- },
- {
- description => "Import, inner file of ova (raw)",
- volname => 'import/import.ova/disk.raw',
- expected => ['import', 'import.ova/disk.raw', undef, undef, undef, undef, 'ova+raw'],
- },
{
description => "Import, inner file of ova with whitespace in name",
volname => 'import/import.ova/OS disk.vmdk',
@@ -271,6 +153,48 @@ my $tests = [
}
}
+# Test cases for ISOs
+{
+ my $suffixes = ['iso', 'img'];
+ my $prefix = 'some-installation-disk';
+
+ for my $suffix ($suffixes->@*) {
+ my $file_name = "$prefix.$suffix";
+
+ my @extra_tests = (
+ {
+ description => "ISO image, $suffix",
+ volname => "iso/$file_name",
+ expected => ['iso', "$file_name", undef, undef, undef, undef, 'raw'],
+ },
+ );
+
+ push($tests->@*, @extra_tests);
+ }
+}
+
+# Test cases for container templates
+{
+ my $suffixes = ['tar', 'tar.gz', 'tar.xz', 'tar.bz2'];
+ my $prefix = 'debian-10.0-standard_10.0-1_amd64';
+
+ for my $suffix ($suffixes->@*) {
+ my $file_name = "$prefix.$suffix";
+
+ my @extra_tests = (
+ {
+ description => "Container template, $suffix",
+ volname => "vztmpl/$file_name",
+ expected => [
+ 'vztmpl', "$file_name", undef, undef, undef, undef, 'raw',
+ ],
+ },
+ );
+
+ push($tests->@*, @extra_tests);
+ }
+}
+
# Additional tests for backup files
{
my $bkp_suffixes = {
@@ -324,6 +248,72 @@ my $tests = [
}
}
+# Test cases for snippets
+{
+ my $file_names = ['userconfig.yaml', 'hookscript.pl'];
+
+ for my $file_name ($file_names->@*) {
+ my @extra_tests = (
+ {
+ description => "Snippets, $file_name",
+ volname => "snippets/$file_name",
+ expected => ['snippets', $file_name, undef, undef, undef, undef, 'raw'],
+ },
+ );
+
+ push($tests->@*, @extra_tests);
+ }
+}
+
+# Test cases for import files
+{
+ my $suffixes = ['ova', 'ovf', 'qcow2', 'vmdk', 'raw'];
+ my $prefix = 'import-file';
+
+ for my $suffix ($suffixes->@*) {
+ my $file_name = "$prefix.$suffix";
+
+ my @extra_tests = (
+ {
+ description => "Import, $suffix",
+ volname => "import/$file_name",
+ expected => ['import', "$file_name", undef, undef, undef, undef, $suffix],
+ },
+ );
+
+ push($tests->@*, @extra_tests);
+ }
+}
+
+# Test cases for OVA import files with content inside
+{
+ my $content_suffixes = ['qcow2', 'vmdk', 'raw'];
+ my $content_prefix = 'disk';
+ my $file_name = 'import.ova';
+
+ for my $content_suffix ($content_suffixes->@*) {
+ my $content_file_name = "$content_prefix.$content_suffix";
+
+ my @extra_tests = (
+ {
+ description => "Import, inner file of ova ($content_suffix)",
+ volname => "import/$file_name/$content_file_name",
+ expected => [
+ 'import',
+ "$file_name/$content_file_name",
+ undef,
+ undef,
+ undef,
+ undef,
+ "ova+$content_suffix",
+ ],
+ },
+ );
+
+ push($tests->@*, @extra_tests);
+ }
+}
+
my sub run_tests($tests) {
my $seen_vtype = {};
my $vtype_subdirs = { map { $_ => 1 } keys plugin_get_default_vtype_subdirs()->%* };
--
2.47.3
next prev parent reply other threads:[~2026-04-22 11:19 UTC|newest]
Thread overview: 55+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-22 11:12 [PATCH pve-storage, pve-manager v1 00/54] Fix #2884: Implement Subdirectory Scanning for Dir-Based Storage Types Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 01/54] test: plugin tests: run tests with at most 4 jobs Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 02/54] plugin, common: remove superfluous use of =pod command paragraph Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 03/54] common: add POD headings for groups of helpers Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 04/54] common: use Exporter module for PVE::Storage::Common Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 05/54] plugin: make get_subdir_files a proper subroutine and update style Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 06/54] plugin api: replace helpers w/ standalone subs, bump API version & age Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 07/54] common: prevent autovivification in plugin_get_vtype_subdir helper Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 08/54] plugin: break up needless if-elsif chain into separate if-blocks Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 09/54] plugin: adapt get_subdir_files helper of list_volumes API method Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 10/54] plugin: update code style of list_volumes plugin " Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 11/54] plugin: use closure for obtaining raw volume data in list_volumes Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 12/54] plugin: use closure for inner loop logic " Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 13/54] storage: update code style in function path_to_volume_id Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 14/54] storage: break up needless if-elsif chain in path_to_volume_id Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 15/54] storage: heave vtype file path parsing logic inside loop into helper Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 16/54] storage: clean up code that was moved into helper in path_to_volume_id Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 17/54] api: status: move content type assert for up-/downloads into helper Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 18/54] api: status: use helper from common module to get content directory Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 19/54] api: status: move up-/download file path parsing code into helper Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 20/54] api: status: simplify file content assertion logic for up-/download Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 21/54] test: guest import: add tests for PVE::GuestImport Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 22/54] tree-wide: introduce parsing module and replace usages of ISO_EXT_RE_0 Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 23/54] common: test: set up parser testing code, add tests for 'iso' vtype Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 24/54] tree-wide: replace usages of VZTMPL_EXT_RE_1 with parsing functions Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 25/54] tree-wide: replace usages of BACKUP_EXT_RE_2 " Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 26/54] tree-wide: replace usages of inline regexes for snippets with parsers Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 27/54] tree-wide: partially replace usages of regexes for 'import' vtype Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 28/54] tree-wide: replace remaining " Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 29/54] plugin: simplify recently refactored logic in parse_volname method Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 30/54] plugin: simplify recently refactored logic in get_subdir_files helper Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 31/54] storage: simplify recently refactored logic in path_to_volume_id sub Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 32/54] api: status: simplify recently added parsing helper for file transfers Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 33/54] plugin: use parsing helper in parse_volume_id sub Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 34/54] test: list volumes: reorganize and modernize test running code Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 35/54] test: list volumes: fix broken test checking for vmlist modifications Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 36/54] test: list volumes: introduce new format for test cases Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 37/54] test: list volumes: remove legacy code and migrate cases to new format Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 38/54] test: list volumes: document behavior wrt. undeclared content types Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 39/54] plugin: correct comment in get_subdir_files helper Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 40/54] test: parse volname: modernize code Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 41/54] test: parse volname: adapt tests regarding 'import' volume type Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 42/54] test: parse volname: move VM disk test creation into separate block Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 43/54] test: parse volname: move backup file test creation into sep. block Max R. Carrara
2026-04-22 11:13 ` Max R. Carrara [this message]
2026-04-22 11:13 ` [PATCH pve-storage v1 45/54] test: volume id: modernize code Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 46/54] test: volume id: rename 'volname' test case parameter to 'file' Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 47/54] test: filesystem path: modernize code Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 48/54] fix #2884: implement nested subdir scanning and support 'iso' vtype Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 49/54] fix #2884: support nested subdir scanning for 'vztmpl' volume type Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 50/54] fix #2884: support nested subdir scanning for 'snippets' vtype Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 51/54] test: add more tests for 'import' vtype & guard against nested subdirs Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 52/54] test: add tests guarding against subdir scanning for vtypes Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 53/54] storage api: mark old public regexes for removal, bump APIVER & APIAGE Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-manager v1 54/54] fix #2884: ui: storage: add field for 'max-scan-depth' property Max R. Carrara
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260422111322.257380-45-m.carrara@proxmox.com \
--to=m.carrara@proxmox.com \
--cc=pve-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox