46 lines
1.3 KiB
Python
46 lines
1.3 KiB
Python
import unittest
|
|
|
|
import mock
|
|
|
|
import loadcli
|
|
|
|
cli = loadcli.cli
|
|
|
|
|
|
class TestRunningInBg(unittest.TestCase):
|
|
|
|
@mock.patch('koji_cli.os')
|
|
def test_running_in_bg(self, os_mock):
|
|
os_mock.isatty.return_value = False
|
|
self.assertTrue(cli._running_in_bg())
|
|
os_mock.isatty.return_value = True
|
|
os_mock.getpgrp.return_value = 0
|
|
os_mock.tcgetpgrp.return_value = 1
|
|
self.assertTrue(cli._running_in_bg())
|
|
os_mock.tcgetpgrp.return_value = 0
|
|
self.assertFalse(cli._running_in_bg())
|
|
|
|
os_mock.reset_mock()
|
|
os_mock.tcgetpgrp.side_effect = OSError
|
|
self.assertTrue(cli._running_in_bg())
|
|
os_mock.isatty.assert_called()
|
|
os_mock.getpgrp.assert_called()
|
|
os_mock.tcgetpgrp.assert_called()
|
|
|
|
os_mock.reset_mock()
|
|
os_mock.getpgrp.side_effect = OSError
|
|
self.assertTrue(cli._running_in_bg())
|
|
os_mock.isatty.assert_called()
|
|
os_mock.getpgrp.assert_called()
|
|
os_mock.tcgetpgrp.assert_not_called()
|
|
|
|
os_mock.reset_mock()
|
|
os_mock.isatty.side_effect = OSError
|
|
self.assertTrue(cli._running_in_bg())
|
|
os_mock.isatty.assert_called()
|
|
os_mock.getpgrp.assert_not_called()
|
|
os_mock.tcgetpgrp.assert_not_called()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|