mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
82 lines
2.4 KiB
Python
82 lines
2.4 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 module for custom context processors.
|
|
"""
|
|
|
|
from unittest.mock import MagicMock, Mock
|
|
|
|
import pytest
|
|
from django.http import HttpRequest
|
|
|
|
from plinth import cfg
|
|
from plinth import context_processors as cp
|
|
from plinth import menu as menu_module
|
|
|
|
|
|
@pytest.fixture(name='menu', autouse=True)
|
|
def fixture_menu():
|
|
"""Initialized menu module."""
|
|
menu_module.init()
|
|
|
|
|
|
def test_common():
|
|
"""Verify that the common() function returns the correct values."""
|
|
cfg.read() # initialize config settings
|
|
|
|
request = HttpRequest()
|
|
request.path = '/aaa/bbb/ccc/'
|
|
request.user = Mock()
|
|
request.user.groups.filter().exists = Mock(return_value=True)
|
|
request.session = MagicMock()
|
|
response = cp.common(request)
|
|
assert response is not None
|
|
|
|
config = response['cfg']
|
|
assert config is not None
|
|
assert config.box_name == 'FreedomBox'
|
|
|
|
assert response['box_name'] == 'FreedomBox'
|
|
|
|
submenu = response['submenu']
|
|
assert submenu is None
|
|
|
|
urls = response['active_menu_urls']
|
|
assert urls is not None
|
|
assert ['/', '/aaa/', '/aaa/bbb/', '/aaa/bbb/ccc/'] == urls
|
|
|
|
assert response['user_is_admin']
|
|
|
|
|
|
def test_common_border_conditions():
|
|
"""Verify that the common() function works for border conditions."""
|
|
request = HttpRequest()
|
|
request.path = ''
|
|
request.user = Mock()
|
|
request.user.groups.filter().exists = Mock(return_value=True)
|
|
request.session = MagicMock()
|
|
response = cp.common(request)
|
|
assert response['active_menu_urls'] == []
|
|
|
|
request.path = '/'
|
|
response = cp.common(request)
|
|
assert response['active_menu_urls'] == ['/']
|
|
|
|
request.path = '/aaa/bbb'
|
|
response = cp.common(request)
|
|
assert response['active_menu_urls'] == ['/', '/aaa/']
|