|
|
26ba25 |
From afd502677f82814b106b0095104b350f982c067f Mon Sep 17 00:00:00 2001
|
|
|
26ba25 |
From: Kevin Wolf <kwolf@redhat.com>
|
|
|
26ba25 |
Date: Tue, 26 Jun 2018 09:48:36 +0200
|
|
|
26ba25 |
Subject: [PATCH 128/268] qemu-iotests: Test job-* with block jobs
|
|
|
26ba25 |
|
|
|
26ba25 |
RH-Author: Kevin Wolf <kwolf@redhat.com>
|
|
|
26ba25 |
Message-id: <20180626094856.6924-54-kwolf@redhat.com>
|
|
|
26ba25 |
Patchwork-id: 81101
|
|
|
26ba25 |
O-Subject: [RHV-7.6 qemu-kvm-rhev PATCH v2 53/73] qemu-iotests: Test job-* with block jobs
|
|
|
26ba25 |
Bugzilla: 1513543
|
|
|
26ba25 |
RH-Acked-by: Jeffrey Cody <jcody@redhat.com>
|
|
|
26ba25 |
RH-Acked-by: Max Reitz <mreitz@redhat.com>
|
|
|
26ba25 |
RH-Acked-by: Fam Zheng <famz@redhat.com>
|
|
|
26ba25 |
|
|
|
26ba25 |
This adds a test case that tests the new job-* QMP commands with
|
|
|
26ba25 |
mirror and backup block jobs.
|
|
|
26ba25 |
|
|
|
26ba25 |
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
|
26ba25 |
(cherry picked from commit bdebdc712b06ba82e103d617c335830682cde242)
|
|
|
26ba25 |
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
|
26ba25 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
26ba25 |
---
|
|
|
26ba25 |
tests/qemu-iotests/219 | 209 +++++++++++++++++++++++++++++
|
|
|
26ba25 |
tests/qemu-iotests/219.out | 327 +++++++++++++++++++++++++++++++++++++++++++++
|
|
|
26ba25 |
tests/qemu-iotests/group | 1 +
|
|
|
26ba25 |
3 files changed, 537 insertions(+)
|
|
|
26ba25 |
create mode 100755 tests/qemu-iotests/219
|
|
|
26ba25 |
create mode 100644 tests/qemu-iotests/219.out
|
|
|
26ba25 |
|
|
|
26ba25 |
diff --git a/tests/qemu-iotests/219 b/tests/qemu-iotests/219
|
|
|
26ba25 |
new file mode 100755
|
|
|
26ba25 |
index 0000000..898a26e
|
|
|
26ba25 |
--- /dev/null
|
|
|
26ba25 |
+++ b/tests/qemu-iotests/219
|
|
|
26ba25 |
@@ -0,0 +1,209 @@
|
|
|
26ba25 |
+#!/usr/bin/env python
|
|
|
26ba25 |
+#
|
|
|
26ba25 |
+# Copyright (C) 2018 Red Hat, Inc.
|
|
|
26ba25 |
+#
|
|
|
26ba25 |
+# This program is free software; you can redistribute it and/or modify
|
|
|
26ba25 |
+# it under the terms of the GNU General Public License as published by
|
|
|
26ba25 |
+# the Free Software Foundation; either version 2 of the License, or
|
|
|
26ba25 |
+# (at your option) any later version.
|
|
|
26ba25 |
+#
|
|
|
26ba25 |
+# This program is distributed in the hope that it will be useful,
|
|
|
26ba25 |
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
26ba25 |
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
26ba25 |
+# GNU General Public License for more details.
|
|
|
26ba25 |
+#
|
|
|
26ba25 |
+# You should have received a copy of the GNU General Public License
|
|
|
26ba25 |
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
26ba25 |
+#
|
|
|
26ba25 |
+# Creator/Owner: Kevin Wolf <kwolf@redhat.com>
|
|
|
26ba25 |
+#
|
|
|
26ba25 |
+# Check using the job-* QMP commands with block jobs
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+import iotests
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+iotests.verify_image_format(supported_fmts=['qcow2'])
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+def pause_wait(vm, job_id):
|
|
|
26ba25 |
+ with iotests.Timeout(3, "Timeout waiting for job to pause"):
|
|
|
26ba25 |
+ while True:
|
|
|
26ba25 |
+ result = vm.qmp('query-jobs')
|
|
|
26ba25 |
+ for job in result['return']:
|
|
|
26ba25 |
+ if job['id'] == job_id and job['status'] in ['paused', 'standby']:
|
|
|
26ba25 |
+ return job
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+# Test that block-job-pause/resume and job-pause/resume can be mixed
|
|
|
26ba25 |
+def test_pause_resume(vm):
|
|
|
26ba25 |
+ for pause_cmd, pause_arg in [('block-job-pause', 'device'),
|
|
|
26ba25 |
+ ('job-pause', 'id')]:
|
|
|
26ba25 |
+ for resume_cmd, resume_arg in [('block-job-resume', 'device'),
|
|
|
26ba25 |
+ ('job-resume', 'id')]:
|
|
|
26ba25 |
+ iotests.log('=== Testing %s/%s ===' % (pause_cmd, resume_cmd))
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ iotests.log(vm.qmp(pause_cmd, **{pause_arg: 'job0'}))
|
|
|
26ba25 |
+ pause_wait(vm, 'job0')
|
|
|
26ba25 |
+ iotests.log(iotests.filter_qmp_event(vm.event_wait('JOB_STATUS_CHANGE')))
|
|
|
26ba25 |
+ iotests.log(vm.qmp('query-jobs'))
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ iotests.log(vm.qmp(resume_cmd, **{resume_arg: 'job0'}))
|
|
|
26ba25 |
+ iotests.log(iotests.filter_qmp_event(vm.event_wait('JOB_STATUS_CHANGE')))
|
|
|
26ba25 |
+ iotests.log(vm.qmp('query-jobs'))
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+def test_job_lifecycle(vm, job, job_args, has_ready=False):
|
|
|
26ba25 |
+ iotests.log('')
|
|
|
26ba25 |
+ iotests.log('')
|
|
|
26ba25 |
+ iotests.log('Starting block job: %s (auto-finalize: %s; auto-dismiss: %s)' %
|
|
|
26ba25 |
+ (job,
|
|
|
26ba25 |
+ job_args.get('auto-finalize', True),
|
|
|
26ba25 |
+ job_args.get('auto-dismiss', True)))
|
|
|
26ba25 |
+ iotests.log(vm.qmp(job, job_id='job0', **job_args))
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ # Depending on the storage, the first request may or may not have completed
|
|
|
26ba25 |
+ # yet, so filter out the progress. Later query-job calls don't need the
|
|
|
26ba25 |
+ # filtering because the progress is made deterministic by the block job
|
|
|
26ba25 |
+ # speed
|
|
|
26ba25 |
+ result = vm.qmp('query-jobs')
|
|
|
26ba25 |
+ for j in result['return']:
|
|
|
26ba25 |
+ del j['current-progress']
|
|
|
26ba25 |
+ iotests.log(result)
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ # undefined -> created -> running
|
|
|
26ba25 |
+ iotests.log(iotests.filter_qmp_event(vm.event_wait('JOB_STATUS_CHANGE')))
|
|
|
26ba25 |
+ iotests.log(iotests.filter_qmp_event(vm.event_wait('JOB_STATUS_CHANGE')))
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ # RUNNING state:
|
|
|
26ba25 |
+ # pause/resume should work, complete/finalize/dismiss should error out
|
|
|
26ba25 |
+ iotests.log('')
|
|
|
26ba25 |
+ iotests.log('Pause/resume in RUNNING')
|
|
|
26ba25 |
+ test_pause_resume(vm)
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ iotests.log(vm.qmp('job-complete', id='job0'))
|
|
|
26ba25 |
+ iotests.log(vm.qmp('job-finalize', id='job0'))
|
|
|
26ba25 |
+ iotests.log(vm.qmp('job-dismiss', id='job0'))
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ iotests.log(vm.qmp('block-job-complete', device='job0'))
|
|
|
26ba25 |
+ iotests.log(vm.qmp('block-job-finalize', id='job0'))
|
|
|
26ba25 |
+ iotests.log(vm.qmp('block-job-dismiss', id='job0'))
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ # Let the job complete (or transition to READY if it supports that)
|
|
|
26ba25 |
+ iotests.log(vm.qmp('block-job-set-speed', device='job0', speed=0))
|
|
|
26ba25 |
+ if has_ready:
|
|
|
26ba25 |
+ iotests.log('')
|
|
|
26ba25 |
+ iotests.log('Waiting for READY state...')
|
|
|
26ba25 |
+ vm.event_wait('BLOCK_JOB_READY')
|
|
|
26ba25 |
+ iotests.log(iotests.filter_qmp_event(vm.event_wait('JOB_STATUS_CHANGE')))
|
|
|
26ba25 |
+ iotests.log(vm.qmp('query-jobs'))
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ # READY state:
|
|
|
26ba25 |
+ # pause/resume/complete should work, finalize/dismiss should error out
|
|
|
26ba25 |
+ iotests.log('')
|
|
|
26ba25 |
+ iotests.log('Pause/resume in READY')
|
|
|
26ba25 |
+ test_pause_resume(vm)
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ iotests.log(vm.qmp('job-finalize', id='job0'))
|
|
|
26ba25 |
+ iotests.log(vm.qmp('job-dismiss', id='job0'))
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ iotests.log(vm.qmp('block-job-finalize', id='job0'))
|
|
|
26ba25 |
+ iotests.log(vm.qmp('block-job-dismiss', id='job0'))
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ # Transition to WAITING
|
|
|
26ba25 |
+ iotests.log(vm.qmp('job-complete', id='job0'))
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ # Move to WAITING and PENDING state
|
|
|
26ba25 |
+ iotests.log('')
|
|
|
26ba25 |
+ iotests.log('Waiting for PENDING state...')
|
|
|
26ba25 |
+ iotests.log(iotests.filter_qmp_event(vm.event_wait('JOB_STATUS_CHANGE')))
|
|
|
26ba25 |
+ iotests.log(iotests.filter_qmp_event(vm.event_wait('JOB_STATUS_CHANGE')))
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ if not job_args.get('auto-finalize', True):
|
|
|
26ba25 |
+ # PENDING state:
|
|
|
26ba25 |
+ # finalize should work, pause/complete/dismiss should error out
|
|
|
26ba25 |
+ iotests.log(vm.qmp('query-jobs'))
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ iotests.log(vm.qmp('job-pause', id='job0'))
|
|
|
26ba25 |
+ iotests.log(vm.qmp('job-complete', id='job0'))
|
|
|
26ba25 |
+ iotests.log(vm.qmp('job-dismiss', id='job0'))
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ iotests.log(vm.qmp('block-job-pause', device='job0'))
|
|
|
26ba25 |
+ iotests.log(vm.qmp('block-job-complete', device='job0'))
|
|
|
26ba25 |
+ iotests.log(vm.qmp('block-job-dismiss', id='job0'))
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ # Transition to CONCLUDED
|
|
|
26ba25 |
+ iotests.log(vm.qmp('job-finalize', id='job0'))
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ # Move to CONCLUDED state
|
|
|
26ba25 |
+ iotests.log(iotests.filter_qmp_event(vm.event_wait('JOB_STATUS_CHANGE')))
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ if not job_args.get('auto-dismiss', True):
|
|
|
26ba25 |
+ # CONCLUDED state:
|
|
|
26ba25 |
+ # dismiss should work, pause/complete/finalize should error out
|
|
|
26ba25 |
+ iotests.log(vm.qmp('query-jobs'))
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ iotests.log(vm.qmp('job-pause', id='job0'))
|
|
|
26ba25 |
+ iotests.log(vm.qmp('job-complete', id='job0'))
|
|
|
26ba25 |
+ iotests.log(vm.qmp('job-finalize', id='job0'))
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ iotests.log(vm.qmp('block-job-pause', device='job0'))
|
|
|
26ba25 |
+ iotests.log(vm.qmp('block-job-complete', device='job0'))
|
|
|
26ba25 |
+ iotests.log(vm.qmp('block-job-finalize', id='job0'))
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ # Transition to NULL
|
|
|
26ba25 |
+ iotests.log(vm.qmp('job-dismiss', id='job0'))
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ # Move to NULL state
|
|
|
26ba25 |
+ iotests.log(iotests.filter_qmp_event(vm.event_wait('JOB_STATUS_CHANGE')))
|
|
|
26ba25 |
+ iotests.log(vm.qmp('query-jobs'))
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+with iotests.FilePath('disk.img') as disk_path, \
|
|
|
26ba25 |
+ iotests.FilePath('copy.img') as copy_path, \
|
|
|
26ba25 |
+ iotests.VM() as vm:
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ img_size = '4M'
|
|
|
26ba25 |
+ iotests.qemu_img_create('-f', iotests.imgfmt, disk_path, img_size)
|
|
|
26ba25 |
+ iotests.qemu_io('-c', 'write 0 %s' % (img_size),
|
|
|
26ba25 |
+ '-f', iotests.imgfmt, disk_path)
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ iotests.log('Launching VM...')
|
|
|
26ba25 |
+ vm.add_blockdev(vm.qmp_to_opts({
|
|
|
26ba25 |
+ 'driver': iotests.imgfmt,
|
|
|
26ba25 |
+ 'node-name': 'drive0-node',
|
|
|
26ba25 |
+ 'file': {
|
|
|
26ba25 |
+ 'driver': 'file',
|
|
|
26ba25 |
+ 'filename': disk_path,
|
|
|
26ba25 |
+ },
|
|
|
26ba25 |
+ }))
|
|
|
26ba25 |
+ vm.launch()
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ # In order to keep things deterministic (especially progress in query-job,
|
|
|
26ba25 |
+ # but related to this also automatic state transitions like job
|
|
|
26ba25 |
+ # completion), but still get pause points often enough to avoid making this
|
|
|
26ba25 |
+ # test very slow, it's important to have the right ratio between speed and
|
|
|
26ba25 |
+ # buf_size.
|
|
|
26ba25 |
+ #
|
|
|
26ba25 |
+ # For backup, buf_size is hard-coded to the source image cluster size (64k),
|
|
|
26ba25 |
+ # so we'll pick the same for mirror. The slice time, i.e. the granularity
|
|
|
26ba25 |
+ # of the rate limiting is 100ms. With a speed of 256k per second, we can
|
|
|
26ba25 |
+ # get four pause points per second. This gives us 250ms per iteration,
|
|
|
26ba25 |
+ # which should be enough to stay deterministic.
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ test_job_lifecycle(vm, 'drive-mirror', has_ready=True, job_args={
|
|
|
26ba25 |
+ 'device': 'drive0-node',
|
|
|
26ba25 |
+ 'target': copy_path,
|
|
|
26ba25 |
+ 'sync': 'full',
|
|
|
26ba25 |
+ 'speed': 262144,
|
|
|
26ba25 |
+ 'buf_size': 65536,
|
|
|
26ba25 |
+ })
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ for auto_finalize in [True, False]:
|
|
|
26ba25 |
+ for auto_dismiss in [True, False]:
|
|
|
26ba25 |
+ test_job_lifecycle(vm, 'drive-backup', job_args={
|
|
|
26ba25 |
+ 'device': 'drive0-node',
|
|
|
26ba25 |
+ 'target': copy_path,
|
|
|
26ba25 |
+ 'sync': 'full',
|
|
|
26ba25 |
+ 'speed': 262144,
|
|
|
26ba25 |
+ 'auto-finalize': auto_finalize,
|
|
|
26ba25 |
+ 'auto-dismiss': auto_dismiss,
|
|
|
26ba25 |
+ })
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+ vm.shutdown()
|
|
|
26ba25 |
diff --git a/tests/qemu-iotests/219.out b/tests/qemu-iotests/219.out
|
|
|
26ba25 |
new file mode 100644
|
|
|
26ba25 |
index 0000000..346801b
|
|
|
26ba25 |
--- /dev/null
|
|
|
26ba25 |
+++ b/tests/qemu-iotests/219.out
|
|
|
26ba25 |
@@ -0,0 +1,327 @@
|
|
|
26ba25 |
+Launching VM...
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+Starting block job: drive-mirror (auto-finalize: True; auto-dismiss: True)
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'return': [{u'status': u'running', u'total-progress': 4194304, u'id': u'job0', u'type': u'mirror'}]}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'created', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'running', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+Pause/resume in RUNNING
|
|
|
26ba25 |
+=== Testing block-job-pause/block-job-resume ===
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'paused', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'paused', u'current-progress': 65536, u'total-progress': 4194304, u'id': u'job0', u'type': u'mirror'}]}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'running', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'running', u'current-progress': 131072, u'total-progress': 4194304, u'id': u'job0', u'type': u'mirror'}]}
|
|
|
26ba25 |
+=== Testing block-job-pause/job-resume ===
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'paused', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'paused', u'current-progress': 131072, u'total-progress': 4194304, u'id': u'job0', u'type': u'mirror'}]}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'running', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'running', u'current-progress': 196608, u'total-progress': 4194304, u'id': u'job0', u'type': u'mirror'}]}
|
|
|
26ba25 |
+=== Testing job-pause/block-job-resume ===
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'paused', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'paused', u'current-progress': 196608, u'total-progress': 4194304, u'id': u'job0', u'type': u'mirror'}]}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'running', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'running', u'current-progress': 262144, u'total-progress': 4194304, u'id': u'job0', u'type': u'mirror'}]}
|
|
|
26ba25 |
+=== Testing job-pause/job-resume ===
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'paused', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'paused', u'current-progress': 262144, u'total-progress': 4194304, u'id': u'job0', u'type': u'mirror'}]}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'running', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'running', u'current-progress': 327680, u'total-progress': 4194304, u'id': u'job0', u'type': u'mirror'}]}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'complete'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'finalize'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'dismiss'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'complete'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'finalize'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'dismiss'"}}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+Waiting for READY state...
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'ready', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'ready', u'current-progress': 4194304, u'total-progress': 4194304, u'id': u'job0', u'type': u'mirror'}]}
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+Pause/resume in READY
|
|
|
26ba25 |
+=== Testing block-job-pause/block-job-resume ===
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'standby', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'standby', u'current-progress': 4194304, u'total-progress': 4194304, u'id': u'job0', u'type': u'mirror'}]}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'ready', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'ready', u'current-progress': 4194304, u'total-progress': 4194304, u'id': u'job0', u'type': u'mirror'}]}
|
|
|
26ba25 |
+=== Testing block-job-pause/job-resume ===
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'standby', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'standby', u'current-progress': 4194304, u'total-progress': 4194304, u'id': u'job0', u'type': u'mirror'}]}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'ready', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'ready', u'current-progress': 4194304, u'total-progress': 4194304, u'id': u'job0', u'type': u'mirror'}]}
|
|
|
26ba25 |
+=== Testing job-pause/block-job-resume ===
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'standby', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'standby', u'current-progress': 4194304, u'total-progress': 4194304, u'id': u'job0', u'type': u'mirror'}]}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'ready', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'ready', u'current-progress': 4194304, u'total-progress': 4194304, u'id': u'job0', u'type': u'mirror'}]}
|
|
|
26ba25 |
+=== Testing job-pause/job-resume ===
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'standby', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'standby', u'current-progress': 4194304, u'total-progress': 4194304, u'id': u'job0', u'type': u'mirror'}]}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'ready', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'ready', u'current-progress': 4194304, u'total-progress': 4194304, u'id': u'job0', u'type': u'mirror'}]}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'ready' cannot accept command verb 'finalize'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'ready' cannot accept command verb 'dismiss'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'ready' cannot accept command verb 'finalize'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'ready' cannot accept command verb 'dismiss'"}}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+Waiting for PENDING state...
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'waiting', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'pending', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'concluded', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'null', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': []}
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+Starting block job: drive-backup (auto-finalize: True; auto-dismiss: True)
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'return': [{u'status': u'running', u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'created', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'running', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+Pause/resume in RUNNING
|
|
|
26ba25 |
+=== Testing block-job-pause/block-job-resume ===
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'paused', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'paused', u'current-progress': 65536, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'running', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'running', u'current-progress': 131072, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+=== Testing block-job-pause/job-resume ===
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'paused', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'paused', u'current-progress': 131072, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'running', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'running', u'current-progress': 196608, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+=== Testing job-pause/block-job-resume ===
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'paused', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'paused', u'current-progress': 196608, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'running', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'running', u'current-progress': 262144, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+=== Testing job-pause/job-resume ===
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'paused', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'paused', u'current-progress': 262144, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'running', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'running', u'current-progress': 327680, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'complete'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'finalize'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'dismiss'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'complete'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'finalize'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'dismiss'"}}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+Waiting for PENDING state...
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'waiting', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'pending', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'concluded', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'null', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': []}
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+Starting block job: drive-backup (auto-finalize: True; auto-dismiss: False)
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'return': [{u'status': u'running', u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'created', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'running', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+Pause/resume in RUNNING
|
|
|
26ba25 |
+=== Testing block-job-pause/block-job-resume ===
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'paused', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'paused', u'current-progress': 65536, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'running', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'running', u'current-progress': 131072, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+=== Testing block-job-pause/job-resume ===
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'paused', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'paused', u'current-progress': 131072, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'running', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'running', u'current-progress': 196608, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+=== Testing job-pause/block-job-resume ===
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'paused', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'paused', u'current-progress': 196608, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'running', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'running', u'current-progress': 262144, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+=== Testing job-pause/job-resume ===
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'paused', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'paused', u'current-progress': 262144, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'running', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'running', u'current-progress': 327680, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'complete'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'finalize'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'dismiss'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'complete'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'finalize'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'dismiss'"}}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+Waiting for PENDING state...
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'waiting', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'pending', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'concluded', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'concluded', u'current-progress': 4194304, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'concluded' cannot accept command verb 'pause'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'concluded' cannot accept command verb 'complete'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'concluded' cannot accept command verb 'finalize'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'concluded' cannot accept command verb 'pause'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'concluded' cannot accept command verb 'complete'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'concluded' cannot accept command verb 'finalize'"}}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'null', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': []}
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+Starting block job: drive-backup (auto-finalize: False; auto-dismiss: True)
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'return': [{u'status': u'running', u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'created', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'running', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+Pause/resume in RUNNING
|
|
|
26ba25 |
+=== Testing block-job-pause/block-job-resume ===
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'paused', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'paused', u'current-progress': 65536, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'running', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'running', u'current-progress': 131072, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+=== Testing block-job-pause/job-resume ===
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'paused', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'paused', u'current-progress': 131072, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'running', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'running', u'current-progress': 196608, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+=== Testing job-pause/block-job-resume ===
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'paused', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'paused', u'current-progress': 196608, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'running', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'running', u'current-progress': 262144, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+=== Testing job-pause/job-resume ===
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'paused', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'paused', u'current-progress': 262144, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'running', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'running', u'current-progress': 327680, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'complete'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'finalize'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'dismiss'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'complete'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'finalize'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'dismiss'"}}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+Waiting for PENDING state...
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'waiting', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'pending', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'pending', u'current-progress': 4194304, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'pending' cannot accept command verb 'pause'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'pending' cannot accept command verb 'complete'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'pending' cannot accept command verb 'dismiss'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'pending' cannot accept command verb 'pause'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'pending' cannot accept command verb 'complete'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'pending' cannot accept command verb 'dismiss'"}}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'concluded', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'null', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': []}
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+Starting block job: drive-backup (auto-finalize: False; auto-dismiss: False)
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'return': [{u'status': u'running', u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'created', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'running', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+Pause/resume in RUNNING
|
|
|
26ba25 |
+=== Testing block-job-pause/block-job-resume ===
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'paused', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'paused', u'current-progress': 65536, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'running', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'running', u'current-progress': 131072, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+=== Testing block-job-pause/job-resume ===
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'paused', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'paused', u'current-progress': 131072, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'running', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'running', u'current-progress': 196608, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+=== Testing job-pause/block-job-resume ===
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'paused', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'paused', u'current-progress': 196608, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'running', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'running', u'current-progress': 262144, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+=== Testing job-pause/job-resume ===
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'paused', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'paused', u'current-progress': 262144, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'running', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'running', u'current-progress': 327680, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'complete'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'finalize'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'dismiss'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'complete'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'finalize'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'running' cannot accept command verb 'dismiss'"}}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+Waiting for PENDING state...
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'waiting', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'pending', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'pending', u'current-progress': 4194304, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'pending' cannot accept command verb 'pause'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'pending' cannot accept command verb 'complete'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'pending' cannot accept command verb 'dismiss'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'pending' cannot accept command verb 'pause'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'pending' cannot accept command verb 'complete'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'pending' cannot accept command verb 'dismiss'"}}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'concluded', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': [{u'status': u'concluded', u'current-progress': 4194304, u'total-progress': 4194304, u'id': u'job0', u'type': u'backup'}]}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'concluded' cannot accept command verb 'pause'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'concluded' cannot accept command verb 'complete'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'concluded' cannot accept command verb 'finalize'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'concluded' cannot accept command verb 'pause'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'concluded' cannot accept command verb 'complete'"}}
|
|
|
26ba25 |
+{u'error': {u'class': u'GenericError', u'desc': u"Job 'job0' in state 'concluded' cannot accept command verb 'finalize'"}}
|
|
|
26ba25 |
+{u'return': {}}
|
|
|
26ba25 |
+{u'timestamp': {u'seconds': 'SECS', u'microseconds': 'USECS'}, u'data': {u'status': u'null', u'id': u'job0'}, u'event': u'JOB_STATUS_CHANGE'}
|
|
|
26ba25 |
+{u'return': []}
|
|
|
26ba25 |
diff --git a/tests/qemu-iotests/group b/tests/qemu-iotests/group
|
|
|
26ba25 |
index cd7bc29..5c55adc 100644
|
|
|
26ba25 |
--- a/tests/qemu-iotests/group
|
|
|
26ba25 |
+++ b/tests/qemu-iotests/group
|
|
|
26ba25 |
@@ -217,3 +217,4 @@
|
|
|
26ba25 |
216 rw auto quick
|
|
|
26ba25 |
217 rw auto quick
|
|
|
26ba25 |
218 rw auto quick
|
|
|
26ba25 |
+219 rw auto
|
|
|
26ba25 |
--
|
|
|
26ba25 |
1.8.3.1
|
|
|
26ba25 |
|