]> git.proxmox.com Git - qemu-server.git/blame - test/snapshot-test.pm
Refactor basic config-related methods
[qemu-server.git] / test / snapshot-test.pm
CommitLineData
a157d0fd
FG
1package PVE::QemuServer;
2
3use strict;
4use warnings;
5
6use lib qw(..);
7
8use PVE::Storage;
9use PVE::Storage::Plugin;
10use PVE::QemuServer;
ffda963f 11use PVE::QemuConfig;
a157d0fd
FG
12use PVE::Tools;
13
14use Test::MockModule;
15use Test::More;
16
17my $nodename;
18my $snapshot_possible;
19my $vol_snapshot_possible = {};
20my $vol_snapshot_delete_possible = {};
21my $vol_snapshot_rollback_possible = {};
22my $vol_snapshot_rollback_enabled = {};
23my $vol_snapshot = {};
24my $vol_snapshot_delete = {};
25my $vol_snapshot_rollback = {};
26my $running;
27my $freeze_possible;
28my $stop_possible;
29my $save_vmstate_works;
30my $vm_mon = {};
31
32# Mocked methods
33
34sub mocked_volume_snapshot {
35 my ($storecfg, $volid, $snapname) = @_;
36 die "Storage config not mocked! aborting\n"
37 if defined($storecfg);
38 die "volid undefined\n"
39 if !defined($volid);
40 die "snapname undefined\n"
41 if !defined($snapname);
42 if ($vol_snapshot_possible->{$volid}) {
43 if (defined($vol_snapshot->{$volid})) {
44 $vol_snapshot->{$volid} .= ",$snapname";
45 } else {
46 $vol_snapshot->{$volid} = $snapname;
47 }
48 return 1;
49 } else {
50 die "volume snapshot disabled\n";
51 }
52}
53
54sub mocked_volume_snapshot_delete {
55 my ($storecfg, $volid, $snapname) = @_;
56 die "Storage config not mocked! aborting\n"
57 if defined($storecfg);
58 die "volid undefined\n"
59 if !defined($volid);
60 die "snapname undefined\n"
61 if !defined($snapname);
62 if ($vol_snapshot_delete_possible->{$volid}) {
63 if (defined($vol_snapshot_delete->{$volid})) {
64 $vol_snapshot_delete->{$volid} .= ",$snapname";
65 } else {
66 $vol_snapshot_delete->{$volid} = $snapname;
67 }
68 return 1;
69 } else {
70 die "volume snapshot delete disabled\n";
71 }
72}
73
74sub mocked_volume_snapshot_rollback {
75 my ($storecfg, $volid, $snapname) = @_;
76 die "Storage config not mocked! aborting\n"
77 if defined($storecfg);
78 die "volid undefined\n"
79 if !defined($volid);
80 die "snapname undefined\n"
81 if !defined($snapname);
82 if ($vol_snapshot_rollback_enabled->{$volid}) {
83 if (defined($vol_snapshot_rollback->{$volid})) {
84 $vol_snapshot_rollback->{$volid} .= ",$snapname";
85 } else {
86 $vol_snapshot_rollback->{$volid} = $snapname;
87 }
88 return 1;
89 } else {
90 die "volume snapshot rollback disabled\n";
91 }
92}
93
94sub mocked_volume_rollback_is_possible {
95 my ($storecfg, $volid, $snapname) = @_;
96 die "Storage config not mocked! aborting\n"
97 if defined($storecfg);
98 die "volid undefined\n"
99 if !defined($volid);
100 die "snapname undefined\n"
101 if !defined($snapname);
102 return $vol_snapshot_rollback_possible->{$volid}
103 if ($vol_snapshot_rollback_possible->{$volid});
104 die "volume_rollback_is_possible failed\n";
105}
106
107sub mocked_vdisk_free {
108 my ($storecfg, $vmstate) = @_;
109 die "Storage config not mocked! aborting\n"
110 if defined($storecfg);
111 die "wrong vdisk - fake vmstate expected!\n"
112 if ($vmstate ne "somestorage:state-volume");
113 return;
114}
115
116sub mocked_run_command {
117 my ($cmd, %param) = @_;
118 my $cmdstring;
119 if (my $ref = ref($cmd)) {
120 $cmdstring = PVE::Tools::cmd2string($cmd);
121 if ($cmdstring =~ m/.*\/qemu-(un)?freeze.*/) {
122 return 1 if $freeze_possible;
123 die "qemu-[un]freeze disabled\n";
124 }
125 if ($cmdstring =~ m/.*\/qemu-stop.*--kill.*/) {
126 if ($stop_possible) {
127 $running = 0;
128 return 1;
129 } else {
130 return 0;
131 }
132 }
133 }
134 die "unexpected run_command call: '$cmdstring', aborting\n";
135}
136
137# Testing methods
138
139sub test_file {
140 my ($exp_fn, $real_fn) = @_;
141 my $ret;
142 eval {
143 $ret = system("diff -u '$exp_fn' '$real_fn'");
144 };
145 die if $@;
146 return !$ret;
147}
148
149sub testcase_prepare {
150 my ($vmid, $snapname, $save_vmstate, $comment, $exp_err) = @_;
151 subtest "Preparing snapshot '$snapname' for vm '$vmid'" => sub {
152 plan tests => 2;
153 $@ = undef;
154 eval {
155 PVE::QemuServer::snapshot_prepare($vmid, $snapname, $save_vmstate, $comment);
156 };
157 is($@, $exp_err, "\$@ correct");
158 ok(test_file("snapshot-expected/prepare/qemu-server/$vmid.conf", "snapshot-working/prepare/qemu-server/$vmid.conf"), "config file correct");
159 };
160}
161
162sub testcase_commit {
163 my ($vmid, $snapname, $exp_err) = @_;
164 subtest "Committing snapshot '$snapname' for vm '$vmid'" => sub {
165 plan tests => 2;
166 $@ = undef;
167 eval {
168 PVE::QemuServer::snapshot_commit($vmid, $snapname);
169 };
170 is($@, $exp_err, "\$@ correct");
171 ok(test_file("snapshot-expected/commit/qemu-server/$vmid.conf", "snapshot-working/commit/qemu-server/$vmid.conf"), "config file correct");
172 }
173}
174
175sub testcase_create {
176 my ($vmid, $snapname, $save_vmstate, $comment, $exp_err, $exp_vol_snap, $exp_vol_snap_delete) = @_;
177 subtest "Creating snapshot '$snapname' for vm '$vmid'" => sub {
178 plan tests => 4;
179 $vol_snapshot = {};
180 $vol_snapshot_delete = {};
181 $exp_vol_snap = {} if !defined($exp_vol_snap);
182 $exp_vol_snap_delete = {} if !defined($exp_vol_snap_delete);
183 $@ = undef;
184 eval {
185 PVE::QemuServer::snapshot_create($vmid, $snapname, $save_vmstate, $comment);
186 };
187 is($@, $exp_err, "\$@ correct");
188 is_deeply($vol_snapshot, $exp_vol_snap, "created correct volume snapshots");
189 is_deeply($vol_snapshot_delete, $exp_vol_snap_delete, "deleted correct volume snapshots");
190 ok(test_file("snapshot-expected/create/qemu-server/$vmid.conf", "snapshot-working/create/qemu-server/$vmid.conf"), "config file correct");
191 };
192}
193
194sub testcase_delete {
195 my ($vmid, $snapname, $force, $exp_err, $exp_vol_snap_delete) = @_;
196 subtest "Deleting snapshot '$snapname' of vm '$vmid'" => sub {
197 plan tests => 3;
198 $vol_snapshot_delete = {};
199 $exp_vol_snap_delete = {} if !defined($exp_vol_snap_delete);
200 $@ = undef;
201 eval {
202 PVE::QemuServer::snapshot_delete($vmid, $snapname, $force);
203 };
204 is($@, $exp_err, "\$@ correct");
205 is_deeply($vol_snapshot_delete, $exp_vol_snap_delete, "deleted correct volume snapshots");
206 ok(test_file("snapshot-expected/delete/qemu-server/$vmid.conf", "snapshot-working/delete/qemu-server/$vmid.conf"), "config file correct");
207 };
208}
209
210sub testcase_rollback {
211 my ($vmid, $snapname, $exp_err, $exp_vol_snap_rollback) = @_;
212 subtest "Rolling back to snapshot '$snapname' of vm '$vmid'" => sub {
213 plan tests => 3;
214 $vol_snapshot_rollback = {};
215 $running = 1;
216 $exp_vol_snap_rollback = {} if !defined($exp_vol_snap_rollback);
217 $@ = undef;
218 eval {
219 PVE::QemuServer::snapshot_rollback($vmid, $snapname);
220 };
221 is($@, $exp_err, "\$@ correct");
222 is_deeply($vol_snapshot_rollback, $exp_vol_snap_rollback, "rolled back to correct volume snapshots");
223 ok(test_file("snapshot-expected/rollback/qemu-server/$vmid.conf", "snapshot-working/rollback/qemu-server/$vmid.conf"), "config file correct");
224 };
225}
226
ffda963f 227# BEGIN mocked PVE::QemuConfig methods
a157d0fd
FG
228sub config_file_lock {
229 return "snapshot-working/pve-test.lock";
230}
231
232sub cfs_config_path {
ffda963f 233 my ($class, $vmid, $node) = @_;
a157d0fd
FG
234
235 $node = $nodename if !$node;
236 return "snapshot-working/$node/qemu-server/$vmid.conf";
237}
238
239sub load_config {
ffda963f 240 my ($class, $vmid, $node) = @_;
a157d0fd 241
ffda963f 242 my $filename = $class->cfs_config_path($vmid, $node);
a157d0fd
FG
243
244 my $raw = PVE::Tools::file_get_contents($filename);
245
246 my $conf = PVE::QemuServer::parse_vm_config($filename, $raw);
247 return $conf;
248}
249
250sub write_config {
ffda963f 251 my ($class, $vmid, $conf) = @_;
a157d0fd 252
ffda963f 253 my $filename = $class->cfs_config_path($vmid);
a157d0fd
FG
254
255 if ($conf->{snapshots}) {
256 foreach my $snapname (keys %{$conf->{snapshots}}) {
257 $conf->{snapshots}->{$snapname}->{snaptime} = "1234567890"
258 if $conf->{snapshots}->{$snapname}->{snaptime};
259 }
260 }
261
262 my $raw = PVE::QemuServer::write_vm_config($filename, $conf);
263
264 PVE::Tools::file_set_contents($filename, $raw);
265}
ffda963f 266# END mocked PVE::QemuConfig methods
a157d0fd 267
ffda963f 268# BEGIN redefine PVE::QemuServer methods
a157d0fd
FG
269sub has_feature {
270 my ($feature, $conf, $storecfg, $snapname, $running, $backup_only) = @_;
271 return $snapshot_possible;
272}
273
274sub check_running {
275 return $running;
276}
277
278sub snapshot_save_vmstate {
279 my ($vmid, $conf, $snapname, $storecfg) = @_;
280 die "save_vmstate failed\n"
281 if !$save_vmstate_works;
282
283 my $snap = $conf->{snapshots}->{$snapname};
284 $snap->{vmstate} = "somestorage:state-volume";
285 $snap->{machine} = "somemachine";
286}
287
288sub do_snapshots_with_qemu {
289 return 0;
290}
291
292sub vm_qmp_command {
293 my ($vmid, $cmd, $nocheck) = @_;
294
295 my $exec = $cmd->{execute};
296 if ($exec eq "delete-drive-snapshot") {
297 return;
298 }
299 if ($exec eq "guest-ping") {
300 die "guest-ping disabled\n"
301 if !$vm_mon->{guest_ping};
302 return;
303 }
304 if ($exec eq "guest-fsfreeze-freeze" || $exec eq "guest-fsfreeze-thaw") {
305 die "freeze disabled\n"
306 if !$freeze_possible;
307 return;
308 }
309 if ($exec eq "savevm-start") {
310 die "savevm-start disabled\n"
311 if !$vm_mon->{savevm_start};
312 return;
313 }
314 if ($exec eq "savevm-end") {
315 die "savevm-end disabled\n"
316 if !$vm_mon->{savevm_end};
317 return;
318 }
319 if ($exec eq "query-savevm") {
320 return { "status" => "completed" };
321 }
322 die "unexpected vm_qmp_command!\n";
323}
324
325sub vm_start {
326 my ($storecfg, $vmid, $statefile, $skiplock, $migratedfrom, $paused, $forcemachine) = @_;
327
328 die "Storage config not mocked! aborting\n"
329 if defined($storecfg);
330
331 die "statefile and forcemachine must be both defined or undefined! aborting\n"
332 if defined($statefile) xor defined($forcemachine);
333
334 return;
335}
336
337sub vm_stop {
338 my ($storecfg, $vmid, $skiplock, $nocheck, $timeout, $shutdown, $force, $keepActive, $migratedfrom) = @_;
339
340 $running = 0
341 if $stop_possible;
342
343 return;
344}
345
346# END redefine PVE::QemuServer methods
347
348PVE::Tools::run_command("rm -rf snapshot-working");
349PVE::Tools::run_command("cp -a snapshot-input snapshot-working");
350
ffda963f
FG
351my $qemu_config_module = new Test::MockModule('PVE::QemuConfig');
352$qemu_config_module->mock('config_file_lock', \&config_file_lock);
353$qemu_config_module->mock('cfs_config_path', \&cfs_config_path);
354$qemu_config_module->mock('load_config', \&load_config);
355$qemu_config_module->mock('write_config', \&write_config);
356
a157d0fd
FG
357$running = 1;
358$freeze_possible = 1;
359$save_vmstate_works = 1;
360
361printf("\n");
362printf("Running prepare tests\n");
363printf("\n");
364$nodename = "prepare";
365
366printf("\n");
367printf("Setting has_feature to return true\n");
368printf("\n");
369$snapshot_possible = 1;
370
371printf("Successful snapshot_prepare with no existing snapshots\n");
372testcase_prepare("101", "test", 0, "test comment", '');
373
374printf("Successful snapshot_prepare with no existing snapshots, including vmstate\n");
375testcase_prepare("102", "test", 1, "test comment", '');
376
377printf("Successful snapshot_prepare with one existing snapshot\n");
378testcase_prepare("103", "test2", 0, "test comment", "");
379
380printf("Successful snapshot_prepare with one existing snapshot, including vmstate\n");
381testcase_prepare("104", "test2", 1, "test comment", "");
382
383printf("Expected error for snapshot_prepare on locked container\n");
384testcase_prepare("200", "test", 0, "test comment", "VM is locked (snapshot)\n");
385
386printf("Expected error for snapshot_prepare with duplicate snapshot name\n");
387testcase_prepare("201", "test", 0, "test comment", "snapshot name 'test' already used\n");
388
389$save_vmstate_works = 0;
390
391printf("Expected error for snapshot_prepare with failing save_vmstate\n");
392testcase_prepare("202", "test", 1, "test comment", "save_vmstate failed\n");
393
394$save_vmstate_works = 1;
395
396printf("\n");
397printf("Setting has_feature to return false\n");
398printf("\n");
399$snapshot_possible = 0;
400
401printf("Expected error for snapshot_prepare if snapshots not possible\n");
402testcase_prepare("300", "test", 0, "test comment", "snapshot feature is not available\n");
403
404printf("\n");
405printf("Running commit tests\n");
406printf("\n");
407$nodename = "commit";
408
409printf("\n");
410printf("Setting has_feature to return true\n");
411printf("\n");
412$snapshot_possible = 1;
413
414printf("Successful snapshot_commit with one prepared snapshot\n");
415testcase_commit("101", "test", "");
416
417printf("Successful snapshot_commit with one committed and one prepared snapshot\n");
418testcase_commit("102", "test2", "");
419
420printf("Expected error for snapshot_commit with no snapshot lock\n");
421testcase_commit("201", "test", "missing snapshot lock\n");
422
423printf("Expected error for snapshot_commit with invalid snapshot name\n");
424testcase_commit("202", "test", "snapshot 'test' does not exist\n");
425
426printf("Expected error for snapshot_commit with invalid snapshot state\n");
427testcase_commit("203", "test", "wrong snapshot state\n");
428
429$vol_snapshot_possible->{"local:snapshotable-disk-1"} = 1;
430$vol_snapshot_possible->{"local:snapshotable-disk-2"} = 1;
431$vol_snapshot_possible->{"local:snapshotable-disk-3"} = 1;
432$vol_snapshot_delete_possible->{"local:snapshotable-disk-1"} = 1;
433$vol_snapshot_delete_possible->{"local:snapshotable-disk-3"} = 1;
434$vol_snapshot_rollback_enabled->{"local:snapshotable-disk-1"} = 1;
435$vol_snapshot_rollback_enabled->{"local:snapshotable-disk-2"} = 1;
436$vol_snapshot_rollback_enabled->{"local:snapshotable-disk-3"} = 1;
437$vol_snapshot_rollback_possible->{"local:snapshotable-disk-1"} = 1;
438$vol_snapshot_rollback_possible->{"local:snapshotable-disk-2"} = 1;
439$vol_snapshot_rollback_possible->{"local:snapshotable-disk-3"} = 1;
440$vol_snapshot_rollback_possible->{"local:snapshotable-disk-4"} = 1;
441$vm_mon->{guest_ping} = 1;
442$vm_mon->{savevm_start} = 1;
443$vm_mon->{savevm_end} = 1;
444
445# possible, but fails
446$vol_snapshot_rollback_possible->{"local:snapshotable-disk-4"} = 1;
447
448printf("\n");
449printf("Setting up Mocking for PVE::Storage\n");
450my $storage_module = new Test::MockModule('PVE::Storage');
451$storage_module->mock('config', sub { return undef; });
452$storage_module->mock('path', sub { return "/some/store/statefile/path"; });
453$storage_module->mock('vdisk_free', \&mocked_vdisk_free);
454$storage_module->mock('volume_snapshot', \&mocked_volume_snapshot);
455$storage_module->mock('volume_snapshot_delete', \&mocked_volume_snapshot_delete);
456$storage_module->mock('volume_snapshot_rollback', \&mocked_volume_snapshot_rollback);
457$storage_module->mock('volume_rollback_is_possible', \&mocked_volume_rollback_is_possible);
458printf("\tconfig(), volume_snapshot(), volume_snapshot_delete(), volume_snapshot_rollback() and volume_rollback_is_possible() mocked\n");
459
460#printf("\n");
461#printf("Setting up Mocking for PVE::Tools\n");
462#my $tools_module = new Test::MockModule('PVE::Tools');
463#$tools_module->mock('run_command' => \&mocked_run_command);
464#printf("\trun_command() mocked\n");
465#
466$nodename = "create";
467printf("\n");
468printf("Running create tests\n");
469printf("\n");
470
471printf("Successful snapshot_create with no existing snapshots\n");
472testcase_create("101", "test", 0, "test comment", "", { "local:snapshotable-disk-1" => "test" });
473
474printf("Successful snapshot_create with no existing snapshots, including vmstate\n");
475testcase_create("102", "test", 1, "test comment", "", { "local:snapshotable-disk-1" => "test" });
476
477printf("Successful snapshot_create with one existing snapshots\n");
478testcase_create("103", "test2", 0, "test comment", "", { "local:snapshotable-disk-1" => "test2" });
479
480printf("Successful snapshot_create with one existing snapshots, including vmstate\n");
481testcase_create("104", "test2", 1, "test comment", "", { "local:snapshotable-disk-1" => "test2" });
482
483printf("Successful snapshot_create with multiple mps\n");
484testcase_create("105", "test", 0, "test comment", "", { "local:snapshotable-disk-1" => "test", "local:snapshotable-disk-2" => "test", "local:snapshotable-disk-3" => "test" });
485
486$freeze_possible = 0;
487printf("Successful snapshot_create with no existing snapshots and broken freeze\n");
488testcase_create("106", "test", 1, "test comment", "", { "local:snapshotable-disk-1" => "test" });
489$freeze_possible = 1;
490
491printf("Expected error for snapshot_create when volume snapshot is not possible\n");
492testcase_create("201", "test", 0, "test comment", "volume snapshot disabled\n");
493
494printf("Expected error for snapshot_create when volume snapshot is not possible for one drive\n");
495testcase_create("202", "test", 0, "test comment", "volume snapshot disabled\n", { "local:snapshotable-disk-1" => "test" }, { "local:snapshotable-disk-1" => "test" });
496
497$vm_mon->{savevm_start} = 0;
498printf("Expected error for snapshot_create when Qemu mon command 'savevm-start' fails\n");
499testcase_create("203", "test", 0, "test comment", "savevm-start disabled\n");
500$vm_mon->{savevm_start} = 1;
501
502
503$nodename = "delete";
504printf("\n");
505printf("Running delete tests\n");
506printf("\n");
507
508printf("Successful snapshot_delete of only existing snapshot\n");
509testcase_delete("101", "test", 0, "", { "local:snapshotable-disk-1" => "test" });
510
511printf("Successful snapshot_delete of leaf snapshot\n");
512testcase_delete("102", "test2", 0, "", { "local:snapshotable-disk-1" => "test2" });
513
514printf("Successful snapshot_delete of root snapshot\n");
515testcase_delete("103", "test", 0, "", { "local:snapshotable-disk-1" => "test" });
516
517printf("Successful snapshot_delete of intermediate snapshot\n");
518testcase_delete("104", "test2", 0, "", { "local:snapshotable-disk-1" => "test2" });
519
520printf("Successful snapshot_delete with broken volume_snapshot_delete and force=1\n");
521testcase_delete("105", "test", 1, "");
522
523printf("Successful snapshot_delete with mp broken volume_snapshot_delete and force=1\n");
524testcase_delete("106", "test", 1, "", { "local:snapshotable-disk-1" => "test", "local:snapshotable-disk-3" => "test" });
525
526printf("Expected error when snapshot_delete fails with broken volume_snapshot_delete and force=0\n");
527testcase_delete("201", "test", 0, "volume snapshot delete disabled\n");
528
529printf("Expected error when snapshot_delete fails with broken mp volume_snapshot_delete and force=0\n");
530testcase_delete("202", "test", 0, "volume snapshot delete disabled\n", { "local:snapshotable-disk-1" => "test" });
531
532printf("Expected error for snapshot_delete with locked config\n");
533testcase_delete("203", "test", 0, "VM is locked (backup)\n");
534
535$nodename = "rollback";
536printf("\n");
537printf("Running rollback tests\n");
538printf("\n");
539
540$stop_possible = 1;
541
542printf("Successful snapshot_rollback to only existing snapshot\n");
543testcase_rollback("101", "test", "", { "local:snapshotable-disk-1" => "test" });
544
545printf("Successful snapshot_rollback to leaf snapshot\n");
546testcase_rollback("102", "test2", "", { "local:snapshotable-disk-1" => "test2" });
547
548printf("Successful snapshot_rollback to root snapshot\n");
549testcase_rollback("103", "test", "", { "local:snapshotable-disk-1" => "test" });
550
551printf("Successful snapshot_rollback to intermediate snapshot\n");
552testcase_rollback("104", "test2", "", { "local:snapshotable-disk-1" => "test2" });
553
554printf("Successful snapshot_rollback with multiple mp\n");
555testcase_rollback("105", "test", "", { "local:snapshotable-disk-1" => "test", "local:snapshotable-disk-2" => "test", "local:snapshotable-disk-3" => "test" });
556
557printf("Successful snapshot_rollback to only existing snapshot, with saved vmstate and machine config\n");
558testcase_rollback("106", "test", "", { "local:snapshotable-disk-1" => "test" });
559
560printf("Expected error for snapshot_rollback with non-existing snapshot\n");
561testcase_rollback("201", "test2", "snapshot 'test2' does not exist\n");
562
563printf("Expected error for snapshot_rollback if volume rollback not possible\n");
564testcase_rollback("202", "test", "volume_rollback_is_possible failed\n");
565
566printf("Expected error for snapshot_rollback with incomplete snapshot\n");
567testcase_rollback("203", "test", "unable to rollback to incomplete snapshot (snapstate = delete)\n");
568
569printf("Expected error for snapshot_rollback with lock\n");
570testcase_rollback("204", "test", "VM is locked (backup)\n");
571
572$stop_possible = 0;
573
574printf("Expected error for snapshot_rollback with unkillable container\n");
575testcase_rollback("205", "test", "unable to rollback vm 205: vm is running\n");
576
577$stop_possible = 1;
578
579printf("Expected error for snapshot_rollback with mp rollback_is_possible failure\n");
580testcase_rollback("206", "test", "volume_rollback_is_possible failed\n");
581
582printf("Expected error for snapshot_rollback with mp rollback failure (results in inconsistent state)\n");
583testcase_rollback("207", "test", "volume snapshot rollback disabled\n", { "local:snapshotable-disk-1" => "test", "local:snapshotable-disk-2" => "test" });
584
585done_testing();