django-analytical/tests/unit/test_utils.py

130 lines
4.2 KiB
Python
Raw Normal View History

"""
Tests for the analytical.utils module.
"""
# import django
2011-01-30 09:06:01 +00:00
2021-02-20 12:41:17 +00:00
import pytest
from django.contrib.auth.models import AbstractBaseUser
2015-12-20 17:40:08 +00:00
from django.db import models
2011-01-30 09:06:01 +00:00
from django.http import HttpRequest
from django.template import Context
from django.test.utils import override_settings
2021-02-20 12:41:17 +00:00
from utils import TestCase
2011-01-30 09:06:01 +00:00
2011-09-12 16:25:46 +00:00
from analytical.utils import (
AnalyticalException,
get_domain,
get_identity,
get_required_setting,
is_internal_ip,
)
2011-09-12 16:25:46 +00:00
class SettingDeletedTestCase(TestCase):
@override_settings(USER_ID=None)
2011-09-12 16:25:46 +00:00
def test_get_required_setting(self):
"""
Make sure using get_required_setting fails in the right place.
"""
2015-04-18 04:42:54 +00:00
with pytest.raises(AnalyticalException, match="USER_ID setting is not set"):
get_required_setting("USER_ID", r"\d+", "invalid USER_ID")
2011-01-30 09:06:01 +00:00
2015-12-20 17:40:08 +00:00
class MyUser(AbstractBaseUser):
identity = models.CharField(max_length=50)
2015-12-20 17:40:08 +00:00
USERNAME_FIELD = 'identity'
2019-04-11 23:45:45 +00:00
class Meta:
2021-09-27 18:36:13 +00:00
abstract = False
2019-04-11 23:45:45 +00:00
app_label = 'testapp'
2015-12-20 17:40:08 +00:00
class GetIdentityTestCase(TestCase):
def test_custom_username_field(self):
get_id = get_identity(Context({}), user=MyUser(identity='fake_id'))
assert get_id == 'fake_id'
2015-12-20 17:40:08 +00:00
@override_settings(ANALYTICAL_DOMAIN="example.org")
class GetDomainTestCase(TestCase):
def test_get_service_domain_from_context(self):
context = Context({'test_domain': 'example.com'})
assert get_domain(context, 'test') == 'example.com'
def test_get_analytical_domain_from_context(self):
context = Context({'analytical_domain': 'example.com'})
assert get_domain(context, 'test') == 'example.com'
@override_settings(TEST_DOMAIN="example.net")
def test_get_service_domain_from_settings(self):
context = Context()
assert get_domain(context, 'test') == 'example.net'
def test_get_analytical_domain_from_settings(self):
context = Context()
assert get_domain(context, 'test') == 'example.org'
# FIXME: enable Django apps dynamically and enable test again
# @with_apps('django.contrib.sites')
# @override_settings(TEST_DOMAIN=SETTING_DELETED, ANALYTICAL_DOMAIN=SETTING_DELETED)
# class GetDomainTestCaseWithSites(TestCase):
# def test_get_domain_from_site(self):
# site = Site.objects.create(domain="example.com", name="test")
# with override_settings(SITE_ID=site.id):
# context = Context()
# self.assertEqual(get_domain(context, 'test'), 'example.com')
2011-01-30 09:06:01 +00:00
class InternalIpTestCase(TestCase):
@override_settings(ANALYTICAL_INTERNAL_IPS=['1.1.1.1'])
2011-01-30 09:06:01 +00:00
def test_render_no_internal_ip(self):
context = Context()
assert not is_internal_ip(context)
2011-01-30 09:06:01 +00:00
2015-12-17 21:48:24 +00:00
@override_settings(INTERNAL_IPS=['1.1.1.1'])
@override_settings(ANALYTICAL_INTERNAL_IPS=[])
def test_render_analytical_internal_ips_override_when_empty(self):
req = HttpRequest()
req.META['REMOTE_ADDR'] = '1.1.1.1'
context = Context({'request': req})
assert not is_internal_ip(context)
2015-12-17 21:48:24 +00:00
@override_settings(ANALYTICAL_INTERNAL_IPS=['1.1.1.1'])
2011-01-30 09:06:01 +00:00
def test_render_internal_ip(self):
req = HttpRequest()
req.META['REMOTE_ADDR'] = '1.1.1.1'
context = Context({'request': req})
assert is_internal_ip(context)
2011-01-30 09:06:01 +00:00
@override_settings(TEST_INTERNAL_IPS=['1.1.1.1'])
2011-01-30 09:06:01 +00:00
def test_render_prefix_internal_ip(self):
req = HttpRequest()
req.META['REMOTE_ADDR'] = '1.1.1.1'
context = Context({'request': req})
assert is_internal_ip(context, 'TEST')
2011-01-30 09:06:01 +00:00
@override_settings(INTERNAL_IPS=['1.1.1.1'])
2011-01-30 09:06:01 +00:00
def test_render_internal_ip_fallback(self):
req = HttpRequest()
req.META['REMOTE_ADDR'] = '1.1.1.1'
context = Context({'request': req})
assert is_internal_ip(context)
2011-01-30 09:06:01 +00:00
@override_settings(ANALYTICAL_INTERNAL_IPS=['1.1.1.1'])
2011-01-30 09:06:01 +00:00
def test_render_internal_ip_forwarded_for(self):
req = HttpRequest()
req.META['HTTP_X_FORWARDED_FOR'] = '1.1.1.1'
context = Context({'request': req})
assert is_internal_ip(context)
2011-01-30 09:06:01 +00:00
@override_settings(ANALYTICAL_INTERNAL_IPS=['1.1.1.1'])
2011-01-30 09:06:01 +00:00
def test_render_different_internal_ip(self):
req = HttpRequest()
req.META['REMOTE_ADDR'] = '2.2.2.2'
context = Context({'request': req})
assert not is_internal_ip(context)