mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-11 08:23:49 +00:00
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Joseph Nuthalapati <njoseph@thoughtworks.com>
89 lines
2.6 KiB
Python
89 lines
2.6 KiB
Python
#
|
|
# This file is part of FreedomBox.
|
|
#
|
|
# 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/>.
|
|
#
|
|
"""
|
|
Test I2P router configuration editing helper.
|
|
"""
|
|
|
|
import pytest
|
|
|
|
from plinth.modules.i2p.helpers import RouterEditor
|
|
from plinth.modules.i2p.tests import DATA_DIR
|
|
|
|
ROUTER_CONF_PATH = str(DATA_DIR / 'router.config')
|
|
|
|
|
|
@pytest.fixture(name='editor')
|
|
def fixture_editor():
|
|
"""Return editor instance object for each test."""
|
|
return RouterEditor(ROUTER_CONF_PATH)
|
|
|
|
|
|
def test_count_favorites(editor):
|
|
"""Test counting favorites."""
|
|
editor.read_conf()
|
|
favorites = editor.get_favorites()
|
|
assert len(favorites.keys()) == 17
|
|
|
|
|
|
def test_add_normal_favorite(editor):
|
|
"""Test adding a normal favorite."""
|
|
editor.read_conf()
|
|
name = 'Somewhere'
|
|
url = 'http://somewhere-again.i2p'
|
|
description = "Just somewhere else"
|
|
editor.add_favorite(name, url, description)
|
|
|
|
favorites = editor.get_favorites()
|
|
assert url in favorites
|
|
favorite = favorites[url]
|
|
assert favorite['name'] == name
|
|
assert favorite['description'] == description
|
|
|
|
assert len(favorites) == 18
|
|
|
|
|
|
def test_add_favorite_with_comma(editor):
|
|
"""Test adding a favorite with common in its name."""
|
|
editor.read_conf()
|
|
name = 'Name,with,comma'
|
|
expected_name = name.replace(',', '.')
|
|
url = 'http://url-without-comma.i2p'
|
|
description = "Another,comma,to,play,with"
|
|
expected_description = description.replace(',', '.')
|
|
|
|
editor.add_favorite(name, url, description)
|
|
|
|
favorites = editor.get_favorites()
|
|
assert url in favorites
|
|
favorite = favorites[url]
|
|
assert favorite['name'] == expected_name
|
|
assert favorite['description'] == expected_description
|
|
|
|
assert len(favorites) == 18
|
|
|
|
|
|
def test_add_fav_to_empty_config(editor):
|
|
"""Test adding favorite to empty configuration."""
|
|
editor.conf_filename = '/tmp/inexistent.conf'
|
|
editor.read_conf()
|
|
assert not editor.get_favorites()
|
|
|
|
name = 'Test Favorite'
|
|
url = 'http://test-fav.i2p'
|
|
editor.add_favorite(name, url)
|
|
assert len(editor.get_favorites()) == 1
|