当前位置: 首页>>代码示例>>Python>>正文


Python storage.Drive类代码示例

本文整理汇总了Python中virt.vmdevices.storage.Drive的典型用法代码示例。如果您正苦于以下问题:Python Drive类的具体用法?Python Drive怎么用?Python Drive使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了Drive类的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_migrate_from_block_to_file

 def test_migrate_from_block_to_file(self):
     conf = drive_config(path='/blockdomain/volume')
     drive = Drive({}, self.log, **conf)
     self.assertTrue(drive.blockDev)
     # Migrate drive to file domain...
     utils.isBlockDevice = lambda path: False
     drive.path = "/filedomain/volume"
     self.assertFalse(drive.blockDev)
开发者ID:Zealsathish,项目名称:vdsm,代码行数:8,代码来源:vmStorageTests.py

示例2: test_migrate_from_block_to_network

 def test_migrate_from_block_to_network(self):
     conf = drive_config(path='/blockdomain/volume')
     drive = Drive({}, self.log, **conf)
     self.assertTrue(drive.blockDev)
     # Migrate drive to netowrk (not sure we will support this)...
     drive.path = "rbd:pool/volume"
     drive.volumeInfo = {'volType': 'network'}
     self.assertFalse(drive.blockDev)
开发者ID:Zealsathish,项目名称:vdsm,代码行数:8,代码来源:vmStorageTests.py

示例3: test_migrate_network_to_block

 def test_migrate_network_to_block(self):
     conf = drive_config(diskType=DISK_TYPE.NETWORK, path='pool/volume')
     drive = Drive({}, self.log, **conf)
     self.assertTrue(drive.networkDev)
     # Migrate drive to block domain...
     drive.path = '/blockdomain/volume'
     drive.diskType = None
     self.assertTrue(drive.blockDev)
开发者ID:,项目名称:,代码行数:8,代码来源:

示例4: test_migrate_from_block_to_network

 def test_migrate_from_block_to_network(self):
     conf = drive_config(path='/blockdomain/volume')
     drive = Drive({}, self.log, **conf)
     self.assertTrue(drive.blockDev)
     # Migrate drive to network disk...
     drive.path = "pool/volume"
     drive.diskType = DISK_TYPE.NETWORK
     self.assertFalse(drive.blockDev)
开发者ID:,项目名称:,代码行数:8,代码来源:

示例5: check_leases

 def check_leases(self, conf):
     drive = Drive({}, self.log, **conf)
     leases = list(drive.getLeasesXML())
     self.assertEqual(1, len(leases))
     xml = """
     <lease>
         <key>vol_id</key>
         <lockspace>dom_id</lockspace>
         <target offset="0" path="path" />
     </lease>
     """
     self.assertXMLEqual(vmxml.format_xml(leases[0]), xml)
开发者ID:,项目名称:,代码行数:12,代码来源:

示例6: test_max_size

 def test_max_size(self):
     conf = drive_config(format='cow')
     drive = Drive({}, self.log, **conf)
     size = utils.round(self.CAPACITY * drive.VOLWM_COW_OVERHEAD,
                        constants.MEGAB)
     self.assertEqual(drive.getMaxVolumeSize(self.CAPACITY), size)
开发者ID:Zealsathish,项目名称:vdsm,代码行数:6,代码来源:vmStorageTests.py

示例7: test_next_size_limit

 def test_next_size_limit(self, cursize):
     conf = drive_config(format='cow')
     drive = Drive({}, self.log, **conf)
     self.assertEqual(drive.getNextVolumeSize(cursize, self.CAPACITY),
                      drive.getMaxVolumeSize(self.CAPACITY))
开发者ID:Zealsathish,项目名称:vdsm,代码行数:5,代码来源:vmStorageTests.py

示例8: test_next_size

 def test_next_size(self, cursize):
     conf = drive_config(format='cow')
     drive = Drive({}, self.log, **conf)
     self.assertEqual(drive.getNextVolumeSize(cursize, self.CAPACITY),
                      cursize + drive.volExtensionChunk)
开发者ID:Zealsathish,项目名称:vdsm,代码行数:5,代码来源:vmStorageTests.py

示例9: test_chunked

 def test_chunked(self, device, blockDev, format, chunked):
     conf = drive_config(device=device, format=format)
     drive = Drive({}, self.log, **conf)
     drive._blockDev = blockDev
     self.assertEqual(drive.chunked, chunked)
开发者ID:Zealsathish,项目名称:vdsm,代码行数:5,代码来源:vmStorageTests.py

示例10: check

 def check(self, vm_conf, device_conf, xml, is_block_device=False):
     drive = Drive(vm_conf, self.log, **device_conf)
     # Patch to skip the block device checking.
     drive._blockDev = is_block_device
     self.assertXMLEqual(drive.getReplicaXML().toxml(), xml)
开发者ID:Zealsathish,项目名称:vdsm,代码行数:5,代码来源:vmStorageTests.py

示例11: check_no_leases

 def check_no_leases(self, conf):
     drive = Drive({}, self.log, **conf)
     leases = list(drive.getLeasesXML())
     self.assertEqual([], leases)
开发者ID:,项目名称:,代码行数:4,代码来源:

示例12: test_replica

 def test_replica(self, diskType, format):
     conf = drive_config(diskReplicate=replica(diskType, format=format))
     drive = Drive({}, self.log, **conf)
     drive._blockDev = False
     self.assertEqual(drive.chunked, False)
开发者ID:,项目名称:,代码行数:5,代码来源:

示例13: check

 def check(self, vm_conf, device_conf, xml, is_block_device=False):
     drive = Drive(vm_conf, self.log, **device_conf)
     # Patch to skip the block device checking.
     if is_block_device is not None:
         drive._blockDev = is_block_device
     self.assertXMLEqual(vmxml.format_xml(drive.getXML()), xml)
开发者ID:,项目名称:,代码行数:6,代码来源:


注:本文中的virt.vmdevices.storage.Drive类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。