Пример #1
0
 def testBootTimeExtra(self):
     with MonkeyPatchScope([(hoststats, '_PROC_STAT_PATH', self._extra_path)
                            ]):
         self.assertEquals(hoststats.get_boot_time(), 1395249141)
Пример #2
0
 def testBootTimeMalformed(self):
     with MonkeyPatchScope([(hoststats, '_PROC_STAT_PATH',
                             self._malformed_path)]):
         with self.assertRaises(ValueError):
             hoststats.get_boot_time()
Пример #3
0
 def testBootTimeNonExistantFile(self):
     with MonkeyPatchScope([(hoststats, '_PROC_STAT_PATH',
                             '/i/do/not/exist/1234567890')]):
         with self.assertRaises(IOError):
             hoststats.get_boot_time()
Пример #4
0
 def testBootTimeEmpty(self):
     with MonkeyPatchScope([(hoststats, '_PROC_STAT_PATH', '/dev/null')]):
         with self.assertRaises(ValueError):
             hoststats.get_boot_time()
Пример #5
0
 def testBootTimeNonExistantFile(self):
     with MonkeyPatchScope([(hoststats, '_PROC_STAT_PATH',
                             '/i/do/not/exist/1234567890')]):
         with self.assertRaises(IOError):
             hoststats.get_boot_time()
Пример #6
0
 def testBootTimeMalformed(self):
     with MonkeyPatchScope([(hoststats, '_PROC_STAT_PATH',
                             self._malformed_path)]):
         with self.assertRaises(ValueError):
             hoststats.get_boot_time()
Пример #7
0
 def testBootTimeEmpty(self):
     with MonkeyPatchScope([(hoststats, '_PROC_STAT_PATH',
                             '/dev/null')]):
         with self.assertRaises(ValueError):
             hoststats.get_boot_time()
Пример #8
0
 def testBootTimeOk(self):
     with MonkeyPatchScope([(hoststats, '_PROC_STAT_PATH',
                             self._good_path)]):
         self.assertEquals(hoststats.get_boot_time(),
                           1395249141)