]> git.proxmox.com Git - pve-storage.git/blame - test/get_subdir_test.pm
Ceph: add keyring parameter for external clusters
[pve-storage.git] / test / get_subdir_test.pm
CommitLineData
ddd313c9
AA
1package PVE::Storage::TestGetSubdir;
2
3use strict;
4use warnings;
5
6use lib qw(..);
7
8use PVE::Storage::Plugin;
9use Test::More;
10
11my $scfg_with_path = { path => '/some/path' };
12my $vtype_subdirs = PVE::Storage::Plugin::get_vtype_subdirs();
13
14# each test is comprised of the following array keys:
15# [0] => storage config; positive with path key
16# [1] => storage type; see $vtype_subdirs
17# [2] => expected return from get_subdir
18my $tests = [
19 # failed matches
20 [ $scfg_with_path, 'none', "unknown vtype 'none'\n" ],
ffc31266 21 [ {}, 'iso', "storage definition has no path\n" ],
ddd313c9
AA
22];
23
24# creates additional positive tests
25foreach my $type (keys %$vtype_subdirs) {
26 my $path = "$scfg_with_path->{path}/$vtype_subdirs->{$type}";
27 push @$tests, [ $scfg_with_path, $type, $path ];
28}
29
30plan tests => scalar @$tests;
31
32foreach my $tt (@$tests) {
33 my ($scfg, $type, $expected) = @$tt;
34
35 my $got;
36 eval { $got = PVE::Storage::Plugin->get_subdir($scfg, $type) };
37 $got = $@ if $@;
38
39 is ($got, $expected, "get_subdir for $type") || diag(explain($got));
40}
41
42done_testing();
43
441;