コード例 #1
0
ファイル: samplingTests.py プロジェクト: HongweiBi/vdsm
 def testBootTimeMalformed(self):
     with MonkeyPatchScope([(sampling, '_PROC_STAT_PATH',
                             self._malformed_path)]):
         with self.assertRaises(ValueError):
             sampling.getBootTime()
コード例 #2
0
ファイル: samplingTests.py プロジェクト: HongweiBi/vdsm
 def testBootTimeOk(self):
     with MonkeyPatchScope([(sampling, '_PROC_STAT_PATH',
                             self._good_path)]):
         self.assertEquals(sampling.getBootTime(),
                           1395249141)
コード例 #3
0
ファイル: samplingTests.py プロジェクト: HongweiBi/vdsm
 def testBootTimeEmpty(self):
     with MonkeyPatchScope([(sampling, '_PROC_STAT_PATH',
                             '/dev/null')]):
         with self.assertRaises(ValueError):
             sampling.getBootTime()
コード例 #4
0
ファイル: samplingTests.py プロジェクト: HongweiBi/vdsm
 def testBootTimeNonExistantFile(self):
     with MonkeyPatchScope([(sampling, '_PROC_STAT_PATH',
                             '/i/do/not/exist/1234567890')]):
         with self.assertRaises(IOError):
             sampling.getBootTime()
コード例 #5
0
ファイル: samplingTests.py プロジェクト: kripper/vdsm
 def testBootTimeMalformed(self):
     with MonkeyPatchScope([(sampling, '_PROC_STAT_PATH',
                             self._malformed_path)]):
         with self.assertRaises(ValueError):
             sampling.getBootTime()
コード例 #6
0
ファイル: samplingTests.py プロジェクト: kripper/vdsm
 def testBootTimeEmpty(self):
     with MonkeyPatchScope([(sampling, '_PROC_STAT_PATH', '/dev/null')]):
         with self.assertRaises(ValueError):
             sampling.getBootTime()
コード例 #7
0
ファイル: samplingTests.py プロジェクト: kripper/vdsm
 def testBootTimeOk(self):
     with MonkeyPatchScope([(sampling, '_PROC_STAT_PATH', self._good_path)
                            ]):
         self.assertEquals(sampling.getBootTime(), 1395249141)
コード例 #8
0
ファイル: samplingTests.py プロジェクト: kripper/vdsm
 def testBootTimeNonExistantFile(self):
     with MonkeyPatchScope([(sampling, '_PROC_STAT_PATH',
                             '/i/do/not/exist/1234567890')]):
         with self.assertRaises(IOError):
             sampling.getBootTime()