本文整理汇总了Python中vdsm.virt.vmdevices.storage.Drive.path方法的典型用法代码示例。如果您正苦于以下问题:Python Drive.path方法的具体用法?Python Drive.path怎么用?Python Drive.path使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类vdsm.virt.vmdevices.storage.Drive
的用法示例。
在下文中一共展示了Drive.path方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_migrate_network_to_block
# 需要导入模块: from vdsm.virt.vmdevices.storage import Drive [as 别名]
# 或者: from vdsm.virt.vmdevices.storage.Drive import path [as 别名]
def test_migrate_network_to_block(self):
conf = drive_config(diskType=DISK_TYPE.NETWORK, path='pool/volume')
drive = Drive(self.log, **conf)
# Migrate drive to block domain...
drive.path = '/blockdomain/volume'
drive.diskType = DISK_TYPE.BLOCK
self.assertEqual(DISK_TYPE.BLOCK, drive.diskType)
示例2: test_migrate_from_block_to_network
# 需要导入模块: from vdsm.virt.vmdevices.storage import Drive [as 别名]
# 或者: from vdsm.virt.vmdevices.storage.Drive import path [as 别名]
def test_migrate_from_block_to_network(self):
conf = drive_config(path='/blockdomain/volume')
drive = Drive(self.log, diskType=DISK_TYPE.BLOCK, **conf)
# Migrate drive to network disk...
drive.path = "pool/volume"
drive.diskType = DISK_TYPE.NETWORK
self.assertEqual(DISK_TYPE.NETWORK, drive.diskType)
示例3: test_migrate_from_block_to_file
# 需要导入模块: from vdsm.virt.vmdevices.storage import Drive [as 别名]
# 或者: from vdsm.virt.vmdevices.storage.Drive import path [as 别名]
def test_migrate_from_block_to_file(self):
conf = drive_config(path='/blockdomain/volume')
drive = Drive(self.log, diskType=DISK_TYPE.BLOCK, **conf)
# Migrate drive to file domain...
drive.diskType = DISK_TYPE.FILE
drive.path = "/filedomain/volume"
self.assertEqual(DISK_TYPE.FILE, drive.diskType)
示例4: test_path_change_reset_threshold_state
# 需要导入模块: from vdsm.virt.vmdevices.storage import Drive [as 别名]
# 或者: from vdsm.virt.vmdevices.storage.Drive import path [as 别名]
def test_path_change_reset_threshold_state(self):
conf = drive_config(diskType=DISK_TYPE.BLOCK, path='/old/path')
drive = Drive(self.log, **conf)
# Simulating drive in SET state
drive.threshold_state = BLOCK_THRESHOLD.SET
drive.path = '/new/path'
self.assertEqual(drive.threshold_state, BLOCK_THRESHOLD.UNSET)
示例5: test_migrate_network_to_block
# 需要导入模块: from vdsm.virt.vmdevices.storage import Drive [as 别名]
# 或者: from vdsm.virt.vmdevices.storage.Drive import path [as 别名]
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)
示例6: test_migrate_from_block_to_network
# 需要导入模块: from vdsm.virt.vmdevices.storage import Drive [as 别名]
# 或者: from vdsm.virt.vmdevices.storage.Drive import path [as 别名]
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)
示例7: test_migrate_from_block_to_file
# 需要导入模块: from vdsm.virt.vmdevices.storage import Drive [as 别名]
# 或者: from vdsm.virt.vmdevices.storage.Drive import path [as 别名]
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)