mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-06-17 11:10:23 +00:00
performance: 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
b91d2d8c7f
commit
c2844d358e
@ -1,20 +0,0 @@
|
||||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
|
||||
@system @performance
|
||||
Feature: Performance - system monitoring
|
||||
Run the Performance Co-Pilot app.
|
||||
|
||||
Background:
|
||||
Given I'm a logged in user
|
||||
And advanced mode is on
|
||||
And the performance application is installed
|
||||
|
||||
Scenario: Enable performance application
|
||||
Given the performance application is disabled
|
||||
When I enable the performance application
|
||||
Then the performance service should be running
|
||||
|
||||
Scenario: Disable performance application
|
||||
Given the performance application is enabled
|
||||
When I disable the performance application
|
||||
Then the performance service should not be running
|
||||
@ -3,6 +3,27 @@
|
||||
Functional, browser based tests for performance app.
|
||||
"""
|
||||
|
||||
from pytest_bdd import scenarios
|
||||
import pytest
|
||||
from plinth.tests import functional
|
||||
|
||||
scenarios('performance.feature')
|
||||
pytestmark = [pytest.mark.system, pytest.mark.performance]
|
||||
|
||||
|
||||
@pytest.fixture(scope='module', autouse=True)
|
||||
def fixture_background(session_browser):
|
||||
"""Login and install the app."""
|
||||
functional.login(session_browser)
|
||||
functional.install(session_browser, 'performance')
|
||||
yield
|
||||
functional.app_disable(session_browser, 'performance')
|
||||
|
||||
|
||||
def test_enable_disable(session_browser):
|
||||
"""Test enabling the app."""
|
||||
functional.app_disable(session_browser, 'performance')
|
||||
|
||||
functional.app_enable(session_browser, 'performance')
|
||||
assert functional.service_is_running(session_browser, 'performance')
|
||||
|
||||
functional.app_disable(session_browser, 'performance')
|
||||
assert functional.service_is_not_running(session_browser, 'performance')
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user