mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-09-19 04:59:01 +00:00
cockpit: 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
8adbc3509b
commit
18643b99db
@ -5,28 +5,12 @@ Functional, browser based tests for cockpit app.
|
|||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from plinth.tests import functional
|
from plinth.tests.functional import BaseAppTests
|
||||||
|
|
||||||
pytestmark = [pytest.mark.system, pytest.mark.essential, pytest.mark.cockpit]
|
pytestmark = [pytest.mark.system, pytest.mark.essential, pytest.mark.cockpit]
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope='module', autouse=True)
|
class TestCockpitApp(BaseAppTests):
|
||||||
def fixture_background(session_browser):
|
app_name = 'cockpit'
|
||||||
"""Login and install the app."""
|
has_service = True
|
||||||
functional.login(session_browser)
|
has_web = True
|
||||||
functional.install(session_browser, 'cockpit')
|
|
||||||
yield
|
|
||||||
functional.app_disable(session_browser, 'cockpit')
|
|
||||||
|
|
||||||
|
|
||||||
def test_enable_disable(session_browser):
|
|
||||||
"""Test enabling the app."""
|
|
||||||
functional.app_disable(session_browser, 'cockpit')
|
|
||||||
|
|
||||||
functional.app_enable(session_browser, 'cockpit')
|
|
||||||
assert functional.service_is_running(session_browser, 'cockpit')
|
|
||||||
assert functional.is_available(session_browser, 'cockpit')
|
|
||||||
|
|
||||||
functional.app_disable(session_browser, 'cockpit')
|
|
||||||
assert functional.service_is_not_running(session_browser, 'cockpit')
|
|
||||||
assert not functional.is_available(session_browser, 'cockpit')
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user