コード例 #1
0
ファイル: vmstorage_test.py プロジェクト: nirs/vdsm
 def test_need_replica_chunked_threshold_unset(self):
     conf = drive_config(diskType=DISK_TYPE.FILE, format="cow")
     drive = Drive(self.log, **conf)
     drive.diskReplicate = replica(DISK_TYPE.BLOCK, format="cow")
     self.assertTrue(drive.needs_monitoring(events_enabled=True))
コード例 #2
0
ファイル: vmstorage_test.py プロジェクト: nirs/vdsm
 def test_need_replica_chunked_threshold_exceeded(self):
     conf = drive_config(diskType=DISK_TYPE.FILE, format="cow")
     drive = Drive(self.log, **conf)
     drive.diskReplicate = replica(DISK_TYPE.BLOCK, format="cow")
     drive.threshold_state = BLOCK_THRESHOLD.EXCEEDED
     self.assertTrue(drive.needs_monitoring(events_enabled=True))
コード例 #3
0
ファイル: vmstorage_test.py プロジェクト: nirs/vdsm
 def test_no_need_replica_not_chunked(self):
     conf = drive_config(diskType=DISK_TYPE.FILE, format="cow")
     drive = Drive(self.log, **conf)
     drive.diskReplicate = replica(DISK_TYPE.FILE, format="cow")
     self.assertFalse(drive.needs_monitoring(events_enabled=False))
コード例 #4
0
ファイル: vmstorage_test.py プロジェクト: guozhonghua216/vdsm
 def test_need_replica_chunked_threshold_exceeded(self):
     conf = drive_config(diskType=DISK_TYPE.FILE, format="cow")
     drive = Drive(self.log, **conf)
     drive.diskReplicate = replica(DISK_TYPE.BLOCK, format="cow")
     drive.threshold_state = BLOCK_THRESHOLD.EXCEEDED
     assert drive.needs_monitoring(events_enabled=True)
コード例 #5
0
ファイル: vmstorage_test.py プロジェクト: guozhonghua216/vdsm
 def test_need_replica_chunked_threshold_unset(self):
     conf = drive_config(diskType=DISK_TYPE.FILE, format="cow")
     drive = Drive(self.log, **conf)
     drive.diskReplicate = replica(DISK_TYPE.BLOCK, format="cow")
     assert drive.needs_monitoring(events_enabled=True)
コード例 #6
0
ファイル: vmstorage_test.py プロジェクト: guozhonghua216/vdsm
 def test_no_need_replica_not_chunked(self):
     conf = drive_config(diskType=DISK_TYPE.FILE, format="cow")
     drive = Drive(self.log, **conf)
     drive.diskReplicate = replica(DISK_TYPE.FILE, format="cow")
     assert not drive.needs_monitoring(events_enabled=False)
コード例 #7
0
 def test_no_need_replica_chunked_threshold_set(self):
     conf = drive_config(diskType=DISK_TYPE.FILE, format="cow")
     drive = Drive(self.log, **conf)
     drive.diskReplicate = replica(DISK_TYPE.BLOCK, format="cow")
     drive.threshold_state = BLOCK_THRESHOLD.SET
     assert not drive.needs_monitoring()