mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-05-20 10:34:30 +00:00
quassel: Use BaseAppTests for functional tests
Signed-off-by: James Valleroy <jvalleroy@mailbox.org> Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
This commit is contained in:
parent
70f99eba8f
commit
75f5769c16
@ -4,37 +4,16 @@ Functional, browser based tests for quassel app.
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
from plinth.tests import functional
|
|
||||||
|
from plinth.tests.functional import BaseAppTests
|
||||||
|
|
||||||
pytestmark = [pytest.mark.apps, pytest.mark.quassel]
|
pytestmark = [pytest.mark.apps, pytest.mark.quassel]
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope='module', autouse=True)
|
class TestQuasselApp(BaseAppTests):
|
||||||
def fixture_background(session_browser):
|
app_name = 'quassel'
|
||||||
"""Login and install the app."""
|
has_service = True
|
||||||
functional.login(session_browser)
|
has_web = False
|
||||||
functional.install(session_browser, 'quassel')
|
|
||||||
yield
|
|
||||||
functional.app_disable(session_browser, 'quassel')
|
|
||||||
|
|
||||||
|
# TODO: Improve test_backup_restore to actually check that data
|
||||||
def test_enable_disable(session_browser):
|
# configured servers is restored.
|
||||||
"""Test enabling the app."""
|
|
||||||
functional.app_disable(session_browser, 'quassel')
|
|
||||||
|
|
||||||
functional.app_enable(session_browser, 'quassel')
|
|
||||||
assert functional.service_is_running(session_browser, 'quassel')
|
|
||||||
|
|
||||||
functional.app_disable(session_browser, 'quassel')
|
|
||||||
assert functional.service_is_not_running(session_browser, 'quassel')
|
|
||||||
|
|
||||||
|
|
||||||
# TODO: Improve this to actually check that data configured servers is
|
|
||||||
# restored.
|
|
||||||
@pytest.mark.backups
|
|
||||||
def test_backup_restore(session_browser):
|
|
||||||
"""Test backup and restore of app data."""
|
|
||||||
functional.app_enable(session_browser, 'quassel')
|
|
||||||
functional.backup_create(session_browser, 'quassel', 'test_quassel')
|
|
||||||
functional.backup_restore(session_browser, 'quassel', 'test_quassel')
|
|
||||||
assert functional.service_is_running(session_browser, 'quassel')
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user