mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
avahi: 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
f4792a6d88
commit
42c2bcfde7
@ -1,18 +0,0 @@
|
||||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
|
||||
@system @essential @avahi
|
||||
Feature: Avahi Service Discovery
|
||||
Configure service discovery.
|
||||
|
||||
Background:
|
||||
Given I'm a logged in user
|
||||
|
||||
Scenario: Disable avahi application
|
||||
Given the avahi application is enabled
|
||||
When I disable the avahi application
|
||||
Then the avahi service should not be running
|
||||
|
||||
Scenario: Enable avahi application
|
||||
Given the avahi application is disabled
|
||||
When I enable the avahi application
|
||||
Then the avahi service should be running
|
||||
@ -3,6 +3,27 @@
|
||||
Functional, browser based tests for avahi app.
|
||||
"""
|
||||
|
||||
from pytest_bdd import scenarios
|
||||
import pytest
|
||||
from plinth.tests import functional
|
||||
|
||||
scenarios('avahi.feature')
|
||||
pytestmark = [pytest.mark.system, pytest.mark.essential, pytest.mark.avahi]
|
||||
|
||||
|
||||
@pytest.fixture(scope='module', autouse=True)
|
||||
def fixture_background(session_browser):
|
||||
"""Login and install the app."""
|
||||
functional.login(session_browser)
|
||||
functional.install(session_browser, 'avahi')
|
||||
yield
|
||||
functional.app_disable(session_browser, 'avahi')
|
||||
|
||||
|
||||
def test_enable_disable(session_browser):
|
||||
"""Test enabling the app."""
|
||||
functional.app_disable(session_browser, 'avahi')
|
||||
|
||||
functional.app_enable(session_browser, 'avahi')
|
||||
assert functional.service_is_running(session_browser, 'avahi')
|
||||
|
||||
functional.app_disable(session_browser, 'avahi')
|
||||
assert functional.service_is_not_running(session_browser, 'avahi')
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user