Merge pull request #982 from ostcar/test-with-threads
Mockout threading in the startbrowser test
This commit is contained in:
commit
1b1cc86c94
@ -79,12 +79,16 @@ class TestFunctions(TestCase):
|
|||||||
mock_socket.socket().listen = MagicMock(side_effect=MyException)
|
mock_socket.socket().listen = MagicMock(side_effect=MyException)
|
||||||
self.assertEqual(get_port('localhost', 80), 8000)
|
self.assertEqual(get_port('localhost', 80), 8000)
|
||||||
|
|
||||||
|
@patch('openslides.utils.main.threading.Thread')
|
||||||
@patch('openslides.utils.main.time')
|
@patch('openslides.utils.main.time')
|
||||||
@patch('openslides.utils.main.webbrowser')
|
@patch('openslides.utils.main.webbrowser')
|
||||||
def test_start_browser(self, mock_webbrowser, mock_time):
|
def test_start_browser(self, mock_webbrowser, mock_time, mock_Thread):
|
||||||
browser_mock = MagicMock()
|
browser_mock = MagicMock()
|
||||||
mock_webbrowser.get.return_value = browser_mock
|
mock_webbrowser.get.return_value = browser_mock
|
||||||
start_browser('http://localhost:8234')
|
start_browser('http://localhost:8234')
|
||||||
|
self.assertTrue(mock_Thread.called)
|
||||||
|
inner_function = mock_Thread.call_args[1]['target']
|
||||||
|
inner_function()
|
||||||
browser_mock.open.assert_called_with('http://localhost:8234')
|
browser_mock.open.assert_called_with('http://localhost:8234')
|
||||||
|
|
||||||
def test_get_database_path_from_settings_memory(self):
|
def test_get_database_path_from_settings_memory(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user