Skip to content
Snippets Groups Projects

Resolve "Initial Publish uptime of CS instance to IS"

2 files
+ 60
23
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -23,22 +23,28 @@ class TestInfoServiceThread(unittest.TestCase):
## we mock the configuration
self.mock_cfg = mock.create_autospec(ConfigHolder)
self.mock_cfg.configure_mock(partition="initial", LogDir="", LogLevel="")
self.mock_cfg.configure_mock(partition="initial", LogDir="", LogLevel="", FileName="Conf_test.cfg")
## we're not interested in any logging for this test
with mock.patch("cs.Threads.InfoServiceThread.enable_file_logging"):
self.info_thread = InfoServiceThread(self.mock_cfg, self.mock_event)
class TestInfoServiceExit(TestInfoServiceThread):
def test_it_should_stop_thread_execution(self):
## we're not interested in any logging for this test
with mock.patch("cs.Threads.InfoServiceThread.enable_file_logging"):
# I run the thread
info_thread = InfoServiceThread(self.mock_cfg, self.mock_event)
info_thread.start()
# I run the thread
self.info_thread.start()
# and shut it down
info_thread.info_service_exit()
info_thread.join(3.0)
self.info_thread.info_service_exit()
self.info_thread.join(3.0)
# and I see that the thread has been killed
self.assertFalse(info_thread.is_alive(), msg="InfoService Thread didn't die")
self.assertFalse(self.info_thread.is_alive(), msg="InfoService Thread didn't die")
class TestGetProcessUptime(TestInfoServiceThread):
def test_uptime_should_be_positive(self):
self.assertGreaterEqual(self.info_thread.get_process_uptime_in_seconds(), 0)
if __name__ == "__main__":
unittest.main()
Loading