mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-08-26 12:46:08 +00:00
privoxy: 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
338f3d1c0a
commit
70f99eba8f
@ -4,35 +4,13 @@ Functional, browser based tests for privoxy app.
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
from plinth.tests import functional
|
|
||||||
|
from plinth.tests.functional import BaseAppTests
|
||||||
|
|
||||||
pytestmark = [pytest.mark.apps, pytest.mark.privoxy]
|
pytestmark = [pytest.mark.apps, pytest.mark.privoxy]
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope='module', autouse=True)
|
class TestPrivoxyApp(BaseAppTests):
|
||||||
def fixture_background(session_browser):
|
app_name = 'privoxy'
|
||||||
"""Login and install the app."""
|
has_service = True
|
||||||
functional.login(session_browser)
|
has_web = False
|
||||||
functional.install(session_browser, 'privoxy')
|
|
||||||
yield
|
|
||||||
functional.app_disable(session_browser, 'privoxy')
|
|
||||||
|
|
||||||
|
|
||||||
def test_enable_disable(session_browser):
|
|
||||||
"""Test enabling the app."""
|
|
||||||
functional.app_disable(session_browser, 'privoxy')
|
|
||||||
|
|
||||||
functional.app_enable(session_browser, 'privoxy')
|
|
||||||
assert functional.service_is_running(session_browser, 'privoxy')
|
|
||||||
|
|
||||||
functional.app_disable(session_browser, 'privoxy')
|
|
||||||
assert functional.service_is_not_running(session_browser, 'privoxy')
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.backups
|
|
||||||
def test_backup_restore(session_browser):
|
|
||||||
"""Test backup and restore."""
|
|
||||||
functional.app_enable(session_browser, 'privoxy')
|
|
||||||
functional.backup_create(session_browser, 'privoxy', 'test_privoxy')
|
|
||||||
functional.backup_restore(session_browser, 'privoxy', 'test_privoxy')
|
|
||||||
assert functional.service_is_running(session_browser, 'privoxy')
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user