]> git.proxmox.com Git - qemu-server.git/blob - test/run_qemu_restore_config_tests.pl
schema: fix description of migrate_downtime parameter
[qemu-server.git] / test / run_qemu_restore_config_tests.pl
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use lib qw(..);
7
8 use Test::MockModule;
9 use Test::More;
10 use Test::MockModule;
11
12 use File::Basename;
13
14 use PVE::QemuServer;
15 use PVE::Tools qw(dir_glob_foreach file_get_contents);
16
17 my $INPUT_DIR = './restore-config-input';
18 my $EXPECTED_DIR = './restore-config-expected';
19
20 my $pve_cluster_module = Test::MockModule->new('PVE::Cluster');
21 $pve_cluster_module->mock(
22 cfs_read_file => sub {
23 return {};
24 },
25 );
26
27 # NOTE update when you add/remove tests
28 plan tests => 4;
29
30 my $cfs_mock = Test::MockModule->new("PVE::Cluster");
31 $cfs_mock->mock(
32 cfs_read_file => sub {
33 my ($file) = @_;
34
35 if ($file eq 'datacenter.cfg') {
36 return {};
37 } else {
38 die "'cfs_read_file' called - missing mock?\n";
39 }
40 },
41 );
42
43 dir_glob_foreach('./restore-config-input', '[0-9]+.conf', sub {
44 my ($file) = @_;
45
46 my $vmid = basename($file, ('.conf'));
47
48 my $fh = IO::File->new("${INPUT_DIR}/${file}", "r") or
49 die "unable to read '$file' - $!\n";
50
51 my $map = {};
52 my $disknum = 0;
53
54 # NOTE For now, the map is hardcoded to a file-based 'target' storage.
55 # In the future, the test could be extended to include parse_backup_hints
56 # and restore_allocate_devices. Even better if the config-related logic from
57 # the restore_XYZ_archive functions could become a separate function.
58 while (defined(my $line = <$fh>)) {
59 if ($line =~ m/^\#qmdump\#map:(\S+):(\S+):(\S*):(\S*):$/) {
60 my ($drive, undef, $storeid, $fmt) = ($1, $2, $3, $4);
61
62 $fmt ||= 'raw';
63
64 $map->{$drive} = "target:${vmid}/vm-${vmid}-disk-${disknum}.${fmt}";
65 $disknum++;
66 }
67 }
68
69 $fh->seek(0, 0) or die "seek failed - $!\n";
70
71 my $got = '';
72 my $cookie = { netcount => 0 };
73
74 while (defined(my $line = <$fh>)) {
75 $got .= PVE::QemuServer::restore_update_config_line(
76 $cookie,
77 $map,
78 $line,
79 0,
80 );
81 }
82
83 my $expected = file_get_contents("${EXPECTED_DIR}/${file}");
84
85 is_deeply($got, $expected, $file);
86 });
87
88 done_testing();