2016-05-24 14:06:34 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import absolute_import
|
|
|
|
|
2016-06-04 20:28:02 +02:00
|
|
|
from typing import Any, Dict, Iterable
|
2016-05-24 14:06:34 +02:00
|
|
|
import logging
|
|
|
|
|
2016-05-11 19:29:29 +02:00
|
|
|
from django.conf import settings
|
|
|
|
from django.test import override_settings
|
2016-05-11 19:01:53 +02:00
|
|
|
from django.template import Template, Context
|
2016-05-24 14:06:34 +02:00
|
|
|
from django.template.loader import get_template
|
|
|
|
|
|
|
|
from zerver.models import get_user_profile_by_email
|
2016-08-23 02:08:42 +02:00
|
|
|
from zerver.lib.test_helpers import get_all_templates, ZulipTestCase
|
2016-05-24 14:06:34 +02:00
|
|
|
|
|
|
|
class get_form_value(object):
|
|
|
|
def __init__(self, value):
|
2016-06-04 20:28:02 +02:00
|
|
|
# type: (Any) -> None
|
2016-05-24 14:06:34 +02:00
|
|
|
self._value = value
|
|
|
|
|
|
|
|
def value(self):
|
2016-06-04 20:28:02 +02:00
|
|
|
# type: () -> Any
|
2016-05-24 14:06:34 +02:00
|
|
|
return self._value
|
|
|
|
|
|
|
|
|
|
|
|
class DummyForm(dict):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2016-08-23 02:08:42 +02:00
|
|
|
class TemplateTestCase(ZulipTestCase):
|
2016-05-24 14:06:34 +02:00
|
|
|
"""
|
|
|
|
Tests that backend template rendering doesn't crash.
|
|
|
|
|
|
|
|
This renders all the Zulip backend templates, passing dummy data
|
|
|
|
as the context, which allows us to verify whether any of the
|
|
|
|
templates are broken enough to not render at all (no verification
|
|
|
|
is done that the output looks right). Please see `get_context`
|
|
|
|
function documentation for more information.
|
|
|
|
"""
|
2016-05-11 19:29:29 +02:00
|
|
|
@override_settings(TERMS_OF_SERVICE=None)
|
2016-05-24 14:06:34 +02:00
|
|
|
def test_templates(self):
|
2016-06-04 20:28:02 +02:00
|
|
|
# type: () -> None
|
|
|
|
|
2016-05-24 14:06:34 +02:00
|
|
|
# Just add the templates whose context has a conflict with other
|
2016-05-11 19:01:53 +02:00
|
|
|
# templates' context in `defer`.
|
|
|
|
defer = ['analytics/activity.html']
|
|
|
|
skip = defer + ['tests/test_markdown.html', 'zerver/terms.html']
|
|
|
|
templates = [t for t in get_all_templates() if t not in skip]
|
2016-05-24 14:06:34 +02:00
|
|
|
self.render_templates(templates, self.get_context())
|
|
|
|
|
2016-05-11 19:01:53 +02:00
|
|
|
# Test the deferred templates with updated context.
|
2016-05-24 14:06:34 +02:00
|
|
|
update = {'data': [('one', 'two')]}
|
2016-05-11 19:01:53 +02:00
|
|
|
self.render_templates(defer, self.get_context(**update))
|
2016-05-24 14:06:34 +02:00
|
|
|
|
|
|
|
def render_templates(self, templates, context):
|
2016-06-04 20:28:02 +02:00
|
|
|
# type: (Iterable[Template], Dict[str, Any]) -> None
|
2016-05-24 14:06:34 +02:00
|
|
|
for template in templates:
|
|
|
|
template = get_template(template)
|
|
|
|
try:
|
|
|
|
template.render(context)
|
|
|
|
except Exception:
|
2016-08-09 18:53:41 +02:00
|
|
|
logging.error("Exception while rendering '{}'".format(template.template.name))
|
|
|
|
raise
|
2016-05-24 14:06:34 +02:00
|
|
|
|
|
|
|
def get_context(self, **kwargs):
|
2016-06-04 20:28:02 +02:00
|
|
|
# type: (**Any) -> Dict[str, Any]
|
2016-05-24 14:06:34 +02:00
|
|
|
"""Get the dummy context for shallow testing.
|
|
|
|
|
|
|
|
The context returned will always contain a parameter called
|
|
|
|
`shallow_tested`, which tells the signal receiver that the
|
|
|
|
test was not rendered in an actual logical test (so we can
|
|
|
|
still do coverage reporting on which templates have a logical
|
|
|
|
test).
|
|
|
|
|
|
|
|
Note: `context` just holds dummy values used to make the test
|
|
|
|
pass. This context only ensures that the templates do not
|
|
|
|
throw a 500 error when rendered using dummy data. If new
|
|
|
|
required parameters are added to a template, this test will
|
|
|
|
fail; the usual fix is to just update the context below to add
|
|
|
|
the new parameter to the dummy data.
|
|
|
|
|
|
|
|
:param kwargs: Keyword arguments can be used to update the base
|
|
|
|
context.
|
|
|
|
|
|
|
|
"""
|
|
|
|
email = "hamlet@zulip.com"
|
|
|
|
user_profile = get_user_profile_by_email(email)
|
|
|
|
|
|
|
|
context = dict(
|
2016-11-09 01:45:36 +01:00
|
|
|
article="templates/zerver/help/index.md",
|
2016-05-24 14:06:34 +02:00
|
|
|
shallow_tested=True,
|
|
|
|
user_profile=user_profile,
|
2016-08-21 08:19:25 +02:00
|
|
|
user=user_profile,
|
2016-05-24 14:06:34 +02:00
|
|
|
product_name='testing',
|
|
|
|
form=DummyForm(
|
|
|
|
full_name=get_form_value('John Doe'),
|
|
|
|
terms=get_form_value(True),
|
|
|
|
email=get_form_value(email),
|
|
|
|
),
|
|
|
|
current_url=lambda: 'www.zulip.com',
|
2016-08-09 18:53:57 +02:00
|
|
|
integrations_dict={},
|
2016-05-24 14:06:34 +02:00
|
|
|
referrer=dict(
|
|
|
|
full_name='John Doe',
|
|
|
|
realm=dict(name='zulip.com'),
|
|
|
|
),
|
|
|
|
uid='uid',
|
|
|
|
token='token',
|
|
|
|
message_count=0,
|
|
|
|
messages=[dict(header='Header')],
|
|
|
|
new_streams=dict(html=''),
|
|
|
|
data=dict(title='Title'),
|
|
|
|
)
|
|
|
|
|
|
|
|
context.update(kwargs)
|
|
|
|
return context
|
2016-05-11 19:01:53 +02:00
|
|
|
|
|
|
|
def test_markdown_in_template(self):
|
|
|
|
# type: () -> None
|
|
|
|
template = get_template("tests/test_markdown.html")
|
|
|
|
context = {
|
|
|
|
'markdown_test_file': "zerver/tests/markdown/test_markdown.md"
|
|
|
|
}
|
|
|
|
content = template.render(context)
|
|
|
|
|
|
|
|
content_sans_whitespace = content.replace(" ", "").replace('\n', '')
|
|
|
|
self.assertEqual(content_sans_whitespace,
|
2016-11-09 21:52:42 +01:00
|
|
|
'header<h1id="hello">Hello!</h1><p>Thisissome<em>boldtext</em>.</p>footer')
|
2016-05-11 19:29:29 +02:00
|
|
|
|
|
|
|
def test_custom_tos_template(self):
|
|
|
|
# type: () -> None
|
|
|
|
response = self.client_get("/terms/")
|
|
|
|
self.assertEqual(response.status_code, 200)
|
2016-07-30 06:11:27 +02:00
|
|
|
self.assert_in_response(u"Thanks for using our products and services (\"Services\"). ", response)
|
|
|
|
self.assert_in_response(u"By using our Services, you are agreeing to these terms", response)
|