mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
Tests: - Run ikiwiki functional tests Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
59 lines
1.8 KiB
Python
59 lines
1.8 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
Functional, browser based tests for ikiwiki app.
|
|
"""
|
|
|
|
import pytest
|
|
|
|
from plinth.tests import functional
|
|
|
|
pytestmark = [pytest.mark.apps, pytest.mark.ikiwiki]
|
|
|
|
|
|
class TestIkiwikiApp(functional.BaseAppTests):
|
|
app_name = 'ikiwiki'
|
|
has_service = False
|
|
has_web = True
|
|
|
|
@pytest.mark.backups
|
|
def test_backup_restore(self, session_browser):
|
|
"""Test backup and restore of app data."""
|
|
functional.app_enable(session_browser, 'ikiwiki')
|
|
_create_wiki_if_needed(session_browser)
|
|
functional.backup_create(session_browser, 'ikiwiki', 'test_ikiwiki')
|
|
|
|
_delete_wiki(session_browser)
|
|
functional.backup_restore(session_browser, 'ikiwiki', 'test_ikiwiki')
|
|
|
|
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, form_class='form-create')
|
|
|
|
|
|
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, form_class='form-delete')
|
|
|
|
|
|
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)
|