FreedomBox/plinth/modules/ikiwiki/tests/test_functional.py
Sunil Mohan Adapa 80dff7bf9c
tests: functional: Re-organize step definitions and helper methods
- Move non-reusable app specific step definitions and helper methods into
<app>/tests/test_functional.py.

- Merge reusable helper methods into plinth.tests.functional

- Merge reusable step definitions into plinth.tests.functional.step_definitions

- avahi, datetime, ikiwiki: Reuse common methods to avoid repetition. Avoid
mapping from app nicknames to actual app names.

- deluge, transmission: Make a copy of sample.torrent for each app to avoid
clogging common place.

- Implement functional.visit() to simplify a lot of browser.visit() calls.

- Ensure that name of the mark on functional tests for an app is same as name of
the app. This will help with predicting the mark when running tests for a
particular app.

Tests performed:

- Run all functional tests.

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: Joseph Nuthalapati <njoseph@riseup.net>
2020-05-22 22:52:40 +05:30

55 lines
1.6 KiB
Python

# SPDX-License-Identifier: AGPL-3.0-or-later
"""
Functional, browser based tests for ikiwiki app.
"""
from pytest_bdd import scenarios, then, when
from plinth.tests import functional
scenarios('ikiwiki.feature')
@when('there is an ikiwiki wiki')
def ikiwiki_create_wiki_if_needed(session_browser):
_create_wiki_if_needed(session_browser)
@when('I delete the ikiwiki wiki')
def ikiwiki_delete_wiki(session_browser):
_delete_wiki(session_browser)
@then('the ikiwiki wiki should be restored')
def ikiwiki_should_exist(session_browser):
assert _wiki_exists(session_browser)
def _create_wiki_if_needed(browser):
"""Create wiki if it does not exist."""
functional.nav_to_module(browser, 'ikiwiki')
wiki = browser.find_link_by_href('/ikiwiki/wiki')
if not wiki:
browser.find_link_by_href('/plinth/apps/ikiwiki/create/').first.click()
browser.find_by_id('id_ikiwiki-name').fill('wiki')
browser.find_by_id('id_ikiwiki-admin_name').fill(
functional.config['DEFAULT']['username'])
browser.find_by_id('id_ikiwiki-admin_password').fill(
functional.config['DEFAULT']['password'])
functional.submit(browser)
def _delete_wiki(browser):
"""Delete wiki."""
functional.nav_to_module(browser, 'ikiwiki')
browser.find_link_by_href(
'/plinth/apps/ikiwiki/wiki/delete/').first.click()
functional.submit(browser)
def _wiki_exists(browser):
"""Check whether the wiki exists."""
functional.nav_to_module(browser, 'ikiwiki')
wiki = browser.find_link_by_href('/ikiwiki/wiki')
return bool(wiki)