]> Git Repo - qemu.git/blob - tests/qemu-iotests/129
2f7b28d4a09db37107b23a7e190bf705ca22294a
[qemu.git] / tests / qemu-iotests / 129
1 #!/usr/bin/env python3
2 # group: rw quick
3 #
4 # Tests that "bdrv_drain_all" doesn't drain block jobs
5 #
6 # Copyright (C) 2015 Red Hat, Inc.
7 #
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21
22 import os
23 import iotests
24
25 class TestStopWithBlockJob(iotests.QMPTestCase):
26     test_img = os.path.join(iotests.test_dir, 'test.img')
27     target_img = os.path.join(iotests.test_dir, 'target.img')
28     base_img = os.path.join(iotests.test_dir, 'base.img')
29     overlay_img = os.path.join(iotests.test_dir, 'overlay.img')
30
31     def setUp(self):
32         iotests.qemu_img('create', '-f', iotests.imgfmt, self.base_img, "1G")
33         iotests.qemu_img('create', '-f', iotests.imgfmt, self.test_img,
34                          "-b", self.base_img, '-F', iotests.imgfmt)
35         iotests.qemu_io('-f', iotests.imgfmt, '-c', 'write -P0x5d 1M 128M',
36                         self.test_img)
37         self.vm = iotests.VM()
38         self.vm.add_object('throttle-group,id=tg0,x-bps-total=1024')
39
40         source_drive = 'driver=throttle,' \
41                        'node-name=source,' \
42                        'throttle-group=tg0,' \
43                        f'file.driver={iotests.imgfmt},' \
44                        f'file.file.filename={self.test_img}'
45
46         self.vm.add_drive(None, source_drive)
47         self.vm.launch()
48
49     def tearDown(self):
50         self.vm.shutdown()
51         for img in (self.test_img, self.target_img, self.base_img,
52                     self.overlay_img):
53             iotests.try_remove(img)
54
55     def do_test_stop(self, cmd, **args):
56         """Test 'stop' while block job is running on a throttled drive.
57         The 'stop' command shouldn't drain the job"""
58         result = self.vm.qmp(cmd, **args)
59         self.assert_qmp(result, 'return', {})
60
61         result = self.vm.qmp("stop")
62         self.assert_qmp(result, 'return', {})
63         result = self.vm.qmp("query-block-jobs")
64
65         self.assert_qmp(result, 'return[0]/status', 'running')
66         self.assert_qmp(result, 'return[0]/ready', False)
67
68     def test_drive_mirror(self):
69         self.do_test_stop("drive-mirror", device="drive0",
70                           target=self.target_img, format=iotests.imgfmt,
71                           sync="full", buf_size=65536)
72
73     def test_drive_backup(self):
74         self.do_test_stop("drive-backup", device="drive0",
75                           target=self.target_img, format=iotests.imgfmt,
76                           sync="full")
77
78     def test_block_commit(self):
79         # Add overlay above the source node so that we actually use a
80         # commit job instead of a mirror job
81
82         iotests.qemu_img('create', '-f', iotests.imgfmt, self.overlay_img,
83                          '1G')
84
85         result = self.vm.qmp('blockdev-add', **{
86                                  'node-name': 'overlay',
87                                  'driver': iotests.imgfmt,
88                                  'file': {
89                                      'driver': 'file',
90                                      'filename': self.overlay_img
91                                  }
92                              })
93         self.assert_qmp(result, 'return', {})
94
95         result = self.vm.qmp('blockdev-snapshot',
96                              node='source', overlay='overlay')
97         self.assert_qmp(result, 'return', {})
98
99         self.do_test_stop('block-commit', device='drive0', top_node='source')
100
101 if __name__ == '__main__':
102     iotests.main(supported_fmts=["qcow2"],
103                  supported_protocols=["file"])
This page took 0.020768 seconds and 2 git commands to generate.