|
@ -1,6 +1,6 @@ |
|
|
from django.test import TestCase |
|
|
from django.test import TestCase |
|
|
# TODO: Možná vyrobit separátní soubory v tests/… než mít všechny testy v jednom souboru? |
|
|
# TODO: Možná vyrobit separátní soubory v tests/… než mít všechny testy v jednom souboru? |
|
|
from various.templatetags.mail import maillink |
|
|
from various.templatetags.mail import maillink, mailurl |
|
|
|
|
|
|
|
|
class MailTagsTest(TestCase): |
|
|
class MailTagsTest(TestCase): |
|
|
"""Testuje template tagy ohledně mailů.""" |
|
|
"""Testuje template tagy ohledně mailů.""" |
|
@ -24,6 +24,16 @@ class MailTagsTest(TestCase): |
|
|
self.assertRaises(ValueError, lambda: maillink('Nemám příjemce')) |
|
|
self.assertRaises(ValueError, lambda: maillink('Nemám příjemce')) |
|
|
self.assertRaises(TypeError, lambda: maillink()) # Nemá text, takže to shodí python |
|
|
self.assertRaises(TypeError, lambda: maillink()) # Nemá text, takže to shodí python |
|
|
|
|
|
|
|
|
|
|
|
def test_mailurl(self): |
|
|
|
|
|
self.assertEquals(mailurl(to='some@body.test'), r'mailto:some@body.test') |
|
|
|
|
|
self.assertEquals(mailurl(to=['some@body.test']), r'mailto:some@body.test') |
|
|
|
|
|
self.assertEquals(mailurl(to=['alice@test.test', 'bob@jinde.test']), r'mailto:alice@test.test,bob@jinde.test') |
|
|
|
|
|
self.assertEquals( |
|
|
|
|
|
mailurl(to='some@body.test', body='Tělo', subject='Předmět'), |
|
|
|
|
|
r'mailto:some@body.test?subject=P%C5%99edm%C4%9Bt&body=T%C4%9Blo', |
|
|
|
|
|
) |
|
|
|
|
|
self.assertRaises(ValueError, lambda: mailurl()) |
|
|
|
|
|
|
|
|
def test_render_in_template(self): |
|
|
def test_render_in_template(self): |
|
|
# Pomocná funkce: vykreslí template do stringu |
|
|
# Pomocná funkce: vykreslí template do stringu |
|
|
# Ref: https://stackoverflow.com/a/1690879 |
|
|
# Ref: https://stackoverflow.com/a/1690879 |
|
@ -42,3 +52,9 @@ class MailTagsTest(TestCase): |
|
|
render_template(template), |
|
|
render_template(template), |
|
|
r'<a href="mailto:alice@test.test?subject=Oprava%20%C5%99e%C5%A1en%C3%AD">Text</a>', |
|
|
r'<a href="mailto:alice@test.test?subject=Oprava%20%C5%99e%C5%A1en%C3%AD">Text</a>', |
|
|
) |
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
mailurltemplate = ( |
|
|
|
|
|
r'{% load mail %}' |
|
|
|
|
|
r'{% mailurl to="alice@test.test" subject="Čau Alice" %}' |
|
|
|
|
|
) |
|
|
|
|
|
self.assertEquals(render_template(mailurltemplate), r'mailto:alice@test.test?subject=%C4%8Cau%20Alice') |
|
|