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


Python Drive.path方法代码示例

本文整理汇总了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)
开发者ID:nirs,项目名称:vdsm,代码行数:9,代码来源:vmstorage_test.py

示例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)
开发者ID:nirs,项目名称:vdsm,代码行数:9,代码来源:vmstorage_test.py

示例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)
开发者ID:nirs,项目名称:vdsm,代码行数:9,代码来源:vmstorage_test.py

示例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)
开发者ID:nirs,项目名称:vdsm,代码行数:10,代码来源:vmstorage_test.py

示例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)
开发者ID:EdDev,项目名称:vdsm,代码行数:10,代码来源:vmstorage_test.py

示例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)
开发者ID:EdDev,项目名称:vdsm,代码行数:10,代码来源:vmstorage_test.py

示例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)
开发者ID:EdDev,项目名称:vdsm,代码行数:10,代码来源:vmstorage_test.py


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