mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-22 10:01:45 +00:00
minetest: 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>
This commit is contained in:
parent
dc1f6ef732
commit
fa6aed9c7a
@ -1,19 +0,0 @@
|
|||||||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
||||||
|
|
||||||
@apps @minetest
|
|
||||||
Feature: Minetest Block Sandbox
|
|
||||||
Run the Minetest server
|
|
||||||
|
|
||||||
Background:
|
|
||||||
Given I'm a logged in user
|
|
||||||
Given the minetest application is installed
|
|
||||||
|
|
||||||
Scenario: Enable minetest application
|
|
||||||
Given the minetest application is disabled
|
|
||||||
When I enable the minetest application
|
|
||||||
Then the minetest service should be running
|
|
||||||
|
|
||||||
Scenario: Disable minetest application
|
|
||||||
Given the minetest application is enabled
|
|
||||||
When I disable the minetest application
|
|
||||||
Then the minetest service should not be running
|
|
||||||
@ -3,6 +3,27 @@
|
|||||||
Functional, browser based tests for minetest app.
|
Functional, browser based tests for minetest app.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from pytest_bdd import scenarios
|
import pytest
|
||||||
|
from plinth.tests import functional
|
||||||
|
|
||||||
scenarios('minetest.feature')
|
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')
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user