view core/tests/test_mdexts.py @ 924:78b459d4ab17

App refactor for custom_search for Django 1.7.7. upgrade. This commit prevents a lot of Django warnings by creating our Haystack signal processor as part of the custom_search apps' ready() method.
author Brian Neal <bgneal@gmail.com>
date Thu, 09 Apr 2015 19:43:07 -0500
parents f12751259f66
children
line wrap: on
line source
"""Testing our custom Markdown extensions."""

import unittest

import markdown

from core.mdexts.ssl_images import SslImagesExtension


class SslImagesExtTestCase(unittest.TestCase):
    """Tests for the SslImagesExtension."""

    def setUp(self):
        self.md = markdown.Markdown(extensions=[SslImagesExtension()])

    def test_simple(self):
        self.assertEqual(self.md.convert(''), '')
        self.assertEqual(self.md.convert('1'), '<p>1</p>')

    def test_no_change(self):
        self.assertEqual(self.md.convert('![image](https://example.com/1.jpg)'),
                         u'<p><img alt="image" src="https://example.com/1.jpg" /></p>')

    def test_change(self):
        text = u'![image](http://example.com/1.jpg)'
        html = u'<p><a href="http://example.com/1.jpg">Click for image</a></p>'
        self.assertEqual(self.md.convert(text), html)