mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
- Includes SocksPort and "Download software packages over Tor" feature,
as well as setting upstream bridges.
- "Download software packages over Tor" option is enabled by default.
- When upgrading, if Tor app was enabled and "Download software
packages over Tor" was enabled, then Tor Proxy will be installed.
- The default tor instance is now called tor@default. The "tor" service
is an multi-instance master that has Wants relation all instances.
Tests:
- Tests for Tor and Tor Proxy passed.
- Enable Tor, and run the tests for Tor Proxy. Afterwards, Tor is still
enabled and running.
- Enable Tor Proxy, and run the tests for Tor. Afterwards, Tor Proxy is
still enabled and running.
- Test setting upstream bridges for Tor and Tor Proxy.
- Install FreedomBox 23.11 in a VM and install Tor with default
settings. Install new FreedomBox version with Tor Proxy. After
install, both Tor and Tor Proxy apps are installed and running.
/etc/tor/instances/{plinth,fbxproxy}/torrc both have expected content.
Signed-off-by: James Valleroy <jvalleroy@mailbox.org>
34 lines
885 B
Python
34 lines
885 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
Tests for Tor Proxy module.
|
|
"""
|
|
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
|
|
from plinth.modules.torproxy import utils
|
|
|
|
|
|
class TestTorProxy:
|
|
"""Test cases for testing the Tor Proxy module."""
|
|
|
|
@staticmethod
|
|
@pytest.mark.usefixtures('needs_root')
|
|
def test_is_apt_transport_tor_enabled():
|
|
"""Test that is_apt_transport_tor_enabled does not raise any unhandled
|
|
exceptions.
|
|
"""
|
|
utils.is_apt_transport_tor_enabled()
|
|
|
|
@staticmethod
|
|
@patch('plinth.app.App.get')
|
|
@pytest.mark.usefixtures('needs_root', 'load_cfg')
|
|
def test_get_status(_app_get):
|
|
"""Test that get_status does not raise any unhandled exceptions.
|
|
|
|
This should work regardless of whether tor is installed, or
|
|
/etc/tor/instances/fbxproxy/torrc exists.
|
|
"""
|
|
utils.get_status()
|