File: test_tag_hubspot.py

package info (click to toggle)
python-django-analytical 3.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 720 kB
  • sloc: python: 4,693; makefile: 7
file content (52 lines) | stat: -rw-r--r-- 1,602 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
"""
Tests for the HubSpot template tags and filters.
"""

import pytest
from django.http import HttpRequest
from django.template import Context
from django.test.utils import override_settings
from utils import TagTestCase

from analytical.templatetags.hubspot import HubSpotNode
from analytical.utils import AnalyticalException


@override_settings(HUBSPOT_PORTAL_ID='1234')
class HubSpotTagTestCase(TagTestCase):
    """
    Tests for the ``hubspot`` template tag.
    """

    def test_tag(self):
        r = self.render_tag('hubspot', 'hubspot')
        assert (
            "n.id=i;n.src='//js.hs-analytics.net/analytics/'"
            "+(Math.ceil(new Date()/r)*r)+'/1234.js';"
        ) in r

    def test_node(self):
        r = HubSpotNode().render(Context())
        assert (
            "n.id=i;n.src='//js.hs-analytics.net/analytics/'"
            "+(Math.ceil(new Date()/r)*r)+'/1234.js';"
        ) in r

    @override_settings(HUBSPOT_PORTAL_ID=None)
    def test_no_portal_id(self):
        with pytest.raises(AnalyticalException):
            HubSpotNode()

    @override_settings(HUBSPOT_PORTAL_ID='wrong')
    def test_wrong_portal_id(self):
        with pytest.raises(AnalyticalException):
            HubSpotNode()

    @override_settings(ANALYTICAL_INTERNAL_IPS=['1.1.1.1'])
    def test_render_internal_ip(self):
        req = HttpRequest()
        req.META['REMOTE_ADDR'] = '1.1.1.1'
        context = Context({'request': req})
        r = HubSpotNode().render(context)
        assert r.startswith('<!-- HubSpot disabled on internal IP address')
        assert r.endswith('-->')