summaryrefslogtreecommitdiff
path: root/service/test/unit/resources/test_inbox_resource.py
blob: 03fe6f1a875b320ba3cc60ddfb44d3b239ee183f (plain)
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import re

from mock import MagicMock, patch
from mockito import mock, when, any as ANY

from pixelated.application import UserAgentMode
from pixelated.resources.features_resource import FeaturesResource
from test.unit.resources import DummySite
from twisted.trial import unittest
from twisted.web.test.requesthelper import DummyRequest
from pixelated.resources.inbox_resource import InboxResource, MODE_STARTUP, MODE_RUNNING


class TestInboxResource(unittest.TestCase):
    MAIL_ADDRESS = 'test_user@pixelated-project.org'

    def setUp(self):
        mail_service = mock()
        mail_service.account_email = self.MAIL_ADDRESS

        services = mock()
        services.mail_service = mail_service

        services_factory = mock()
        services_factory.mode = mock()
        when(services_factory).services(ANY()).thenReturn(services)

        self.inbox_resource = InboxResource(services_factory)
        self.web = DummySite(self.inbox_resource)

    def test_render_GET_should_template_account_email(self):
        self.inbox_resource._html_template = "<html><head><title>$account_email</title></head></html>"
        self.inbox_resource.initialize()

        request = DummyRequest([''])
        request.addCookie = lambda key, value: 'stubbed'

        d = self.web.get(request)

        def assert_response(_):
            expected = "<title>{0}</title>".format(self.MAIL_ADDRESS)
            matches = re.findall(expected, request.written[0])
            self.assertEquals(len(matches), 1)

        d.addCallback(assert_response)
        return d

    def _test_should_renew_xsrf_cookie(self):
        request = DummyRequest([''])
        request.addCookie = MagicMock()
        generated_csrf_token = 'csrf_token'
        mock_sha = MagicMock()
        mock_sha.hexdigest = MagicMock(return_value=generated_csrf_token)

        with patch('hashlib.sha256', return_value=mock_sha):
            d = self.web.get(request)

        def assert_csrf_cookie(_):
            request.addCookie.assert_called_once_with('XSRF-TOKEN', generated_csrf_token)

        d.addCallback(assert_csrf_cookie)
        return d

    # TODO should this be here or just in the root resource test?
    def test_should_renew_xsrf_cookie_on_startup_mode(self):
        self.inbox_resource._mode = MODE_STARTUP
        self._test_should_renew_xsrf_cookie()

    # TODO should this be here or just in the root resource test?
    def test_should_renew_xsrf_cookie_on_running_mode(self):
        self.inbox_resource._mode = MODE_RUNNING
        self._test_should_renew_xsrf_cookie()