def test_app_name_with_dot_app_no_match(self, ps_mock): print("Testing isAppRunning with name plus .app match...") self.assertEqual(munkicommon.isAppRunning('BonziBUDDY'), False)
def test_app_by_executable_name_no_match(self, ps_mock): print("Testing isAppRunning with executable name no matches...") self.assertEqual(munkicommon.isAppRunning('bonzi'), False)
def test_app_name_with_dot_app_match(self, ps_mock): print("Testing isAppRunning with name plus .app match...") self.assertEqual(munkicommon.isAppRunning('Firefox'), True)
def test_app_by_filename_no_match(self, ps_mock): print("Testing isAppRunning with file name no matches...") self.assertEqual(munkicommon.isAppRunning('BonziBUDDY.app'), False)
def test_app_by_executable_name_match(self, ps_mock): print("Testing isAppRunning with executable name match...") self.assertEqual(munkicommon.isAppRunning('firefox'), True)
def test_app_with_exact_path_no_match(self, ps_mock): print("Testing isAppRunning with exact path no matches...") self.assertEqual(munkicommon.isAppRunning('/usr/local/bin/bonzi'), False)
def test_app_by_filename_match(self, ps_mock): print("Testing isAppRunning with file name match...") self.assertEqual(munkicommon.isAppRunning('Firefox.app'), True)
def test_app_name_with_dot_app_no_match(self, ps_mock): print("Testing isAppRunning with name plus .app match...") self.assertEqual(munkicommon.isAppRunning("BonziBUDDY"), False)
def test_app_with_exact_path_match(self, ps_mock): print("Testing isAppRunning with exact path match...") self.assertEqual( munkicommon.isAppRunning( '/Applications/Firefox.app/Contents/MacOS/firefox'), True)
def test_app_by_executable_name_no_match(self, ps_mock): print("Testing isAppRunning with executable name no matches...") self.assertEqual(munkicommon.isAppRunning("bonzi"), False)
def test_app_name_with_dot_app_match(self, ps_mock): print("Testing isAppRunning with name plus .app match...") self.assertEqual(munkicommon.isAppRunning("Firefox"), True)
def test_app_by_executable_name_match(self, ps_mock): print("Testing isAppRunning with executable name match...") self.assertEqual(munkicommon.isAppRunning("firefox"), True)
def test_app_by_filename_no_match(self, ps_mock): print("Testing isAppRunning with file name no matches...") self.assertEqual(munkicommon.isAppRunning("BonziBUDDY.app"), False)
def test_app_by_filename_match(self, ps_mock): print("Testing isAppRunning with file name match...") self.assertEqual(munkicommon.isAppRunning("Firefox.app"), True)
def test_app_with_exact_path_no_match(self, ps_mock): print("Testing isAppRunning with exact path no matches...") self.assertEqual(munkicommon.isAppRunning("/usr/local/bin/bonzi"), False)
def test_app_with_exact_path_match(self, ps_mock): print("Testing isAppRunning with exact path match...") self.assertEqual(munkicommon.isAppRunning("/Applications/Firefox.app/Contents/MacOS/firefox"), True)