258 lines
7.8 KiB
Diff
258 lines
7.8 KiB
Diff
|
From 686c7592b99c1e2c4831f14c4e101a4ab039c45e Mon Sep 17 00:00:00 2001
|
||
|
Message-Id: <686c7592b99c1e2c4831f14c4e101a4ab039c45e@dist-git>
|
||
|
From: Peter Krempa <pkrempa@redhat.com>
|
||
|
Date: Tue, 4 Feb 2020 15:08:14 +0100
|
||
|
Subject: [PATCH] tests: qemublock: Add checkpoint deletion tests for some
|
||
|
special cases
|
||
|
MIME-Version: 1.0
|
||
|
Content-Type: text/plain; charset=UTF-8
|
||
|
Content-Transfer-Encoding: 8bit
|
||
|
|
||
|
Use the synthetic test data to verify that the algorithm correctly picks
|
||
|
bitmaps to merge when the bitmap is changed along with the image itself.
|
||
|
|
||
|
Signed-off-by: Peter Krempa <pkrempa@redhat.com>
|
||
|
Reviewed-by: Ján Tomko <jtomko@redhat.com>
|
||
|
(cherry picked from commit 065e548ebf0e39c8f9d30d0637ecfa84803d8f98)
|
||
|
|
||
|
https://bugzilla.redhat.com/show_bug.cgi?id=1207659
|
||
|
Message-Id: <c34b7a28b9943b6cf7546eb2ac4d4bf95a164f11.1580824112.git.pkrempa@redhat.com>
|
||
|
Reviewed-by: Ján Tomko <jtomko@redhat.com>
|
||
|
---
|
||
|
tests/qemublocktest.c | 7 +++
|
||
|
...hots-synthetic-checkpoint-current-out.json | 29 +++++++++
|
||
|
...ynthetic-checkpoint-intermediate1-out.json | 29 +++++++++
|
||
|
...ynthetic-checkpoint-intermediate2-out.json | 32 ++++++++++
|
||
|
...ynthetic-checkpoint-intermediate3-out.json | 59 +++++++++++++++++++
|
||
|
...ots-synthetic-checkpoint-noparent-out.json | 23 ++++++++
|
||
|
6 files changed, 179 insertions(+)
|
||
|
create mode 100644 tests/qemublocktestdata/checkpointdelete/snapshots-synthetic-checkpoint-current-out.json
|
||
|
create mode 100644 tests/qemublocktestdata/checkpointdelete/snapshots-synthetic-checkpoint-intermediate1-out.json
|
||
|
create mode 100644 tests/qemublocktestdata/checkpointdelete/snapshots-synthetic-checkpoint-intermediate2-out.json
|
||
|
create mode 100644 tests/qemublocktestdata/checkpointdelete/snapshots-synthetic-checkpoint-intermediate3-out.json
|
||
|
create mode 100644 tests/qemublocktestdata/checkpointdelete/snapshots-synthetic-checkpoint-noparent-out.json
|
||
|
|
||
|
diff --git a/tests/qemublocktest.c b/tests/qemublocktest.c
|
||
|
index 897b86f970..2e5927f3c1 100644
|
||
|
--- a/tests/qemublocktest.c
|
||
|
+++ b/tests/qemublocktest.c
|
||
|
@@ -1021,6 +1021,13 @@ mymain(void)
|
||
|
TEST_CHECKPOINT_DELETE_MERGE("snapshots-intermediate3", "d", "c", "snapshots");
|
||
|
TEST_CHECKPOINT_DELETE_MERGE("snapshots-current", "current", "d", "snapshots");
|
||
|
|
||
|
+ TEST_CHECKPOINT_DELETE_MERGE("snapshots-synthetic-checkpoint-noparent", "a", NULL, "snapshots-synthetic-checkpoint");
|
||
|
+ TEST_CHECKPOINT_DELETE_MERGE("snapshots-synthetic-checkpoint-intermediate1", "b", "a", "snapshots-synthetic-checkpoint");
|
||
|
+ TEST_CHECKPOINT_DELETE_MERGE("snapshots-synthetic-checkpoint-intermediate2", "c", "b", "snapshots-synthetic-checkpoint");
|
||
|
+ TEST_CHECKPOINT_DELETE_MERGE("snapshots-synthetic-checkpoint-intermediate3", "d", "c", "snapshots-synthetic-checkpoint");
|
||
|
+ TEST_CHECKPOINT_DELETE_MERGE("snapshots-synthetic-checkpoint-current", "current", "d", "snapshots-synthetic-checkpoint");
|
||
|
+
|
||
|
+
|
||
|
cleanup:
|
||
|
virHashFree(diskxmljsondata.schema);
|
||
|
qemuTestDriverFree(&driver);
|
||
|
diff --git a/tests/qemublocktestdata/checkpointdelete/snapshots-synthetic-checkpoint-current-out.json b/tests/qemublocktestdata/checkpointdelete/snapshots-synthetic-checkpoint-current-out.json
|
||
|
new file mode 100644
|
||
|
index 0000000000..1b607567e8
|
||
|
--- /dev/null
|
||
|
+++ b/tests/qemublocktestdata/checkpointdelete/snapshots-synthetic-checkpoint-current-out.json
|
||
|
@@ -0,0 +1,29 @@
|
||
|
+[
|
||
|
+ {
|
||
|
+ "type": "block-dirty-bitmap-enable",
|
||
|
+ "data": {
|
||
|
+ "node": "libvirt-1-format",
|
||
|
+ "name": "d"
|
||
|
+ }
|
||
|
+ },
|
||
|
+ {
|
||
|
+ "type": "block-dirty-bitmap-merge",
|
||
|
+ "data": {
|
||
|
+ "node": "libvirt-1-format",
|
||
|
+ "target": "d",
|
||
|
+ "bitmaps": [
|
||
|
+ {
|
||
|
+ "node": "libvirt-1-format",
|
||
|
+ "name": "current"
|
||
|
+ }
|
||
|
+ ]
|
||
|
+ }
|
||
|
+ },
|
||
|
+ {
|
||
|
+ "type": "block-dirty-bitmap-remove",
|
||
|
+ "data": {
|
||
|
+ "node": "libvirt-1-format",
|
||
|
+ "name": "current"
|
||
|
+ }
|
||
|
+ }
|
||
|
+]
|
||
|
diff --git a/tests/qemublocktestdata/checkpointdelete/snapshots-synthetic-checkpoint-intermediate1-out.json b/tests/qemublocktestdata/checkpointdelete/snapshots-synthetic-checkpoint-intermediate1-out.json
|
||
|
new file mode 100644
|
||
|
index 0000000000..e979691e6f
|
||
|
--- /dev/null
|
||
|
+++ b/tests/qemublocktestdata/checkpointdelete/snapshots-synthetic-checkpoint-intermediate1-out.json
|
||
|
@@ -0,0 +1,29 @@
|
||
|
+[
|
||
|
+ {
|
||
|
+ "type": "block-dirty-bitmap-enable",
|
||
|
+ "data": {
|
||
|
+ "node": "libvirt-3-format",
|
||
|
+ "name": "a"
|
||
|
+ }
|
||
|
+ },
|
||
|
+ {
|
||
|
+ "type": "block-dirty-bitmap-merge",
|
||
|
+ "data": {
|
||
|
+ "node": "libvirt-3-format",
|
||
|
+ "target": "a",
|
||
|
+ "bitmaps": [
|
||
|
+ {
|
||
|
+ "node": "libvirt-3-format",
|
||
|
+ "name": "b"
|
||
|
+ }
|
||
|
+ ]
|
||
|
+ }
|
||
|
+ },
|
||
|
+ {
|
||
|
+ "type": "block-dirty-bitmap-remove",
|
||
|
+ "data": {
|
||
|
+ "node": "libvirt-3-format",
|
||
|
+ "name": "b"
|
||
|
+ }
|
||
|
+ }
|
||
|
+]
|
||
|
diff --git a/tests/qemublocktestdata/checkpointdelete/snapshots-synthetic-checkpoint-intermediate2-out.json b/tests/qemublocktestdata/checkpointdelete/snapshots-synthetic-checkpoint-intermediate2-out.json
|
||
|
new file mode 100644
|
||
|
index 0000000000..e82098918a
|
||
|
--- /dev/null
|
||
|
+++ b/tests/qemublocktestdata/checkpointdelete/snapshots-synthetic-checkpoint-intermediate2-out.json
|
||
|
@@ -0,0 +1,32 @@
|
||
|
+[
|
||
|
+ {
|
||
|
+ "type": "block-dirty-bitmap-add",
|
||
|
+ "data": {
|
||
|
+ "node": "libvirt-2-format",
|
||
|
+ "name": "b",
|
||
|
+ "persistent": true,
|
||
|
+ "disabled": true,
|
||
|
+ "granularity": 65536
|
||
|
+ }
|
||
|
+ },
|
||
|
+ {
|
||
|
+ "type": "block-dirty-bitmap-merge",
|
||
|
+ "data": {
|
||
|
+ "node": "libvirt-2-format",
|
||
|
+ "target": "b",
|
||
|
+ "bitmaps": [
|
||
|
+ {
|
||
|
+ "node": "libvirt-2-format",
|
||
|
+ "name": "c"
|
||
|
+ }
|
||
|
+ ]
|
||
|
+ }
|
||
|
+ },
|
||
|
+ {
|
||
|
+ "type": "block-dirty-bitmap-remove",
|
||
|
+ "data": {
|
||
|
+ "node": "libvirt-2-format",
|
||
|
+ "name": "c"
|
||
|
+ }
|
||
|
+ }
|
||
|
+]
|
||
|
diff --git a/tests/qemublocktestdata/checkpointdelete/snapshots-synthetic-checkpoint-intermediate3-out.json b/tests/qemublocktestdata/checkpointdelete/snapshots-synthetic-checkpoint-intermediate3-out.json
|
||
|
new file mode 100644
|
||
|
index 0000000000..dc87dd60b8
|
||
|
--- /dev/null
|
||
|
+++ b/tests/qemublocktestdata/checkpointdelete/snapshots-synthetic-checkpoint-intermediate3-out.json
|
||
|
@@ -0,0 +1,59 @@
|
||
|
+[
|
||
|
+ {
|
||
|
+ "type": "block-dirty-bitmap-add",
|
||
|
+ "data": {
|
||
|
+ "node": "libvirt-1-format",
|
||
|
+ "name": "c",
|
||
|
+ "persistent": true,
|
||
|
+ "disabled": true,
|
||
|
+ "granularity": 65536
|
||
|
+ }
|
||
|
+ },
|
||
|
+ {
|
||
|
+ "type": "block-dirty-bitmap-merge",
|
||
|
+ "data": {
|
||
|
+ "node": "libvirt-1-format",
|
||
|
+ "target": "c",
|
||
|
+ "bitmaps": [
|
||
|
+ {
|
||
|
+ "node": "libvirt-1-format",
|
||
|
+ "name": "d"
|
||
|
+ }
|
||
|
+ ]
|
||
|
+ }
|
||
|
+ },
|
||
|
+ {
|
||
|
+ "type": "block-dirty-bitmap-remove",
|
||
|
+ "data": {
|
||
|
+ "node": "libvirt-1-format",
|
||
|
+ "name": "d"
|
||
|
+ }
|
||
|
+ },
|
||
|
+ {
|
||
|
+ "type": "block-dirty-bitmap-enable",
|
||
|
+ "data": {
|
||
|
+ "node": "libvirt-2-format",
|
||
|
+ "name": "c"
|
||
|
+ }
|
||
|
+ },
|
||
|
+ {
|
||
|
+ "type": "block-dirty-bitmap-merge",
|
||
|
+ "data": {
|
||
|
+ "node": "libvirt-2-format",
|
||
|
+ "target": "c",
|
||
|
+ "bitmaps": [
|
||
|
+ {
|
||
|
+ "node": "libvirt-2-format",
|
||
|
+ "name": "d"
|
||
|
+ }
|
||
|
+ ]
|
||
|
+ }
|
||
|
+ },
|
||
|
+ {
|
||
|
+ "type": "block-dirty-bitmap-remove",
|
||
|
+ "data": {
|
||
|
+ "node": "libvirt-2-format",
|
||
|
+ "name": "d"
|
||
|
+ }
|
||
|
+ }
|
||
|
+]
|
||
|
diff --git a/tests/qemublocktestdata/checkpointdelete/snapshots-synthetic-checkpoint-noparent-out.json b/tests/qemublocktestdata/checkpointdelete/snapshots-synthetic-checkpoint-noparent-out.json
|
||
|
new file mode 100644
|
||
|
index 0000000000..45a84b47c2
|
||
|
--- /dev/null
|
||
|
+++ b/tests/qemublocktestdata/checkpointdelete/snapshots-synthetic-checkpoint-noparent-out.json
|
||
|
@@ -0,0 +1,23 @@
|
||
|
+[
|
||
|
+ {
|
||
|
+ "type": "block-dirty-bitmap-remove",
|
||
|
+ "data": {
|
||
|
+ "node": "libvirt-3-format",
|
||
|
+ "name": "a"
|
||
|
+ }
|
||
|
+ },
|
||
|
+ {
|
||
|
+ "type": "block-dirty-bitmap-remove",
|
||
|
+ "data": {
|
||
|
+ "node": "libvirt-4-format",
|
||
|
+ "name": "a"
|
||
|
+ }
|
||
|
+ },
|
||
|
+ {
|
||
|
+ "type": "block-dirty-bitmap-remove",
|
||
|
+ "data": {
|
||
|
+ "node": "libvirt-5-format",
|
||
|
+ "name": "a"
|
||
|
+ }
|
||
|
+ }
|
||
|
+]
|
||
|
--
|
||
|
2.25.0
|
||
|
|