2022-07-27 14:58:39 +02:00
|
|
|
|
|
|
|
from django.test import SimpleTestCase
|
|
|
|
from helpdesk.models import get_markdown
|
|
|
|
|
|
|
|
|
|
|
|
class MarkDown(SimpleTestCase):
|
|
|
|
"""Test work Markdown functional"""
|
|
|
|
def test_markdown_html_tab(self):
|
|
|
|
expected_value = "<p><div>test<div></p>"
|
|
|
|
input_value = "<div>test<div>"
|
|
|
|
output_value = get_markdown(input_value)
|
|
|
|
self.assertEqual(output_value, expected_value)
|
|
|
|
|
|
|
|
def test_markdown_nl2br(self):
|
|
|
|
""" warning, after Line 1 - two withespace, esle did't work"""
|
|
|
|
expected_value = "<p>Line 1<br />\n Line 2</p>"
|
|
|
|
input_value = """Line 1
|
|
|
|
Line 2"""
|
|
|
|
output_value = get_markdown(input_value)
|
|
|
|
self.assertEqual(output_value, expected_value)
|
|
|
|
|
|
|
|
def test_markdown_fenced_code(self):
|
2022-08-06 13:34:16 +02:00
|
|
|
expected_value = '<h1>Title</h1>\n<pre><code class="language-python"># import os\n</code></pre>'
|
2022-07-27 14:58:39 +02:00
|
|
|
input_value = """
|
|
|
|
# Title
|
|
|
|
|
|
|
|
```python
|
|
|
|
# import os
|
|
|
|
```
|
2022-08-06 13:34:16 +02:00
|
|
|
"""
|
2022-07-27 14:58:39 +02:00
|
|
|
output_value = get_markdown(input_value)
|
|
|
|
self.assertEqual(output_value, expected_value)
|
|
|
|
|
|
|
|
def test_markdown_link_correct_protokol(self):
|
|
|
|
expected_value = '<p><a href="http://www.yahoo.ru">www.google.com</a></p>'
|
|
|
|
input_value = "[www.google.com](http://www.yahoo.ru)"
|
|
|
|
output_value = get_markdown(input_value)
|
|
|
|
self.assertEqual(output_value, expected_value)
|
|
|
|
|
|
|
|
def test_markdown_link_not_correct_protokol(self):
|
|
|
|
expected_value = '<p><a href="//www.yahoo.ru">www.google.com</a></p>'
|
|
|
|
input_value = "[www.google.com](aaaa://www.yahoo.ru)"
|
|
|
|
output_value = get_markdown(input_value)
|
|
|
|
self.assertEqual(output_value, expected_value)
|