def test_status_bool_expected_state_running_fail(self): """ Tests if it returns bool results for process status check """ return_str = ( "salt-minion STOPPED pid 25563, uptime 4 days," " 12:39:42" ) with patch.dict( supervisord.__salt__, {"cmd.run_all": self._m_all(return_str), "cmd.which_bin": self._m_bin()}, ): self.assertFalse( supervisord.status_bool(name="salt-minion", expected_state="RUNNING") )
def test_status_bool_name_correct(self): """ Tests if it returns bool results for process status check """ return_str = ( "salt-minion RUNNING pid 25563, uptime 4 days," " 12:39:42" ) with patch.dict( supervisord.__salt__, {"cmd.run_all": self._m_all(return_str), "cmd.which_bin": self._m_bin()}, ): self.assertTrue( supervisord.status_bool(name="salt-minion", expected_state=None) )