mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-09-19 04:59:01 +00:00
coturn: 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
18643b99db
commit
89faf10470
@ -4,35 +4,18 @@ Functional, browser based tests for coturn app.
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
from plinth.tests import functional
|
from plinth.tests.functional import BaseAppTests
|
||||||
|
|
||||||
pytestmark = [pytest.mark.apps, pytest.mark.coturn]
|
pytestmark = [pytest.mark.apps, pytest.mark.coturn]
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope='module', autouse=True)
|
class TestCoturnApp(BaseAppTests):
|
||||||
def fixture_background(session_browser):
|
app_name = 'coturn'
|
||||||
"""Login and install the app."""
|
has_service = True
|
||||||
functional.login(session_browser)
|
has_web = False
|
||||||
functional.install(session_browser, 'coturn')
|
|
||||||
yield
|
|
||||||
functional.app_disable(session_browser, 'coturn')
|
|
||||||
|
|
||||||
|
# TODO: Requires a valid domain with certificates to complete setup.
|
||||||
|
check_diagnostics = False
|
||||||
|
|
||||||
def test_enable_disable(session_browser):
|
# TODO: Improve backup test by checking that secret and domain did
|
||||||
"""Test enabling the app."""
|
# not change
|
||||||
functional.app_disable(session_browser, 'coturn')
|
|
||||||
|
|
||||||
functional.app_enable(session_browser, 'coturn')
|
|
||||||
assert functional.service_is_running(session_browser, 'coturn')
|
|
||||||
|
|
||||||
functional.app_disable(session_browser, 'coturn')
|
|
||||||
assert functional.service_is_not_running(session_browser, 'coturn')
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.backups
|
|
||||||
def test_backup(session_browser):
|
|
||||||
# TODO: Improve this by checking that secret and domain did not change
|
|
||||||
functional.app_enable(session_browser, 'coturn')
|
|
||||||
functional.backup_create(session_browser, 'coturn', 'test_coturn')
|
|
||||||
functional.backup_restore(session_browser, 'coturn', 'test_coturn')
|
|
||||||
assert functional.service_is_running(session_browser, 'coturn')
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user