summaryrefslogtreecommitdiffstats
path: root/tests/test_mdl_style.py
blob: d7421d13d6dde5e41b43c68acf118531e5e188d7 (plain) (blame)
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
# -*- coding: utf-8 -*-
#
#   Copyright © 2017 markdown-link-style contributors.
#
#    This file is part of markdown-link-style.
#
#   markdown-link-style is free software: you can redistribute it
#   and/or modify it under the terms of the GNU General Public License
#   as published by the Free Software Foundation, either version 3 of
#   the License, or (at your option) any later version.
#
#   markdown-link-style is distributed in the hope that it will be
#   useful, but WITHOUT ANY WARRANTY; without even the implied
#   warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#   See the GNU General Public License for more details.
#
#   You should have received a copy of the GNU General Public License
#   along with markdown-link-style (see COPYING).  If not, see
#   <http://www.gnu.org/licenses/>.

from mistune import Renderer, Markdown
from nose.tools import *
from pkg_resources import resource_string

from mdl_style import *


def _get_data(f):
    rs = resource_string(__name__, '/'.join(['data', f]))
    return rs.decode()

class TestLSRendererIL(object):
    """Test class for mdl_style.LSRenderer inline link style.

    """

    def setup(self):
        self.md = LSMarkdown(link_style='inline')

    def test_autolink_00(self):
        d = _get_data('autolink_00.md')
        d_expected = _get_data('autolink_00-expected.md')
        assert_equals(self.md(d), d_expected)

    def test_link_footnote_to_inline_style_conversion_00(self):
        d = _get_data('inline_link_style_00.md')
        expected_result = _get_data('inline_link_style_00-expected.md')
        assert_equal(self.md(d), expected_result)

    def test_renderer_parses_images(self):
        d = _get_data('inline_parses_images_00.md')
        expected_result = _get_data('inline_parses_images_00-expected.md')
        assert_equal(self.md(d), expected_result)

    def test_renderer_does_not_parse_link_breaks(self):
        d = _get_data('does_not_parse_link_breaks_00.md')
        assert_equal(self.md(d), d)

    def test_renderer_does_not_parse_headers(self):
        d = _get_data('does_not_parse_headers_00.md')
        assert_equal(self.md(d), d)

    def test_renderer_does_not_parse_blockquotes(self):
        d = _get_data('does_not_parse_blockquotes_00.md')
        assert_equal(self.md(d), d)

    def test_renderer_does_not_parse_lists(self):
        d = _get_data('does_not_parse_lists_00.md')
        assert_equal(self.md(d), d)

    def test_renderer_does_not_parse_codeblocks(self):
        d = _get_data('does_not_parse_codeblocks_00.md')
        assert_equal(self.md(d), d)

    def test_renderer_does_not_parse_hrules(self):
        d = _get_data('does_not_parse_hrules_00.md')
        assert_equal(self.md(d), d)

    def test_renderer_does_not_parse_emphasis(self):
        d = _get_data('does_not_parse_emphasis_00.md')
        assert_equal(self.md(d), d)

    def test_renderer_does_not_parse_code(self):
        d = _get_data('does_not_parse_code_00.md')
        assert_equal(self.md(d), d)

    def teardown(self):
        pass


class TestLSRendererFN(object):
    """Test class for mdl_style.LSRenderer footnote link style.

    """

    def setup(self):
        self.md = LSMarkdown(link_style='footnote')

    def test_autolink_00(self):
        d = _get_data('autolink_00.md')
        d_expected = _get_data('autolink_00-expected.md')
        assert_equals(self.md(d), d_expected)

    def test_link_inline_to_footnote_style_conversion_00(self):
        d = _get_data('footnote_link_style_00.md')
        expected_result = _get_data('footnote_link_style_00-expected.md')
        assert_equal(self.md(d), expected_result)

    def test_renderer_parses_images(self):
        d = _get_data('footnote_parses_images_00.md')
        expected_result = _get_data('footnote_parses_images_00-expected.md')
        assert_equal(self.md(d), expected_result)

    def test_renderer_does_not_parse_link_breaks(self):
        d = _get_data('does_not_parse_link_breaks_00.md')
        assert_equal(self.md(d), d)

    def test_renderer_does_not_parse_headers(self):
        d = _get_data('does_not_parse_headers_00.md')
        assert_equal(self.md(d), d)

    def test_renderer_does_not_parse_blockquotes(self):
        d = _get_data('does_not_parse_blockquotes_00.md')
        assert_equal(self.md(d), d)

    def test_renderer_does_not_parse_lists(self):
        d = _get_data('does_not_parse_lists_00.md')
        assert_equal(self.md(d), d)

    def test_renderer_does_not_parse_codeblocks(self):
        d = _get_data('does_not_parse_codeblocks_00.md')
        assert_equal(self.md(d), d)

    def test_renderer_does_not_parse_hrules(self):
        d = _get_data('does_not_parse_hrules_00.md')
        assert_equal(self.md(d), d)

    def test_renderer_does_not_parse_emphasis(self):
        d = _get_data('does_not_parse_emphasis_00.md')
        assert_equal(self.md(d), d)

    def test_renderer_does_not_parse_code(self):
        d = _get_data('does_not_parse_code_00.md')
        assert_equal(self.md(d), d)

    def teardown(self):
        pass