forked from rnorth/mkdocs-codeinclude-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_plugin.py
More file actions
220 lines (155 loc) · 6.12 KB
/
Copy pathtest_plugin.py
File metadata and controls
220 lines (155 loc) · 6.12 KB
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
import os
import textwrap
import unittest
from mkdocs.config import Config, DEFAULT_SCHEMA
from mkdocs.structure.files import File
from mkdocs.structure.pages import Page
from codeinclude.plugin import CodeIncludePlugin
MARKDOWN_EXAMPLE_NO_INCLUDES = """
# hello world
some text before
"""
MARKDOWN_EXAMPLE_NO_SELECTOR = """
# hello world
some text before
<!--codeinclude-->
[foo](Foo.java)
<!--/codeinclude-->
and some text after
"""
MARKDOWN_EXAMPLE_SELECTOR_ON_SAME_LINE = """
# hello world
some text before
<!--codeinclude-->
[foo](Foo.java) lines:1
<!--/codeinclude-->
and some text after
"""
MARKDOWN_EXAMPLE_SELECTOR_ON_NEXT_LINE = """
# hello world
some text before
<!--codeinclude-->
[foo](Foo.java)
lines:1
<!--/codeinclude-->
and some text after
"""
MULTI_TAB_MARKDOWN_EXAMPLE = """
# hello world
some text before
<!--codeinclude-->
[foo](Foo.java)
[bar](Bar.java)
<!--/codeinclude-->
and some text after
"""
EMPTY_TITLE_MARKDOWN_EXAMPLE = """
# hello world
some text before
<!--codeinclude-->
[](Foo.java)
<!--/codeinclude-->
and some text after
"""
MARKDOWN_EXAMPLE_RIGHT_CURLY = """
# hello world
<!--codeinclude-->
[Curly](Curly.java) block:Curly
<!--/codeinclude-->
"""
c = Config(schema=DEFAULT_SCHEMA)
c["site_url"] = "http://example.org/"
PAGE_EXAMPLE = Page("", File(os.path.abspath("./tests/codeinclude/fixture/text.md"), "/src", "/dest", False), c)
class PluginTextCase(unittest.TestCase):
def test_no_includes(self):
plugin = CodeIncludePlugin()
result = plugin.on_page_markdown(MARKDOWN_EXAMPLE_NO_INCLUDES, PAGE_EXAMPLE, dict())
self.assertEqual(MARKDOWN_EXAMPLE_NO_INCLUDES.strip(),
result.strip())
def test_simple_case_no_selector(self):
plugin = CodeIncludePlugin()
result = plugin.on_page_markdown(MARKDOWN_EXAMPLE_NO_SELECTOR, PAGE_EXAMPLE, dict())
print(result)
self.assertEqual(textwrap.dedent("""
# hello world
some text before
```java tab=\"foo\"
public class Foo {
}
```
and some text after
""").strip(),
result.strip())
@unittest.skip("https://github.com/rnorth/mkdocs-codeinclude-plugin/issues/13")
def test_simple_case_right_curly_inside_block(self):
plugin = CodeIncludePlugin()
result = plugin.on_page_markdown(MARKDOWN_EXAMPLE_RIGHT_CURLY, PAGE_EXAMPLE, dict())
print(result)
self.assertEqual(textwrap.dedent(r"""
# hello world
```java tab="Curly"
public class Curly {
public static String RIGHT_CURLY_REGEX = "\\}";
}
```
""").strip(),
result.strip())
def test_simple_case_selector_on_same_line(self):
plugin = CodeIncludePlugin()
result = plugin.on_page_markdown(MARKDOWN_EXAMPLE_SELECTOR_ON_SAME_LINE, PAGE_EXAMPLE, dict())
print(result)
self.assertEqual(textwrap.dedent("""
# hello world
some text before
```java tab=\"foo\"
public class Foo {
```
and some text after
""").strip(),
result.strip())
def test_simple_case_selector_on_next_line(self):
plugin = CodeIncludePlugin()
result = plugin.on_page_markdown(MARKDOWN_EXAMPLE_SELECTOR_ON_NEXT_LINE, PAGE_EXAMPLE, dict())
print(result)
self.assertEqual(textwrap.dedent("""
# hello world
some text before
```java tab=\"foo\"
public class Foo {
```
and some text after
""").strip(),
result.strip())
def test_multi_tab_case(self):
plugin = CodeIncludePlugin()
result = plugin.on_page_markdown(MULTI_TAB_MARKDOWN_EXAMPLE, PAGE_EXAMPLE, dict())
print(result)
self.assertEqual(textwrap.dedent("""
# hello world
some text before
```java tab=\"foo\"
public class Foo {
}
```
```java tab=\"bar\"
public class Bar {
// This UTF-8 encoded file has some multi-byte characters: œ, ë
}
```
and some text after
""").strip(),
result.strip())
def test_empty_title_case(self):
plugin = CodeIncludePlugin()
result = plugin.on_page_markdown(EMPTY_TITLE_MARKDOWN_EXAMPLE, PAGE_EXAMPLE, dict())
print(result)
self.assertEqual(textwrap.dedent("""
# hello world
some text before
```java
public class Foo {
}
```
and some text after
""").strip(),
result.strip())