Sunil Mohan Adapa 5dbf890881
tests: functional: Refactor install/setup fixture for apps
- Fixes an issue with zoph not being setup after uninstall+install setup and
makes a test pass.

- Some failures exist but don't seem related to this change.

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
2024-03-11 16:50:56 -04:00

53 lines
1.9 KiB
Python

# SPDX-License-Identifier: AGPL-3.0-or-later
"""
Functional, browser based tests for Shadowsocks Client app.
"""
import pytest
from plinth.tests import functional
pytestmark = [pytest.mark.apps, pytest.mark.shadowsocks]
class TestShadowsocksApp(functional.BaseAppTests):
app_name = 'shadowsocks'
has_service = True
has_web = False
def install_and_setup(self, session_browser):
"""Install the app and run setup."""
super().install_and_setup(session_browser)
_configure(session_browser, 'example.com', 'fakepassword')
@pytest.mark.backups
def test_backup_restore(self, session_browser):
"""Test backup and restore of configuration."""
_configure(session_browser, 'example.com', 'beforebackup123')
functional.backup_create(session_browser, 'shadowsocks',
'test_shadowsocks')
_configure(session_browser, 'example.org', 'afterbackup123')
functional.backup_restore(session_browser, 'shadowsocks',
'test_shadowsocks')
assert functional.service_is_running(session_browser, 'shadowsocks')
assert _get_configuration(session_browser) == ('example.com',
'beforebackup123')
def _configure(browser, server, password):
"""Configure shadowsocks client with given server details."""
functional.visit(browser, '/plinth/apps/shadowsocks/')
browser.find_by_id('id_server').fill(server)
browser.find_by_id('id_password').fill(password)
functional.submit(browser, form_class='form-configuration')
def _get_configuration(browser):
"""Return the server and password currently configured in shadowsocks."""
functional.visit(browser, '/plinth/apps/shadowsocks/')
server = browser.find_by_id('id_server').value
password = browser.find_by_id('id_password').value
return server, password