From 70f99eba8f270575d4bb42f8f377b1d76689bdcd Mon Sep 17 00:00:00 2001 From: James Valleroy Date: Thu, 21 Oct 2021 19:21:23 -0400 Subject: [PATCH] privoxy: Use BaseAppTests for functional tests Signed-off-by: James Valleroy Reviewed-by: Sunil Mohan Adapa --- .../modules/privoxy/tests/test_functional.py | 34 ++++--------------- 1 file changed, 6 insertions(+), 28 deletions(-) diff --git a/plinth/modules/privoxy/tests/test_functional.py b/plinth/modules/privoxy/tests/test_functional.py index 74a028d89..b0d0ca2fd 100644 --- a/plinth/modules/privoxy/tests/test_functional.py +++ b/plinth/modules/privoxy/tests/test_functional.py @@ -4,35 +4,13 @@ Functional, browser based tests for privoxy app. """ import pytest -from plinth.tests import functional + +from plinth.tests.functional import BaseAppTests pytestmark = [pytest.mark.apps, pytest.mark.privoxy] -@pytest.fixture(scope='module', autouse=True) -def fixture_background(session_browser): - """Login and install the app.""" - functional.login(session_browser) - 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') +class TestPrivoxyApp(BaseAppTests): + app_name = 'privoxy' + has_service = True + has_web = False