FreedomBox/plinth/modules/coturn/tests/test_functional.py
James Valleroy 397d6a424e
coturn: Convert functional tests to non-BDD python format
Signed-off-by: James Valleroy <jvalleroy@mailbox.org>
Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
2021-09-26 13:48:35 -07:00

39 lines
1.2 KiB
Python

# SPDX-License-Identifier: AGPL-3.0-or-later
"""
Functional, browser based tests for coturn app.
"""
import pytest
from plinth.tests import functional
pytestmark = [pytest.mark.apps, pytest.mark.coturn]
@pytest.fixture(scope='module', autouse=True)
def fixture_background(session_browser):
"""Login and install the app."""
functional.login(session_browser)
functional.install(session_browser, 'coturn')
yield
functional.app_disable(session_browser, 'coturn')
def test_enable_disable(session_browser):
"""Test enabling the app."""
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')