FreedomBox/plinth/modules/avahi/tests/test_functional.py
James Valleroy 42c2bcfde7
avahi: Convert functional tests to non-BDD python format
Signed-off-by: James Valleroy <jvalleroy@mailbox.org>
[sunil: Add markers]
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
2021-09-13 19:01:51 -07:00

30 lines
879 B
Python

# SPDX-License-Identifier: AGPL-3.0-or-later
"""
Functional, browser based tests for avahi app.
"""
import pytest
from plinth.tests import functional
pytestmark = [pytest.mark.system, pytest.mark.essential, pytest.mark.avahi]
@pytest.fixture(scope='module', autouse=True)
def fixture_background(session_browser):
"""Login and install the app."""
functional.login(session_browser)
functional.install(session_browser, 'avahi')
yield
functional.app_disable(session_browser, 'avahi')
def test_enable_disable(session_browser):
"""Test enabling the app."""
functional.app_disable(session_browser, 'avahi')
functional.app_enable(session_browser, 'avahi')
assert functional.service_is_running(session_browser, 'avahi')
functional.app_disable(session_browser, 'avahi')
assert functional.service_is_not_running(session_browser, 'avahi')