mirror of
https://github.com/bendtherules/pytest_gui_status.git
synced 2026-08-18 21:52:18 +00:00
move test_gui and update todo
This commit is contained in:
@@ -0,0 +1,161 @@
|
||||
import pytest_gui_status.status_plugin.plugin as status_plugin
|
||||
import pytest_gui_status.utils
|
||||
|
||||
from mock import patch, MagicMock
|
||||
import redis
|
||||
import pytest
|
||||
|
||||
from ..utils_test import reload_2_3
|
||||
|
||||
REDIS_TEST_PORT = pytest_gui_status.utils.REDIS_PORT + 1
|
||||
|
||||
mock_htmlPy_module = MagicMock()
|
||||
mock_htmlPy_module.Object = object
|
||||
mock_htmlPy_module.Slot.return_value = (lambda func: func)
|
||||
|
||||
|
||||
@pytest.fixture()
|
||||
def redis_master(request, auto_shutdown=True):
|
||||
import pytest_gui_status.status_plugin.plugin as status_plugin
|
||||
|
||||
class Redis_master_manager(object):
|
||||
dirname = None
|
||||
started = False
|
||||
|
||||
@classmethod
|
||||
def init(cls, dirname):
|
||||
cls.dirname = dirname
|
||||
cls.started = True
|
||||
status_plugin.Helpers.on_start(cls.dirname)
|
||||
|
||||
# stop redis master after test completion, whether passes or fails
|
||||
def fin():
|
||||
if auto_shutdown and Redis_master_manager.started:
|
||||
redis_db = redis.StrictRedis(host='localhost', port=status_plugin.REDIS_PORT, db=0)
|
||||
redis_db.shutdown()
|
||||
request.addfinalizer(fin)
|
||||
|
||||
return Redis_master_manager # provide the fixture value
|
||||
|
||||
|
||||
@patch.dict("os.environ",
|
||||
{"PYTEST_STATUS_PORT": str(REDIS_TEST_PORT)})
|
||||
@patch.dict("sys.modules", {"htmlPy": mock_htmlPy_module})
|
||||
def test_redis_fail_1(tmpdir):
|
||||
# load new redis port
|
||||
import pytest_gui_status.status_gui.gui_backend as gui_backend
|
||||
reload_2_3(pytest_gui_status.utils)
|
||||
reload_2_3(gui_backend)
|
||||
reload_2_3(status_plugin)
|
||||
|
||||
# dont start redis. Also if redis running, stop it
|
||||
redis_db = redis.StrictRedis(host='localhost', port=REDIS_TEST_PORT, db=0)
|
||||
try:
|
||||
assert redis_db.ping()
|
||||
redis_db.shutdown()
|
||||
except redis.exceptions.ConnectionError:
|
||||
pass
|
||||
except AssertionError:
|
||||
pass
|
||||
|
||||
# mock Controller requirements and app_gui.stop
|
||||
fake_app_gui = MagicMock()
|
||||
with pytest.raises(redis.exceptions.ConnectionError) as error_info:
|
||||
gui_backend.Controller(fake_app_gui).redraw()
|
||||
|
||||
assert str(error_info.value) == "Cant connect to this socket. Is redis running?\n" \
|
||||
+ "Stopping pytest_status_gui"
|
||||
|
||||
|
||||
@patch.dict("os.environ",
|
||||
{"PYTEST_STATUS_PORT": str(REDIS_TEST_PORT)})
|
||||
@patch.dict("sys.modules", {"htmlPy": mock_htmlPy_module})
|
||||
def test_redis_fail_2(tmpdir, redis_master):
|
||||
# load new redis port
|
||||
import pytest_gui_status.status_gui.gui_backend as gui_backend
|
||||
reload_2_3(pytest_gui_status.utils)
|
||||
reload_2_3(gui_backend)
|
||||
reload_2_3(status_plugin)
|
||||
|
||||
# start Redis
|
||||
redis_master.init(tmpdir.strpath)
|
||||
|
||||
# status_plugin.Helpers.on_start(tmpdir.strpath)
|
||||
|
||||
# make PYTEST_STATUS_DB value corrupt/incorrect
|
||||
redis_db = redis.StrictRedis(host='localhost', port=REDIS_TEST_PORT, db=0)
|
||||
redis_db.set("PYTEST_STATUS_DB", "0")
|
||||
|
||||
# mock Controller requirements and app_gui.stop
|
||||
fake_app_gui = MagicMock()
|
||||
with pytest.raises(redis.exceptions.ConnectionError) as error_info:
|
||||
gui_backend.Controller(fake_app_gui).redraw()
|
||||
|
||||
assert str(error_info.value) == "Redis is running on this port, but it is not related to pytest status\n"\
|
||||
+ "Stopping pytest_status_gui"
|
||||
|
||||
fake_app_gui.stop.assert_called_with()
|
||||
|
||||
# auto cleanup of redis master by fixture
|
||||
|
||||
|
||||
@patch.dict("os.environ",
|
||||
{"PYTEST_STATUS_PORT": str(REDIS_TEST_PORT)})
|
||||
@patch.dict("sys.modules", {"htmlPy": mock_htmlPy_module})
|
||||
def test_redis_fail_3(tmpdir, redis_master):
|
||||
# load new redis port
|
||||
import pytest_gui_status.status_gui.gui_backend as gui_backend
|
||||
reload_2_3(pytest_gui_status.utils)
|
||||
reload_2_3(gui_backend)
|
||||
reload_2_3(status_plugin)
|
||||
|
||||
# start Redis
|
||||
redis_master.init(tmpdir.strpath)
|
||||
|
||||
# delete PYTEST_STATUS_DB
|
||||
redis_db = redis.StrictRedis(host='localhost', port=REDIS_TEST_PORT, db=0)
|
||||
redis_db.delete("PYTEST_STATUS_DB")
|
||||
|
||||
# mock Controller requirements and app_gui.stop
|
||||
fake_app_gui = MagicMock()
|
||||
|
||||
with pytest.raises(redis.exceptions.ConnectionError) as error_info:
|
||||
gui_backend.Controller(fake_app_gui).redraw()
|
||||
|
||||
assert str(error_info.value) == "Redis is running on this port, but it is not related to pytest status\n"\
|
||||
+ "Stopping pytest_status_gui"
|
||||
|
||||
fake_app_gui.stop.assert_called_with()
|
||||
|
||||
# auto cleanup of redis master by fixture
|
||||
|
||||
|
||||
@patch.dict("os.environ",
|
||||
{"PYTEST_STATUS_PORT": str(REDIS_TEST_PORT)})
|
||||
@patch.dict("sys.modules", {"htmlPy": mock_htmlPy_module})
|
||||
def test_redis_fail_4(tmpdir, redis_master):
|
||||
# load new redis port
|
||||
import pytest_gui_status.status_gui.gui_backend as gui_backend
|
||||
reload_2_3(pytest_gui_status.utils)
|
||||
reload_2_3(gui_backend)
|
||||
reload_2_3(status_plugin)
|
||||
|
||||
# start Redis
|
||||
redis_master.init(tmpdir.strpath)
|
||||
|
||||
# redis_db = redis.StrictRedis(host='localhost', port=REDIS_TEST_PORT, db=0)
|
||||
|
||||
# mock Controller requirements and app_gui.stop
|
||||
# provide invalid path
|
||||
fake_app_gui = MagicMock()
|
||||
fake_app_gui.dir_name = r"Invalid/Path"
|
||||
|
||||
with pytest.raises(redis.exceptions.ConnectionError) as error_info:
|
||||
gui_backend.Controller(fake_app_gui).redraw()
|
||||
|
||||
assert str(error_info.value) == "dir_name = {dir_name} not found in redis db".format(
|
||||
dir_name=fake_app_gui.dir_name)
|
||||
|
||||
fake_app_gui.stop.assert_called_with()
|
||||
|
||||
# auto cleanup of redis master by fixture
|
||||
Reference in New Issue
Block a user