FreedomBox/plinth/modules/ikiwiki/tests/test_functional.py
Sunil Mohan Adapa 68a6427b19
ikiwiki: tests: functional: Use newer splinter API for finding links
Minimum required version of splinter is 0.13.0.

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: Veiko Aasa <veiko17@disroot.org>
2021-09-19 07:47:11 +03:00

56 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.links.find_by_href('/ikiwiki/wiki')
if not wiki:
browser.links.find_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.links.find_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.links.find_by_href('/ikiwiki/wiki')
return bool(wiki)