| 
									
										
										
										
											2020-01-30 17:32:23 +01:00
										 |  |  | #!/usr/bin/env python3 | 
					
						
							| 
									
										
										
										
											2015-01-30 10:49:46 +08:00
										 |  |  | # | 
					
						
							|  |  |  | # Tests for IO throttling | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Copyright (C) 2015 Red Hat, Inc. | 
					
						
							| 
									
										
										
										
											2016-02-18 12:27:07 +02:00
										 |  |  | # Copyright (C) 2015-2016 Igalia, S.L. | 
					
						
							| 
									
										
										
										
											2015-01-30 10:49:46 +08:00
										 |  |  | # | 
					
						
							|  |  |  | # This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  | # it under the terms of the GNU General Public License as published by | 
					
						
							|  |  |  | # the Free Software Foundation; either version 2 of the License, or | 
					
						
							|  |  |  | # (at your option) any later version. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  | # but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  | # GNU General Public License for more details. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  | # along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import iotests | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-18 12:27:07 +02:00
										 |  |  | nsec_per_sec = 1000000000 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-30 10:49:46 +08:00
										 |  |  | class ThrottleTestCase(iotests.QMPTestCase): | 
					
						
							| 
									
										
										
										
											2019-09-17 11:20:02 +02:00
										 |  |  |     test_driver = "null-aio" | 
					
						
							| 
									
										
										
										
											2015-06-08 18:17:48 +02:00
										 |  |  |     max_drives = 3 | 
					
						
							| 
									
										
										
										
											2015-01-30 10:49:46 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def blockstats(self, device): | 
					
						
							|  |  |  |         result = self.vm.qmp("query-blockstats") | 
					
						
							|  |  |  |         for r in result['return']: | 
					
						
							|  |  |  |             if r['device'] == device: | 
					
						
							|  |  |  |                 stat = r['stats'] | 
					
						
							|  |  |  |                 return stat['rd_bytes'], stat['rd_operations'], stat['wr_bytes'], stat['wr_operations'] | 
					
						
							|  |  |  |         raise Exception("Device not found for blockstats: %s" % device) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-17 11:20:02 +02:00
										 |  |  |     def required_drivers(self): | 
					
						
							|  |  |  |         return [self.test_driver] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @iotests.skip_if_unsupported(required_drivers) | 
					
						
							| 
									
										
										
										
											2015-01-30 10:49:46 +08:00
										 |  |  |     def setUp(self): | 
					
						
							| 
									
										
										
										
											2015-06-08 18:17:48 +02:00
										 |  |  |         self.vm = iotests.VM() | 
					
						
							|  |  |  |         for i in range(0, self.max_drives): | 
					
						
							| 
									
										
										
										
											2019-09-17 11:20:02 +02:00
										 |  |  |             self.vm.add_drive(self.test_driver + "://", "file.read-zeroes=on") | 
					
						
							| 
									
										
										
										
											2015-01-30 10:49:46 +08:00
										 |  |  |         self.vm.launch() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def tearDown(self): | 
					
						
							|  |  |  |         self.vm.shutdown() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-18 12:27:07 +02:00
										 |  |  |     def configure_throttle(self, ndrives, params): | 
					
						
							| 
									
										
										
										
											2015-06-08 18:17:48 +02:00
										 |  |  |         params['group'] = 'test' | 
					
						
							| 
									
										
										
										
											2015-01-30 10:49:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-08 18:17:48 +02:00
										 |  |  |         # Set the I/O throttling parameters to all drives | 
					
						
							|  |  |  |         for i in range(0, ndrives): | 
					
						
							|  |  |  |             params['device'] = 'drive%d' % i | 
					
						
							|  |  |  |             result = self.vm.qmp("block_set_io_throttle", conv_keys=False, **params) | 
					
						
							|  |  |  |             self.assert_qmp(result, 'return', {}) | 
					
						
							| 
									
										
										
										
											2015-01-30 10:49:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-17 18:46:03 +03:00
										 |  |  |     def do_test_throttle(self, ndrives, seconds, params, first_drive = 0): | 
					
						
							| 
									
										
										
										
											2016-02-18 12:27:07 +02:00
										 |  |  |         def check_limit(limit, num): | 
					
						
							|  |  |  |             # IO throttling algorithm is discrete, allow 10% error so the test | 
					
						
							|  |  |  |             # is more robust | 
					
						
							|  |  |  |             return limit == 0 or \ | 
					
						
							|  |  |  |                    (num < seconds * limit * 1.1 / ndrives | 
					
						
							|  |  |  |                    and num > seconds * limit * 0.9 / ndrives) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-30 10:49:46 +08:00
										 |  |  |         # Set vm clock to a known value | 
					
						
							|  |  |  |         ns = seconds * nsec_per_sec | 
					
						
							|  |  |  |         self.vm.qtest("clock_step %d" % ns) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-18 12:27:07 +02:00
										 |  |  |         # Submit enough requests so the throttling mechanism kicks | 
					
						
							|  |  |  |         # in. The throttled requests won't be executed until we | 
					
						
							|  |  |  |         # advance the virtual clock. | 
					
						
							| 
									
										
										
										
											2015-01-30 10:49:46 +08:00
										 |  |  |         rq_size = 512 | 
					
						
							| 
									
										
										
										
											2018-10-22 14:53:02 +01:00
										 |  |  |         rd_nr = max(params['bps'] // rq_size // 2, | 
					
						
							|  |  |  |                     params['bps_rd'] // rq_size, | 
					
						
							|  |  |  |                     params['iops'] // 2, | 
					
						
							| 
									
										
										
										
											2015-01-30 10:49:46 +08:00
										 |  |  |                     params['iops_rd']) | 
					
						
							|  |  |  |         rd_nr *= seconds * 2 | 
					
						
							| 
									
										
										
										
											2018-10-22 14:53:02 +01:00
										 |  |  |         rd_nr //= ndrives | 
					
						
							|  |  |  |         wr_nr = max(params['bps'] // rq_size // 2, | 
					
						
							|  |  |  |                     params['bps_wr'] // rq_size, | 
					
						
							|  |  |  |                     params['iops'] // 2, | 
					
						
							| 
									
										
										
										
											2015-01-30 10:49:46 +08:00
										 |  |  |                     params['iops_wr']) | 
					
						
							|  |  |  |         wr_nr *= seconds * 2 | 
					
						
							| 
									
										
										
										
											2018-10-22 14:53:02 +01:00
										 |  |  |         wr_nr //= ndrives | 
					
						
							| 
									
										
										
										
											2015-06-08 18:17:48 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # Send I/O requests to all drives | 
					
						
							| 
									
										
										
										
											2015-01-30 10:49:46 +08:00
										 |  |  |         for i in range(rd_nr): | 
					
						
							| 
									
										
										
										
											2015-06-08 18:17:48 +02:00
										 |  |  |             for drive in range(0, ndrives): | 
					
						
							| 
									
										
										
										
											2016-10-17 18:46:03 +03:00
										 |  |  |                 idx = first_drive + drive | 
					
						
							|  |  |  |                 self.vm.hmp_qemu_io("drive%d" % idx, "aio_read %d %d" % | 
					
						
							| 
									
										
										
										
											2015-06-08 18:17:48 +02:00
										 |  |  |                                     (i * rq_size, rq_size)) | 
					
						
							| 
									
										
										
										
											2015-01-30 10:49:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-08 18:17:48 +02:00
										 |  |  |         for i in range(wr_nr): | 
					
						
							|  |  |  |             for drive in range(0, ndrives): | 
					
						
							| 
									
										
										
										
											2016-10-17 18:46:03 +03:00
										 |  |  |                 idx = first_drive + drive | 
					
						
							|  |  |  |                 self.vm.hmp_qemu_io("drive%d" % idx, "aio_write %d %d" % | 
					
						
							| 
									
										
										
										
											2015-06-08 18:17:48 +02:00
										 |  |  |                                     (i * rq_size, rq_size)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # We'll store the I/O stats for each drive in these arrays | 
					
						
							|  |  |  |         start_rd_bytes = [0] * ndrives | 
					
						
							|  |  |  |         start_rd_iops  = [0] * ndrives | 
					
						
							|  |  |  |         start_wr_bytes = [0] * ndrives | 
					
						
							|  |  |  |         start_wr_iops  = [0] * ndrives | 
					
						
							|  |  |  |         end_rd_bytes   = [0] * ndrives | 
					
						
							|  |  |  |         end_rd_iops    = [0] * ndrives | 
					
						
							|  |  |  |         end_wr_bytes   = [0] * ndrives | 
					
						
							|  |  |  |         end_wr_iops    = [0] * ndrives | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Read the stats before advancing the clock | 
					
						
							|  |  |  |         for i in range(0, ndrives): | 
					
						
							| 
									
										
										
										
											2016-10-17 18:46:03 +03:00
										 |  |  |             idx = first_drive + i | 
					
						
							| 
									
										
										
										
											2015-06-08 18:17:48 +02:00
										 |  |  |             start_rd_bytes[i], start_rd_iops[i], start_wr_bytes[i], \ | 
					
						
							| 
									
										
										
										
											2016-10-17 18:46:03 +03:00
										 |  |  |                 start_wr_iops[i] = self.blockstats('drive%d' % idx) | 
					
						
							| 
									
										
										
										
											2015-01-30 10:49:46 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         self.vm.qtest("clock_step %d" % ns) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-08 18:17:48 +02:00
										 |  |  |         # Read the stats after advancing the clock | 
					
						
							|  |  |  |         for i in range(0, ndrives): | 
					
						
							| 
									
										
										
										
											2016-10-17 18:46:03 +03:00
										 |  |  |             idx = first_drive + i | 
					
						
							| 
									
										
										
										
											2015-06-08 18:17:48 +02:00
										 |  |  |             end_rd_bytes[i], end_rd_iops[i], end_wr_bytes[i], \ | 
					
						
							| 
									
										
										
										
											2016-10-17 18:46:03 +03:00
										 |  |  |                 end_wr_iops[i] = self.blockstats('drive%d' % idx) | 
					
						
							| 
									
										
										
										
											2015-06-08 18:17:48 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # Check that the I/O is within the limits and evenly distributed | 
					
						
							|  |  |  |         for i in range(0, ndrives): | 
					
						
							|  |  |  |             rd_bytes = end_rd_bytes[i] - start_rd_bytes[i] | 
					
						
							|  |  |  |             rd_iops = end_rd_iops[i] - start_rd_iops[i] | 
					
						
							|  |  |  |             wr_bytes = end_wr_bytes[i] - start_wr_bytes[i] | 
					
						
							|  |  |  |             wr_iops = end_wr_iops[i] - start_wr_iops[i] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             self.assertTrue(check_limit(params['bps'], rd_bytes + wr_bytes)) | 
					
						
							|  |  |  |             self.assertTrue(check_limit(params['bps_rd'], rd_bytes)) | 
					
						
							|  |  |  |             self.assertTrue(check_limit(params['bps_wr'], wr_bytes)) | 
					
						
							|  |  |  |             self.assertTrue(check_limit(params['iops'], rd_iops + wr_iops)) | 
					
						
							|  |  |  |             self.assertTrue(check_limit(params['iops_rd'], rd_iops)) | 
					
						
							|  |  |  |             self.assertTrue(check_limit(params['iops_wr'], wr_iops)) | 
					
						
							| 
									
										
										
										
											2015-01-30 10:49:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-15 14:05:02 +01:00
										 |  |  |         # Allow remaining requests to finish.  We submitted twice as many to | 
					
						
							|  |  |  |         # ensure the throttle limit is reached. | 
					
						
							|  |  |  |         self.vm.qtest("clock_step %d" % ns) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-17 18:46:03 +03:00
										 |  |  |     # Connect N drives to a VM and test I/O in all of them | 
					
						
							| 
									
										
										
										
											2015-01-30 10:49:46 +08:00
										 |  |  |     def test_all(self): | 
					
						
							|  |  |  |         params = {"bps": 4096, | 
					
						
							|  |  |  |                   "bps_rd": 4096, | 
					
						
							|  |  |  |                   "bps_wr": 4096, | 
					
						
							|  |  |  |                   "iops": 10, | 
					
						
							|  |  |  |                   "iops_rd": 10, | 
					
						
							|  |  |  |                   "iops_wr": 10, | 
					
						
							|  |  |  |                  } | 
					
						
							| 
									
										
										
										
											2015-06-08 18:17:48 +02:00
										 |  |  |         # Repeat the test with different numbers of drives | 
					
						
							|  |  |  |         for ndrives in range(1, self.max_drives + 1): | 
					
						
							|  |  |  |             # Pick each out of all possible params and test | 
					
						
							|  |  |  |             for tk in params: | 
					
						
							|  |  |  |                 limits = dict([(k, 0) for k in params]) | 
					
						
							|  |  |  |                 limits[tk] = params[tk] * ndrives | 
					
						
							| 
									
										
										
										
											2016-02-18 12:27:07 +02:00
										 |  |  |                 self.configure_throttle(ndrives, limits) | 
					
						
							| 
									
										
										
										
											2015-06-08 18:17:48 +02:00
										 |  |  |                 self.do_test_throttle(ndrives, 5, limits) | 
					
						
							| 
									
										
										
										
											2015-01-30 10:49:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-17 18:46:03 +03:00
										 |  |  |     # Connect N drives to a VM and test I/O in just one of them a time | 
					
						
							|  |  |  |     def test_one(self): | 
					
						
							|  |  |  |         params = {"bps": 4096, | 
					
						
							|  |  |  |                   "bps_rd": 4096, | 
					
						
							|  |  |  |                   "bps_wr": 4096, | 
					
						
							|  |  |  |                   "iops": 10, | 
					
						
							|  |  |  |                   "iops_rd": 10, | 
					
						
							|  |  |  |                   "iops_wr": 10, | 
					
						
							|  |  |  |                  } | 
					
						
							|  |  |  |         # Repeat the test for each one of the drives | 
					
						
							|  |  |  |         for drive in range(0, self.max_drives): | 
					
						
							|  |  |  |             # Pick each out of all possible params and test | 
					
						
							|  |  |  |             for tk in params: | 
					
						
							|  |  |  |                 limits = dict([(k, 0) for k in params]) | 
					
						
							|  |  |  |                 limits[tk] = params[tk] * self.max_drives | 
					
						
							|  |  |  |                 self.configure_throttle(self.max_drives, limits) | 
					
						
							|  |  |  |                 self.do_test_throttle(1, 5, limits, drive) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-18 12:27:07 +02:00
										 |  |  |     def test_burst(self): | 
					
						
							|  |  |  |         params = {"bps": 4096, | 
					
						
							|  |  |  |                   "bps_rd": 4096, | 
					
						
							|  |  |  |                   "bps_wr": 4096, | 
					
						
							|  |  |  |                   "iops": 10, | 
					
						
							|  |  |  |                   "iops_rd": 10, | 
					
						
							|  |  |  |                   "iops_wr": 10, | 
					
						
							|  |  |  |                  } | 
					
						
							|  |  |  |         ndrives = 1 | 
					
						
							|  |  |  |         # Pick each out of all possible params and test | 
					
						
							|  |  |  |         for tk in params: | 
					
						
							|  |  |  |             rate = params[tk] * ndrives | 
					
						
							|  |  |  |             burst_rate = rate * 7 | 
					
						
							|  |  |  |             burst_length = 4 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             # Configure the throttling settings | 
					
						
							|  |  |  |             settings = dict([(k, 0) for k in params]) | 
					
						
							|  |  |  |             settings[tk] = rate | 
					
						
							|  |  |  |             settings['%s_max' % tk] = burst_rate | 
					
						
							|  |  |  |             settings['%s_max_length' % tk] = burst_length | 
					
						
							|  |  |  |             self.configure_throttle(ndrives, settings) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             # Wait for the bucket to empty so we can do bursts | 
					
						
							| 
									
										
										
										
											2018-10-22 14:53:02 +01:00
										 |  |  |             wait_ns = nsec_per_sec * burst_length * burst_rate // rate | 
					
						
							| 
									
										
										
										
											2016-02-18 12:27:07 +02:00
										 |  |  |             self.vm.qtest("clock_step %d" % wait_ns) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             # Test I/O at the max burst rate | 
					
						
							|  |  |  |             limits = dict([(k, 0) for k in params]) | 
					
						
							|  |  |  |             limits[tk] = burst_rate | 
					
						
							|  |  |  |             self.do_test_throttle(ndrives, burst_length, limits) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             # Now test I/O at the normal rate | 
					
						
							|  |  |  |             limits[tk] = rate | 
					
						
							|  |  |  |             self.do_test_throttle(ndrives, 5, limits) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-02 17:50:23 +03:00
										 |  |  |     # Test that removing a drive from a throttle group should not | 
					
						
							|  |  |  |     # affect the remaining members of the group. | 
					
						
							|  |  |  |     # https://bugzilla.redhat.com/show_bug.cgi?id=1535914 | 
					
						
							|  |  |  |     def test_remove_group_member(self): | 
					
						
							|  |  |  |         # Create a throttle group with two drives | 
					
						
							|  |  |  |         # and set a 4 KB/s read limit. | 
					
						
							|  |  |  |         params = {"bps": 0, | 
					
						
							|  |  |  |                   "bps_rd": 4096, | 
					
						
							|  |  |  |                   "bps_wr": 0, | 
					
						
							|  |  |  |                   "iops": 0, | 
					
						
							|  |  |  |                   "iops_rd": 0, | 
					
						
							|  |  |  |                   "iops_wr": 0 } | 
					
						
							|  |  |  |         self.configure_throttle(2, params) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Read 4KB from drive0. This is performed immediately. | 
					
						
							|  |  |  |         self.vm.hmp_qemu_io("drive0", "aio_read 0 4096") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-02 17:50:25 +03:00
										 |  |  |         # Read 2KB. The I/O limit has been exceeded so this | 
					
						
							| 
									
										
										
										
											2018-08-02 17:50:23 +03:00
										 |  |  |         # request is throttled and a timer is set to wake it up. | 
					
						
							| 
									
										
										
										
											2018-08-02 17:50:25 +03:00
										 |  |  |         self.vm.hmp_qemu_io("drive0", "aio_read 0 2048") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Read 2KB again. We're still over the I/O limit so this is | 
					
						
							|  |  |  |         # request is also throttled, but no new timer is set since | 
					
						
							|  |  |  |         # there's already one. | 
					
						
							|  |  |  |         self.vm.hmp_qemu_io("drive0", "aio_read 0 2048") | 
					
						
							| 
									
										
										
										
											2018-08-02 17:50:23 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-02 17:50:25 +03:00
										 |  |  |         # Read from drive1. This request is also throttled, and no | 
					
						
							|  |  |  |         # timer is set in drive1 because there's already one in | 
					
						
							|  |  |  |         # drive0. | 
					
						
							| 
									
										
										
										
											2018-08-02 17:50:23 +03:00
										 |  |  |         self.vm.hmp_qemu_io("drive1", "aio_read 0 4096") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # At this point only the first 4KB have been read from drive0. | 
					
						
							|  |  |  |         # The other requests are throttled. | 
					
						
							|  |  |  |         self.assertEqual(self.blockstats('drive0')[0], 4096) | 
					
						
							|  |  |  |         self.assertEqual(self.blockstats('drive1')[0], 0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Remove drive0 from the throttle group and disable its I/O limits. | 
					
						
							|  |  |  |         # drive1 remains in the group with a throttled request. | 
					
						
							|  |  |  |         params['bps_rd'] = 0 | 
					
						
							|  |  |  |         params['device'] = 'drive0' | 
					
						
							|  |  |  |         result = self.vm.qmp("block_set_io_throttle", conv_keys=False, **params) | 
					
						
							|  |  |  |         self.assert_qmp(result, 'return', {}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-02 17:50:25 +03:00
										 |  |  |         # Removing the I/O limits from drive0 drains its two pending requests. | 
					
						
							| 
									
										
										
										
											2018-08-02 17:50:23 +03:00
										 |  |  |         # The read request in drive1 is still throttled. | 
					
						
							|  |  |  |         self.assertEqual(self.blockstats('drive0')[0], 8192) | 
					
						
							|  |  |  |         self.assertEqual(self.blockstats('drive1')[0], 0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Advance the clock 5 seconds. This completes the request in drive1 | 
					
						
							|  |  |  |         self.vm.qtest("clock_step %d" % (5 * nsec_per_sec)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Now all requests have been processed. | 
					
						
							|  |  |  |         self.assertEqual(self.blockstats('drive0')[0], 8192) | 
					
						
							|  |  |  |         self.assertEqual(self.blockstats('drive1')[0], 4096) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-30 10:49:46 +08:00
										 |  |  | class ThrottleTestCoroutine(ThrottleTestCase): | 
					
						
							| 
									
										
										
										
											2019-09-17 11:20:02 +02:00
										 |  |  |     test_driver = "null-co" | 
					
						
							| 
									
										
										
										
											2015-01-30 10:49:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-08 17:03:01 +03:00
										 |  |  | class ThrottleTestGroupNames(iotests.QMPTestCase): | 
					
						
							|  |  |  |     max_drives = 3 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def setUp(self): | 
					
						
							|  |  |  |         self.vm = iotests.VM() | 
					
						
							|  |  |  |         for i in range(0, self.max_drives): | 
					
						
							| 
									
										
										
										
											2019-09-17 11:19:58 +02:00
										 |  |  |             self.vm.add_drive("null-co://", | 
					
						
							| 
									
										
										
										
											2019-07-15 19:07:59 +03:00
										 |  |  |                               "throttling.iops-total=100,file.read-zeroes=on") | 
					
						
							| 
									
										
										
										
											2016-07-08 17:03:01 +03:00
										 |  |  |         self.vm.launch() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def tearDown(self): | 
					
						
							|  |  |  |         self.vm.shutdown() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def set_io_throttle(self, device, params): | 
					
						
							|  |  |  |         params["device"] = device | 
					
						
							|  |  |  |         result = self.vm.qmp("block_set_io_throttle", conv_keys=False, **params) | 
					
						
							|  |  |  |         self.assert_qmp(result, 'return', {}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def verify_name(self, device, name): | 
					
						
							|  |  |  |         result = self.vm.qmp("query-block") | 
					
						
							|  |  |  |         for r in result["return"]: | 
					
						
							|  |  |  |             if r["device"] == device: | 
					
						
							|  |  |  |                 info = r["inserted"] | 
					
						
							|  |  |  |                 if name: | 
					
						
							|  |  |  |                     self.assertEqual(info["group"], name) | 
					
						
							|  |  |  |                 else: | 
					
						
							| 
									
										
										
										
											2018-06-08 09:29:46 -03:00
										 |  |  |                     self.assertFalse('group' in info) | 
					
						
							| 
									
										
										
										
											2016-07-08 17:03:01 +03:00
										 |  |  |                 return | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         raise Exception("No group information found for '%s'" % device) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_group_naming(self): | 
					
						
							|  |  |  |         params = {"bps": 0, | 
					
						
							|  |  |  |                   "bps_rd": 0, | 
					
						
							|  |  |  |                   "bps_wr": 0, | 
					
						
							|  |  |  |                   "iops": 0, | 
					
						
							|  |  |  |                   "iops_rd": 0, | 
					
						
							|  |  |  |                   "iops_wr": 0} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Check the drives added using the command line. | 
					
						
							|  |  |  |         # The default throttling group name is the device name. | 
					
						
							|  |  |  |         for i in range(self.max_drives): | 
					
						
							|  |  |  |             devname = "drive%d" % i | 
					
						
							|  |  |  |             self.verify_name(devname, devname) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Clear throttling settings => the group name is gone. | 
					
						
							|  |  |  |         for i in range(self.max_drives): | 
					
						
							|  |  |  |             devname = "drive%d" % i | 
					
						
							|  |  |  |             self.set_io_throttle(devname, params) | 
					
						
							|  |  |  |             self.verify_name(devname, None) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Set throttling settings using block_set_io_throttle and | 
					
						
							|  |  |  |         # check the default group names. | 
					
						
							|  |  |  |         params["iops"] = 10 | 
					
						
							|  |  |  |         for i in range(self.max_drives): | 
					
						
							|  |  |  |             devname = "drive%d" % i | 
					
						
							|  |  |  |             self.set_io_throttle(devname, params) | 
					
						
							|  |  |  |             self.verify_name(devname, devname) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Set a custom group name for each device | 
					
						
							|  |  |  |         for i in range(3): | 
					
						
							|  |  |  |             devname = "drive%d" % i | 
					
						
							|  |  |  |             groupname = "group%d" % i | 
					
						
							|  |  |  |             params['group'] = groupname | 
					
						
							|  |  |  |             self.set_io_throttle(devname, params) | 
					
						
							|  |  |  |             self.verify_name(devname, groupname) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Put drive0 in group1 and check that all other devices remain | 
					
						
							|  |  |  |         # unchanged | 
					
						
							|  |  |  |         params['group'] = 'group1' | 
					
						
							|  |  |  |         self.set_io_throttle('drive0', params) | 
					
						
							|  |  |  |         self.verify_name('drive0', 'group1') | 
					
						
							|  |  |  |         for i in range(1, self.max_drives): | 
					
						
							|  |  |  |             devname = "drive%d" % i | 
					
						
							|  |  |  |             groupname = "group%d" % i | 
					
						
							|  |  |  |             self.verify_name(devname, groupname) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Put drive0 in group2 and check that all other devices remain | 
					
						
							|  |  |  |         # unchanged | 
					
						
							|  |  |  |         params['group'] = 'group2' | 
					
						
							|  |  |  |         self.set_io_throttle('drive0', params) | 
					
						
							|  |  |  |         self.verify_name('drive0', 'group2') | 
					
						
							|  |  |  |         for i in range(1, self.max_drives): | 
					
						
							|  |  |  |             devname = "drive%d" % i | 
					
						
							|  |  |  |             groupname = "group%d" % i | 
					
						
							|  |  |  |             self.verify_name(devname, groupname) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Clear throttling settings from drive0 check that all other | 
					
						
							|  |  |  |         # devices remain unchanged | 
					
						
							|  |  |  |         params["iops"] = 0 | 
					
						
							|  |  |  |         self.set_io_throttle('drive0', params) | 
					
						
							|  |  |  |         self.verify_name('drive0', None) | 
					
						
							|  |  |  |         for i in range(1, self.max_drives): | 
					
						
							|  |  |  |             devname = "drive%d" % i | 
					
						
							|  |  |  |             groupname = "group%d" % i | 
					
						
							|  |  |  |             self.verify_name(devname, groupname) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-10 20:54:48 +02:00
										 |  |  | class ThrottleTestRemovableMedia(iotests.QMPTestCase): | 
					
						
							|  |  |  |     def setUp(self): | 
					
						
							|  |  |  |         self.vm = iotests.VM() | 
					
						
							| 
									
										
										
										
											2019-07-29 16:35:54 -04:00
										 |  |  |         self.vm.add_device("{},id=virtio-scsi".format( | 
					
						
							|  |  |  |             iotests.get_virtio_scsi_device())) | 
					
						
							| 
									
										
										
										
											2017-11-10 20:54:48 +02:00
										 |  |  |         self.vm.launch() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def tearDown(self): | 
					
						
							|  |  |  |         self.vm.shutdown() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_removable_media(self): | 
					
						
							|  |  |  |         # Add a couple of dummy nodes named cd0 and cd1 | 
					
						
							| 
									
										
										
										
											2019-09-17 11:19:58 +02:00
										 |  |  |         result = self.vm.qmp("blockdev-add", driver="null-co", | 
					
						
							| 
									
										
										
										
											2019-07-15 19:07:59 +03:00
										 |  |  |                              read_zeroes=True, node_name="cd0") | 
					
						
							| 
									
										
										
										
											2017-11-10 20:54:48 +02:00
										 |  |  |         self.assert_qmp(result, 'return', {}) | 
					
						
							| 
									
										
										
										
											2019-09-17 11:19:58 +02:00
										 |  |  |         result = self.vm.qmp("blockdev-add", driver="null-co", | 
					
						
							| 
									
										
										
										
											2019-07-15 19:07:59 +03:00
										 |  |  |                              read_zeroes=True, node_name="cd1") | 
					
						
							| 
									
										
										
										
											2017-11-10 20:54:48 +02:00
										 |  |  |         self.assert_qmp(result, 'return', {}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Attach a CD drive with cd0 inserted | 
					
						
							|  |  |  |         result = self.vm.qmp("device_add", driver="scsi-cd", | 
					
						
							|  |  |  |                              id="dev0", drive="cd0") | 
					
						
							|  |  |  |         self.assert_qmp(result, 'return', {}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Set I/O limits | 
					
						
							|  |  |  |         args = { "id": "dev0", "iops": 100, "iops_rd": 0, "iops_wr": 0, | 
					
						
							|  |  |  |                                 "bps":  50,  "bps_rd": 0,  "bps_wr": 0 } | 
					
						
							|  |  |  |         result = self.vm.qmp("block_set_io_throttle", conv_keys=False, **args) | 
					
						
							|  |  |  |         self.assert_qmp(result, 'return', {}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Check that the I/O limits have been set | 
					
						
							|  |  |  |         result = self.vm.qmp("query-block") | 
					
						
							|  |  |  |         self.assert_qmp(result, 'return[0]/inserted/iops', 100) | 
					
						
							|  |  |  |         self.assert_qmp(result, 'return[0]/inserted/bps',   50) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Now eject cd0 and insert cd1 | 
					
						
							|  |  |  |         result = self.vm.qmp("blockdev-open-tray", id='dev0') | 
					
						
							|  |  |  |         self.assert_qmp(result, 'return', {}) | 
					
						
							| 
									
										
										
										
											2017-11-10 23:43:02 +01:00
										 |  |  |         result = self.vm.qmp("blockdev-remove-medium", id='dev0') | 
					
						
							| 
									
										
										
										
											2017-11-10 20:54:48 +02:00
										 |  |  |         self.assert_qmp(result, 'return', {}) | 
					
						
							| 
									
										
										
										
											2017-11-10 23:43:02 +01:00
										 |  |  |         result = self.vm.qmp("blockdev-insert-medium", id='dev0', node_name='cd1') | 
					
						
							| 
									
										
										
										
											2017-11-10 20:54:48 +02:00
										 |  |  |         self.assert_qmp(result, 'return', {}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Check that the I/O limits are still the same | 
					
						
							|  |  |  |         result = self.vm.qmp("query-block") | 
					
						
							|  |  |  |         self.assert_qmp(result, 'return[0]/inserted/iops', 100) | 
					
						
							|  |  |  |         self.assert_qmp(result, 'return[0]/inserted/bps',   50) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Eject cd1 | 
					
						
							| 
									
										
										
										
											2017-11-10 23:43:02 +01:00
										 |  |  |         result = self.vm.qmp("blockdev-remove-medium", id='dev0') | 
					
						
							| 
									
										
										
										
											2017-11-10 20:54:48 +02:00
										 |  |  |         self.assert_qmp(result, 'return', {}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Check that we can't set limits if the device has no medium | 
					
						
							|  |  |  |         result = self.vm.qmp("block_set_io_throttle", conv_keys=False, **args) | 
					
						
							|  |  |  |         self.assert_qmp(result, 'error/class', 'GenericError') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Remove the CD drive | 
					
						
							|  |  |  |         result = self.vm.qmp("device_del", id='dev0') | 
					
						
							|  |  |  |         self.assert_qmp(result, 'return', {}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-08 17:03:01 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-30 10:49:46 +08:00
										 |  |  | if __name__ == '__main__': | 
					
						
							| 
									
										
										
										
											2019-09-17 11:20:02 +02:00
										 |  |  |     if 'null-co' not in iotests.supported_formats(): | 
					
						
							|  |  |  |         iotests.notrun('null-co driver support missing') | 
					
						
							| 
									
										
										
										
											2015-01-30 10:49:46 +08:00
										 |  |  |     iotests.main(supported_fmts=["raw"]) |