mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-03-11 09:04:54 +00:00
- Since we are going to be an OpenID Provider, we need to fix the URLs that
other apps will be configured with for authentication. So change now from
/plinth to /freedombox. If done later, it will be harder since all the
configuration files for all dependent apps will need to be updated.
Tests:
- App availability checking works. Request goes to /freedombox URL
- Favicon is served properly and through /favicon.ico URL
- Redirection happens from / to /freedombox directly
- UI is available on /freedombox and on /plinth
- Manual page show /freedombox as the URL in two places
- Static files are successfully served from /freedombox URLs. URLs inside page
start with /freedombox
- backup, bepasty, calibre, config, dynamicdns, ejabberd, featherwiki, gitweb,
ikiwiki, kiwix, miniflux, names, openvpn, shadowsocks, shadowsocksserver,
sharing, shapshot, tiddlywiki, users, wireguard, jsxc, matrixsynapse, first
wizard, storage, samba, tags functional tests work. Backup/restore test for
matrixsynapse fails due to an unrelated bug (server not restarted after
restore).
- Setting the home page works:
- Having /plinth in the home page configuration works. Shows selection
correctly.
- Setting to app works. Shows selection correctly.
- Setting to user home page (sets /freedombox). Shows selection correctly.
- Setting to apache default works. Shows selection correctly.
- Changing back to FreedomBox service works. Shows selection correctly.
- Unit tests work
- Configuration page shows /freedombox in description but not /plinth
- Diagnostics show /freedombox in tests
- Roundcube URL link in email app has /freedombox
- email loads the page /.well-known/autoconfig/mail/config-v1.1.xml correctly
- email app shows /freedombox/apps/roundcube for /roundcube if roundcube is not
installed.
- networks: router configuration page shows URL starting with /freedombox.
- snapshot: Shows URL starting with /freedombox on the app page
- js licenses page uses /freedombox prefix for JSXC.
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
64 lines
1.8 KiB
Python
64 lines
1.8 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
Tests for CherryPy web server setup and its components.
|
|
"""
|
|
|
|
from unittest.mock import call, patch
|
|
|
|
import pytest
|
|
|
|
from plinth.web_server import StaticFiles
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def fixture_cleanup_static_files():
|
|
"""Ensure that global list of static files is clean."""
|
|
StaticFiles._all_instances = {}
|
|
|
|
|
|
def test_static_files_init():
|
|
"""Test that static files component is being initialized correctly."""
|
|
component = StaticFiles('test-component')
|
|
assert component.component_id == 'test-component'
|
|
assert component.directory_map is None
|
|
|
|
directory_map = {'/a': '/b'}
|
|
component = StaticFiles('test-component', directory_map)
|
|
assert component.directory_map == directory_map
|
|
|
|
|
|
def test_static_files_list():
|
|
"""Test that static files components can be listed properly."""
|
|
component1 = StaticFiles('test-component1')
|
|
component2 = StaticFiles('test-component2')
|
|
|
|
assert set(StaticFiles.list()) == {component1, component2}
|
|
|
|
|
|
@patch('cherrypy.tree.mount')
|
|
def test_static_files_mount(mount, load_cfg):
|
|
"""Test that mounting on CherryPy works as expected."""
|
|
directory_map = {'/a': '/b', '/c': '/d'}
|
|
component = StaticFiles('test-component', directory_map)
|
|
component.mount()
|
|
|
|
calls = [
|
|
call(
|
|
None, '/freedombox/a', {
|
|
'/': {
|
|
'tools.staticdir.root': '/b',
|
|
'tools.staticdir.on': True,
|
|
'tools.staticdir.dir': '.'
|
|
}
|
|
}),
|
|
call(
|
|
None, '/freedombox/c', {
|
|
'/': {
|
|
'tools.staticdir.root': '/d',
|
|
'tools.staticdir.on': True,
|
|
'tools.staticdir.dir': '.'
|
|
}
|
|
})
|
|
]
|
|
mount.assert_has_calls(calls)
|