mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-05-13 10:30:16 +00:00
Handle error where /etc/tor/torrc does not exist when checking hidden service config.
Handle error where tor state file does not exist when getting list of ports. Add test for checking if apt-transport-tor is enabled.
This commit is contained in:
parent
f2a4ffe394
commit
66625c35a3
30
actions/tor
30
actions/tor
@ -167,12 +167,15 @@ def get_hidden_service():
|
|||||||
hs_dir = None
|
hs_dir = None
|
||||||
hs_ports = []
|
hs_ports = []
|
||||||
|
|
||||||
with open(TOR_CONFIG, 'r') as conf_file:
|
try:
|
||||||
for line in conf_file:
|
with open(TOR_CONFIG, 'r') as conf_file:
|
||||||
if line.startswith('HiddenServiceDir'):
|
for line in conf_file:
|
||||||
hs_dir = line.split()[1]
|
if line.startswith('HiddenServiceDir'):
|
||||||
elif line.startswith('HiddenServicePort'):
|
hs_dir = line.split()[1]
|
||||||
hs_ports.append(line.split()[1])
|
elif line.startswith('HiddenServicePort'):
|
||||||
|
hs_ports.append(line.split()[1])
|
||||||
|
except FileNotFoundError:
|
||||||
|
return 'error'
|
||||||
|
|
||||||
if not hs_dir:
|
if not hs_dir:
|
||||||
return ''
|
return ''
|
||||||
@ -193,12 +196,15 @@ def subcommand_get_ports(_):
|
|||||||
except Exception:
|
except Exception:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
with open(TOR_STATE_FILE, 'r') as state_file:
|
try:
|
||||||
for line in state_file:
|
with open(TOR_STATE_FILE, 'r') as state_file:
|
||||||
matches = re.match(r'^\s*TransportProxy\s+(\S*)\s+\S+:(\d+)\s*$',
|
for line in state_file:
|
||||||
line)
|
matches = re.match(
|
||||||
if matches:
|
r'^\s*TransportProxy\s+(\S*)\s+\S+:(\d+)\s*$', line)
|
||||||
print('{0} {1}'.format(matches.group(1), matches.group(2)))
|
if matches:
|
||||||
|
print('{0} {1}'.format(matches.group(1), matches.group(2)))
|
||||||
|
except FileNotFoundError:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
def subcommand_enable_apt_transport_tor(_):
|
def subcommand_enable_apt_transport_tor(_):
|
||||||
|
|||||||
49
plinth/modules/tor/tests/test_tor.py
Normal file
49
plinth/modules/tor/tests/test_tor.py
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
#
|
||||||
|
# This file is part of Plinth.
|
||||||
|
#
|
||||||
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU Affero General Public License as
|
||||||
|
# published by the Free Software Foundation, either version 3 of the
|
||||||
|
# License, or (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU Affero General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU Affero General Public License
|
||||||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
|
||||||
|
"""
|
||||||
|
Tests for tor module.
|
||||||
|
"""
|
||||||
|
|
||||||
|
import unittest
|
||||||
|
|
||||||
|
from ..tor import is_apt_transport_tor_enabled, get_hs, get_status
|
||||||
|
|
||||||
|
|
||||||
|
class TestTor(unittest.TestCase):
|
||||||
|
"""Test cases for testing the tor module."""
|
||||||
|
def test_is_apt_transport_tor_enabled(self):
|
||||||
|
"""Test that is_apt_transport_tor_enabled does not raise any unhandled
|
||||||
|
exceptions.
|
||||||
|
"""
|
||||||
|
is_apt_transport_tor_enabled()
|
||||||
|
|
||||||
|
def test_get_hs(self):
|
||||||
|
"""Test that get_hs does not raise any unhandled exceptions.
|
||||||
|
|
||||||
|
This should work regardless of whether tor is installed, or
|
||||||
|
/etc/tor/torrc exists.
|
||||||
|
"""
|
||||||
|
get_hs()
|
||||||
|
|
||||||
|
def test_get_status(self):
|
||||||
|
"""Test that get_status does not raise any unhandled exceptions.
|
||||||
|
|
||||||
|
This should work regardless of whether tor is installed, or
|
||||||
|
/etc/tor/torrc exists.
|
||||||
|
"""
|
||||||
|
get_status()
|
||||||
Loading…
x
Reference in New Issue
Block a user