From: "Max R. Carrara" <m.carrara@proxmox.com>
To: pve-devel@lists.proxmox.com
Subject: [PATCH pve-storage v2 47/50] test: add more tests for 'import' vtype & guard against nested subdirs
Date: Wed, 23 Sep 2026 17:16:07 +0200 [thread overview]
Message-ID: <20260923151611.544333-4-m.carrara@proxmox.com> (raw)
In-Reply-To: <20260923151611.544333-1-m.carrara@proxmox.com>
Supporting nested subdirectories for the 'import' volume type is
currently not possible, because of a parsing ambiguity that would be
introduced. In particular, it would not be possible to differentiate
whether 'foo.ova' in 'foo.ova/bar.qcow2' refers to a directory ending
with '.ova' or an actual '.ova' file through parsing alone. Note this
down in a comment as well, so it doesn't get overlooked.
Therefore, instead of supporting nested subdirectories for the
'import' volume type, add tests that explicitly guard against
subdirectory scanning support.
Additionally, toss in a few extra tests for the `filesystem_path()`
plugin API method and also for the differences in whitespace handling
for file paths and volume names for the 'import' volume type.
Signed-off-by: Max R. Carrara <m.carrara@proxmox.com>
---
src/PVE/Storage/Common/Parse.pm | 7 ++
src/PVE/Storage/Common/test/parser_tests.pl | 40 +++++++
src/test/filesystem_path_test.pm | 14 +++
src/test/list_volumes_test.pm | 65 +++++++++++
src/test/parse_volname_test.pm | 120 ++++++++++++++++++++
src/test/path_to_volume_id_test.pm | 13 +++
6 files changed, 259 insertions(+)
diff --git a/src/PVE/Storage/Common/Parse.pm b/src/PVE/Storage/Common/Parse.pm
index e665f081..e64ac719 100644
--- a/src/PVE/Storage/Common/Parse.pm
+++ b/src/PVE/Storage/Common/Parse.pm
@@ -134,6 +134,13 @@ my $RE_SNIPPETS_FILE_PATH = qr!
)
!xn;
+# NOTE: Supporting subdirectories would introduce a parsing ambiguity with
+# volume names; in particular, there would be no way to tell whether 'foo.ova'
+# in 'foo.ova/bar.qcow2' refers to a directory or a file just through parsing
+# alone.
+#
+# Therefore, neither RE_IMPORT_FILE_PATH nor RE_IMPORT_VOLNAME currently
+# accept subdirectory components.
my $RE_IMPORT_FILE_PATH = qr!
(?<path>
(?<file> ($RE_SAFE_CHAR_CLASS)+ \. (?<ext> $RE_IMPORT_EXTENSIONS) )
diff --git a/src/PVE/Storage/Common/test/parser_tests.pl b/src/PVE/Storage/Common/test/parser_tests.pl
index a5402390..01daf1b7 100755
--- a/src/PVE/Storage/Common/test/parser_tests.pl
+++ b/src/PVE/Storage/Common/test/parser_tests.pl
@@ -634,6 +634,46 @@ my $volname_cases_import_invalid = [
},
expected => undef,
},
+ {
+ description => "Subdirectory (import)",
+ args => {
+ path => 'subdir/disk.ovf',
+ vtype => 'import',
+ },
+ expected => undef,
+ },
+ {
+ description => "Nested subdirectory (import)",
+ args => {
+ path => 'deeply/nested/subdir/disk.raw',
+ vtype => 'import',
+ },
+ expected => undef,
+ },
+ {
+ description => "Parent dir reference in path (beginning) (import)",
+ args => {
+ path => '../disk.ova',
+ vtype => 'import',
+ },
+ expected => undef,
+ },
+ {
+ description => "Parent dir reference in path (middle) (import)",
+ args => {
+ path => 'subdir/../disk.raw',
+ vtype => 'import',
+ },
+ expected => undef,
+ },
+ {
+ description => "Parent dir reference in path (end) (import)",
+ args => {
+ path => 'subdir/disk.qcow2/..',
+ vtype => 'import',
+ },
+ expected => undef,
+ },
];
my $cases_valid_all = [
diff --git a/src/test/filesystem_path_test.pm b/src/test/filesystem_path_test.pm
index ff6dffe1..f06682a9 100644
--- a/src/test/filesystem_path_test.pm
+++ b/src/test/filesystem_path_test.pm
@@ -98,6 +98,20 @@ my $tests = [
expected =>
["$DEFAULT_STORAGE_DIR/snippets/foo/bar/baz/something.txt", undef, 'snippets'],
},
+ {
+ volname => 'import/import.ova',
+ snapname => undef,
+ expected => [
+ "$DEFAULT_STORAGE_DIR/import/import.ova", undef, 'import',
+ ],
+ },
+ {
+ volname => 'import/import.ovf',
+ snapname => undef,
+ expected => [
+ "$DEFAULT_STORAGE_DIR/import/import.ovf", undef, 'import',
+ ],
+ },
];
my sub run_tests($tests) {
diff --git a/src/test/list_volumes_test.pm b/src/test/list_volumes_test.pm
index d0b054c9..c185fdee 100644
--- a/src/test/list_volumes_test.pm
+++ b/src/test/list_volumes_test.pm
@@ -1290,6 +1290,26 @@ my $test_param_list = [
file => "$DEFAULT_STORAGE_PATH/snippets/1/2/3/4/5/some-hookscript.pl",
expected => undef,
},
+ {
+ file => "$DEFAULT_STORAGE_PATH/import/some-import.ova",
+ expected => {
+ content => 'import',
+ ctime => $DEFAULT_CTIME,
+ format => 'ova',
+ size => $DEFAULT_SIZE,
+ volid => 'local:import/some-import.ova',
+ },
+ },
+ {
+ # Not allowed regardless
+ file => "$DEFAULT_STORAGE_PATH/import/1/some-import.ova",
+ expected => undef,
+ },
+ {
+ # Not allowed regardless
+ file => "$DEFAULT_STORAGE_PATH/import/1/2/3/4/5/some-import.ova",
+ expected => undef,
+ },
],
},
{
@@ -1385,6 +1405,26 @@ my $test_param_list = [
file => "$DEFAULT_STORAGE_PATH/snippets/1/2/some-hookscript.pl",
expected => undef,
},
+ {
+ file => "$DEFAULT_STORAGE_PATH/import/some-import.ova",
+ expected => {
+ content => 'import',
+ ctime => $DEFAULT_CTIME,
+ format => 'ova',
+ size => $DEFAULT_SIZE,
+ volid => 'local:import/some-import.ova',
+ },
+ },
+ {
+ # Not allowed
+ file => "$DEFAULT_STORAGE_PATH/import/1/some-import.ova",
+ expected => undef,
+ },
+ {
+ # Not allowed + exceeds max-scan-depth
+ file => "$DEFAULT_STORAGE_PATH/import/1/2/some-import.ova",
+ expected => undef,
+ },
],
},
{
@@ -1512,6 +1552,31 @@ my $test_param_list = [
file => "$DEFAULT_STORAGE_PATH/snippets/1/2/3/4/5/6/some-hookscript.pl",
expected => undef,
},
+ {
+ file => "$DEFAULT_STORAGE_PATH/import/some-import.ova",
+ expected => {
+ content => 'import',
+ ctime => $DEFAULT_CTIME,
+ format => 'ova',
+ size => $DEFAULT_SIZE,
+ volid => 'local:import/some-import.ova',
+ },
+ },
+ {
+ # Not allowed
+ file => "$DEFAULT_STORAGE_PATH/import/1/some-import.ova",
+ expected => undef,
+ },
+ {
+ # Still not allowed
+ file => "$DEFAULT_STORAGE_PATH/import/1/2/3/4/5/some-import.ova",
+ expected => undef,
+ },
+ {
+ # Not allowed + exceeds max-scan-depth
+ file => "$DEFAULT_STORAGE_PATH/import/1/2/3/4/5/6/some-import.ova",
+ expected => undef,
+ },
],
},
];
diff --git a/src/test/parse_volname_test.pm b/src/test/parse_volname_test.pm
index 0a425ee2..df639df3 100644
--- a/src/test/parse_volname_test.pm
+++ b/src/test/parse_volname_test.pm
@@ -64,6 +64,18 @@ my $tests = [
expected =>
['import', 'import.ova/OS disk.vmdk', undef, undef, undef, undef, 'ova+vmdk'],
},
+ {
+ description => "Import, ova file on disk with whitespace in name",
+ volname => 'import/My neat import.ova/disk.vmdk',
+ expected =>
+ ['import', 'My neat import.ova/disk.vmdk', undef, undef, undef, undef, 'ova+vmdk'],
+ },
+ {
+ description => "Import, ova file on disk and inner file of ova with whitespace in name",
+ volname => 'import/My neat import.ova/OS disk.vmdk',
+ expected =>
+ ['import', 'My neat import.ova/OS disk.vmdk', undef, undef, undef, undef, 'ova+vmdk'],
+ },
#
# failed matches
#
@@ -448,6 +460,57 @@ my $tests = [
push($tests->@*, @extra_tests);
}
+
+ # Failed tests
+ {
+ my $file_name = "$prefix.ova";
+
+ my @extra_failed_tests = (
+ {
+ description => "Import, ova, directory",
+ volname => "import/foo/$file_name",
+ expected => "unable to parse directory volume name 'import/foo/$file_name'\n",
+ },
+ {
+ description => "Import, ova, subdirectories",
+ volname => "import/foo/bar/baz/$file_name",
+ expected =>
+ "unable to parse directory volume name 'import/foo/bar/baz/$file_name'\n",
+ },
+ {
+ description => "Import, ova, directory with same name as file",
+ volname => "import/$file_name/$file_name",
+ expected =>
+ "unable to parse directory volume name 'import/$file_name/$file_name'\n",
+ },
+ {
+ description =>
+ "Import, ova, parent directory reference before volume type prefix",
+ volname => "../import/$file_name",
+ expected => "unable to parse directory volume name '../import/$file_name'\n",
+ },
+ {
+ description =>
+ "Import, ova, parent directory reference at beginning of volume path",
+ volname => "import/../$file_name",
+ expected => "unable to parse directory volume name 'import/../$file_name'\n",
+ },
+ {
+ description => "Import, ova, parent directory reference at end of volume path",
+ volname => "import/$file_name/..",
+ expected => "unable to parse directory volume name 'import/$file_name/..'\n",
+ },
+ {
+ description =>
+ "Import, ova, parent directory reference between dir components of volume path",
+ volname => "import/foo/../bar/$file_name",
+ expected =>
+ "unable to parse directory volume name 'import/foo/../bar/$file_name'\n",
+ },
+ );
+
+ push($tests->@*, @extra_failed_tests);
+ }
}
# Test cases for OVA import files with content inside
@@ -477,6 +540,63 @@ my $tests = [
push($tests->@*, @extra_tests);
}
+
+ # Failed tests
+ {
+ my $content_file_name = "disk.qcow2";
+
+ my @extra_failed_tests = (
+ {
+ description => "Import, inner file of ova (qcow2), directory",
+ volname => "import/foo/$file_name/$content_file_name",
+ expected =>
+ "unable to parse directory volume name 'import/foo/$file_name/$content_file_name'\n",
+ },
+ {
+ description => "Import, inner file of ova (qcow2), nested directories",
+ volname => "import/foo/bar/baz/$file_name/$content_file_name",
+ expected =>
+ "unable to parse directory volume name 'import/foo/bar/baz/$file_name/$content_file_name'\n",
+ },
+ {
+ description =>
+ "Import, inner file of ova (qcow2), directory with same name as file",
+ volname => "import/$file_name/$file_name/$content_file_name",
+ expected =>
+ "unable to parse directory volume name 'import/$file_name/$file_name/$content_file_name'\n",
+ },
+ {
+ description => "Import, inner file of ova (qcow2),"
+ . " parent directory reference before volume type prefix",
+ volname => "../import/$file_name/$content_file_name",
+ expected =>
+ "unable to parse directory volume name '../import/$file_name/$content_file_name'\n",
+ },
+ {
+ description => "Import, inner file of ova (qcow2),"
+ . " parent directory reference at beginning of volume path",
+ volname => "import/../$file_name/$content_file_name",
+ expected =>
+ "unable to parse directory volume name 'import/../$file_name/$content_file_name'\n",
+ },
+ {
+ description => "Import, inner file of ova (qcow2),"
+ . " parent directory reference at end of disk path",
+ volname => "import/$file_name/../$content_file_name",
+ expected =>
+ "unable to parse directory volume name 'import/$file_name/../$content_file_name'\n",
+ },
+ {
+ description => "Import, inner file of ova (qcow2),"
+ . " parent directory reference at end of volume path",
+ volname => "import/$file_name/$content_file_name/..",
+ expected =>
+ "unable to parse directory volume name 'import/$file_name/$content_file_name/..'\n",
+ },
+ );
+
+ push($tests->@*, @extra_failed_tests);
+ }
}
my sub run_tests($tests) {
diff --git a/src/test/path_to_volume_id_test.pm b/src/test/path_to_volume_id_test.pm
index d22f6272..3bfb37a6 100644
--- a/src/test/path_to_volume_id_test.pm
+++ b/src/test/path_to_volume_id_test.pm
@@ -256,6 +256,19 @@ my $tests = [
file => "$DEFAULT_STORAGE_DIR/import/test.foo",
expected => [''],
},
+ {
+ # Allowed in volume names, but not in file paths
+ description => 'Import, ova, whitespace in file name',
+ file => "$DEFAULT_STORAGE_DIR/import/My Import.ova",
+ expected => [''],
+ },
+ {
+ # Supporting subdirectories for the 'import' volume type is
+ # currently not possible because it would introduce parsing ambiguities.
+ description => 'Import, ova, subdirectory',
+ file => "$DEFAULT_STORAGE_DIR/import/foo/import.ova",
+ expected => [''],
+ },
];
my sub run_tests($tests) {
--
2.47.3
next prev parent reply other threads:[~2026-09-23 15:16 UTC|newest]
Thread overview: 51+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-23 15:05 [PATCH manager/storage v2 00/50] Fix #2884: Implement Subdirectory Scanning for Dir-Based Storage Types Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 01/50] test: plugin tests: run tests with at most 4 jobs Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 02/50] plugin, common: remove superfluous use of =pod command paragraph Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 03/50] common: add POD headings for groups of helpers Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 04/50] common: use Exporter module for PVE::Storage::Common Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 05/50] plugin: make get_subdir_files a proper subroutine and update style Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 06/50] plugin api: replace helpers w/ standalone subs, bump API version & age Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 07/50] common: prevent autovivification in plugin_get_vtype_subdir helper Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 08/50] plugin: break up if-elsif chain into separate if-blocks Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 09/50] plugin: adapt get_subdir_files helper of list_volumes API method Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 10/50] plugin: update code style of list_volumes plugin " Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 11/50] plugin: use closure for obtaining raw volume data in list_volumes Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 12/50] plugin: use closure for inner loop logic " Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 13/50] storage: update code style in function path_to_volume_id Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 14/50] storage: break up if-elsif chain in path_to_volume_id Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 15/50] storage: heave vtype file path parsing logic inside loop into helper Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 16/50] storage: clean up code that was moved into helper in path_to_volume_id Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 17/50] api: status: move content type assert for up-/downloads into helper Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 18/50] api: status: use helper from common module to get content directory Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 19/50] api: status: move up-/download file path parsing code into helper Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 20/50] api: status: simplify file content assertion logic for up-/download Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 21/50] test: guest import: add tests for PVE::GuestImport Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 22/50] tree-wide: introduce parsing module and replace usages of ISO_EXT_RE_0 Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 23/50] common: test: set up parser testing code, add tests for 'iso' vtype Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 24/50] tree-wide: replace usages of VZTMPL_EXT_RE_1 with parsing functions Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 25/50] tree-wide: replace usages of BACKUP_EXT_RE_2 " Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 26/50] tree-wide: replace usages of inline regexes for snippets with parsers Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 27/50] tree-wide: partially replace usages of regexes for 'import' vtype Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 28/50] tree-wide: replace remaining " Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 29/50] tree-wide: simplify recently refactored parsing logic Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 30/50] test: list volumes: reorganize and modernize test running code Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 31/50] test: list volumes: fix broken test checking for vmlist modifications Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 32/50] test: list volumes: introduce new format for test cases Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 33/50] test: list volumes: remove legacy code and migrate cases to new format Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 34/50] plugin: do not return volumes of undeclared content types anymore Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 35/50] plugin: correct comment in get_subdir_files helper Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 36/50] test: parse volname: modernize code Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 37/50] test: parse volname: adapt tests regarding 'import' volume type Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 38/50] test: parse volname: move VM disk test creation into separate block Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 39/50] test: parse volname: move backup file test creation into sep. block Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 40/50] test: parse volname: parameterize test case creation for some vtypes Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 41/50] test: volume id: modernize code Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 42/50] test: volume id: rename 'volname' test case parameter to 'file' Max R. Carrara
2026-09-23 15:05 ` [PATCH pve-storage v2 43/50] test: filesystem path: modernize code Max R. Carrara
2026-09-23 15:16 ` [PATCH pve-storage v2 44/50] fix #2884: implement nested subdir scanning and support 'iso' vtype Max R. Carrara
2026-09-23 15:16 ` [PATCH pve-storage v2 45/50] fix #2884: support nested subdir scanning for 'vztmpl' volume type Max R. Carrara
2026-09-23 15:16 ` [PATCH pve-storage v2 46/50] fix #2884: support nested subdir scanning for 'snippets' vtype Max R. Carrara
2026-09-23 15:16 ` Max R. Carrara [this message]
2026-09-23 15:16 ` [PATCH pve-storage v2 48/50] test: add tests guarding against subdir scanning for vtypes Max R. Carrara
2026-09-23 15:16 ` [PATCH pve-manager v2 49/50] fix #2884: ui: storage: add field for 'max-scan-depth' property Max R. Carrara
2026-09-23 15:16 ` [PATCH pve-manager v2 50/50] pve8to9: use helper from common storage module to get vtype subdir 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=20260923151611.544333-4-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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.