mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
67 lines
1.8 KiB
Python
67 lines
1.8 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
Test module for custom context processors.
|
|
"""
|
|
|
|
from unittest.mock import MagicMock, Mock, patch
|
|
|
|
import pytest
|
|
from django.http import HttpRequest
|
|
|
|
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()
|
|
|
|
|
|
@patch('plinth.notification.Notification')
|
|
def test_common(Notification, load_cfg):
|
|
"""Verify that the common() function returns the correct values."""
|
|
|
|
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']
|
|
|
|
|
|
@patch('plinth.notification.Notification')
|
|
def test_common_border_conditions(Notification):
|
|
"""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/']
|