minetest: 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:
James Valleroy 2021-10-20 21:35:34 -04:00 committed by Sunil Mohan Adapa
parent 9735a9d342
commit cc9cfbcd20
No known key found for this signature in database
GPG Key ID: 43EA1CFF0AA7C5F2

View File

@ -5,26 +5,12 @@ Functional, browser based tests for minetest app.
import pytest
from plinth.tests import functional
from plinth.tests.functional import BaseAppTests
pytestmark = [pytest.mark.apps, pytest.mark.minetest]
@pytest.fixture(scope='module', autouse=True)
def fixture_background(session_browser):
"""Login and install the app."""
functional.login(session_browser)
functional.install(session_browser, 'minetest')
yield
functional.app_disable(session_browser, 'minetest')
def test_enable_disable(session_browser):
"""Test enabling the app."""
functional.app_disable(session_browser, 'minetest')
functional.app_enable(session_browser, 'minetest')
assert functional.service_is_running(session_browser, 'minetest')
functional.app_disable(session_browser, 'minetest')
assert functional.service_is_not_running(session_browser, 'minetest')
class TestMinetestApp(BaseAppTests):
app_name = 'minetest'
has_service = True
has_web = False