File: test_pathconverter.py

package info (click to toggle)
pymdown-extensions 10.13-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,104 kB
  • sloc: python: 60,117; javascript: 846; sh: 8; makefile: 5
file content (373 lines) | stat: -rw-r--r-- 11,369 bytes parent folder | download | duplicates (3)
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
"""Test cases for PathConverter."""
from .. import util
import os

CURRENT_DIR = os.path.dirname(os.path.abspath(__file__))
PARENT_DIR = os.path.dirname(CURRENT_DIR)


class TestRelative(util.MdCase):
    """Test relative paths."""

    extension = ["pymdownx.pathconverter"]
    extension_configs = {
        "pymdownx.pathconverter": {
            "base_path": CURRENT_DIR,
            "relative_path": PARENT_DIR
        }
    }

    def test_in_script(self):
        """Test that we do not parse image in script."""

        self.check_markdown(
            r'''
            <script>
            var str = '<img alt="picture" src="../test_extensions/_assets/bg.png" />'
            </script>
            ''',
            r'''
            <script>
            var str = '<img alt="picture" src="../test_extensions/_assets/bg.png" />'
            </script>
            ''',
            True
        )

    def test_comment(self):
        """Test comment."""

        self.check_markdown(
            r'<!-- ![picture](../test_extensions/_assets/bg.png) -->',
            r'<!-- ![picture](../test_extensions/_assets/bg.png) -->'
        )

    def test_relative_path(self):
        """Test relative path."""

        self.check_markdown(
            r'![picture](../test_extensions/_assets/bg.png)',
            r'<p><img alt="picture" src="test_extensions/_assets/bg.png" /></p>'
        )

    def test_file_win_file_path_root(self):
        """Test windows file:// path with root slash."""

        self.check_markdown(
            r'[file link windows abs](file:///c:/path/file.html)',
            r'<p><a href="file:///c:/path/file.html">file link windows abs</a></p>'
        )

    def test_win_file_path(self):
        """Test windows file:// path."""

        self.check_markdown(
            r'[file link windows abs2](file://c:/path/file.html)',
            r'<p><a href="file://c:/path/file.html">file link windows abs2</a></p>'
        )

    def test_file_root(self):
        """Test Linux/Unix style root file:// path."""

        self.check_markdown(
            r'[file link abs](file:///path/file.html)',
            r'<p><a href="file:///path/file.html">file link abs</a></p>'
        )

    def test_root(self):
        """Test /root path."""

        self.check_markdown(
            r'[absolute](/absolute)',
            r'<p><a href="/absolute">absolute</a></p>'
        )

    def test_url(self):
        """Test normal URL."""

        self.check_markdown(
            r'[link](http://www.google.com)',
            r'<p><a href="http://www.google.com">link</a></p>'
        )

    def test_fragment(self):
        """Test HTML fragment."""

        self.check_markdown(
            r'[fragment](#fragment)',
            r'<p><a href="#fragment">fragment</a></p>'
        )

    def test_windows(self):
        """Test Windows file path."""

        self.check_markdown(
            r'[windows path abs](c:/path/file.html)',
            r'<p><a href="c:/path/file.html">windows path abs</a></p>'
        )

    def test_network_path(self):
        """Test network path."""

        self.check_markdown(
            r'[windows network path](//network/path/file.html)',
            r'<p><a href="//network/path/file.html">windows network path</a></p>'
        )

    def test_strange_url(self):
        """Test strange URL."""

        self.check_markdown(
            r'[strange link](strange://odd/link/file.html)',
            r'<p><a href="strange://odd/link/file.html">strange link</a></p>'
        )

    def test_strange_url2(self):
        """Test additional strange URL."""

        self.check_markdown(
            r'[strange link 2](strange://www.odd.com/link/file.html)',
            r'<p><a href="strange://www.odd.com/link/file.html">strange link 2</a></p>'
        )

    def test_mail(self):
        """Test mail link."""

        self.check_markdown(
            r'<mail@mail.com>',
            r'<p><a href="&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#109;&#97;&#105;&#108;&#64;&#109;&#97;&#105;&#108;'
            r'&#46;&#99;&#111;&#109;">&#109;&#97;&#105;&#108;&#64;&#109;&#97;&#105;&#108;&#46;&#99;&#111;&#109;</a></p>'
        )


class TestAbsolute(util.MdCase):
    """Test absolute paths."""

    extension = ["pymdownx.pathconverter"]
    extension_configs = {
        "pymdownx.pathconverter": {
            "base_path": "/Some/fake/path",
            "absolute": True
        }
    }

    def test_in_script(self):
        """Test that we do not parse image in script."""

        self.check_markdown(
            r'''
            <script>
            var str = '<img alt="picture" src="../test_extensions/_assets/bg.png" />'
            </script>
            ''',
            r'''
            <script>
            var str = '<img alt="picture" src="../test_extensions/_assets/bg.png" />'
            </script>
            ''',
            True
        )

    def test_comment(self):
        """Test comment."""

        self.check_markdown(
            r'<!-- ![picture](../test_extensions/_assets/bg.png) -->',
            r'<!-- ![picture](../test_extensions/_assets/bg.png) -->'
        )

    def test_relative_path(self):
        """Test relative path."""

        self.check_markdown(
            r'![picture](./test_extensions/_assets/bg.png)',
            r'<p><img alt="picture" src="/Some/fake/path/test_extensions/_assets/bg.png" /></p>'
        )

    def test_file_win_file_path_root(self):
        """Test windows file:// path with root slash."""

        self.check_markdown(
            r'[file link windows abs](file:///c:/path/file.html)',
            r'<p><a href="file:///c:/path/file.html">file link windows abs</a></p>'
        )

    def test_win_file_path(self):
        """Test windows file:// path."""

        self.check_markdown(
            r'[file link windows abs2](file://c:/path/file.html)',
            r'<p><a href="file://c:/path/file.html">file link windows abs2</a></p>'
        )

    def test_file_root(self):
        """Test Linux/Unix style root file:// path."""

        self.check_markdown(
            r'[file link abs](file:///path/file.html)',
            r'<p><a href="file:///path/file.html">file link abs</a></p>'
        )

    def test_root(self):
        """Test /root path."""

        self.check_markdown(
            r'[absolute](/absolute)',
            r'<p><a href="/absolute">absolute</a></p>'
        )

    def test_url(self):
        """Test normal URL."""

        self.check_markdown(
            r'[link](http://www.google.com)',
            r'<p><a href="http://www.google.com">link</a></p>'
        )

    def test_fragment(self):
        """Test HTML fragment."""

        self.check_markdown(
            r'[fragment](#fragment)',
            r'<p><a href="#fragment">fragment</a></p>'
        )

    def test_windows(self):
        """Test Windows file path."""

        self.check_markdown(
            r'[windows path abs](c:/path/file.html)',
            r'<p><a href="c:/path/file.html">windows path abs</a></p>'
        )

    def test_network_path(self):
        """Test network path."""

        self.check_markdown(
            r'[windows network path](//network/path/file.html)',
            r'<p><a href="//network/path/file.html">windows network path</a></p>'
        )

    def test_strange_url(self):
        """Test strange URL."""

        self.check_markdown(
            r'[strange link](strange://odd/link/file.html)',
            r'<p><a href="strange://odd/link/file.html">strange link</a></p>'
        )

    def test_strange_url2(self):
        """Test additional strange URL."""

        self.check_markdown(
            r'[strange link 2](strange://www.odd.com/link/file.html)',
            r'<p><a href="strange://www.odd.com/link/file.html">strange link 2</a></p>'
        )

    def test_mail(self):
        """Test mail link."""

        self.check_markdown(
            r'<mail@mail.com>',
            r'<p><a href="&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#109;&#97;&#105;&#108;&#64;&#109;&#97;&#105;&#108;'
            r'&#46;&#99;&#111;&#109;">&#109;&#97;&#105;&#108;&#64;&#109;&#97;&#105;&#108;&#46;&#99;&#111;&#109;</a></p>'
        )


class TestAbsoluteFileScheme(TestAbsolute):
    """Test absolute paths with file:// scheme."""

    extension = ["pymdownx.pathconverter"]
    extension_configs = {
        "pymdownx.pathconverter": {
            "base_path": "/Some/fake/path",
            "absolute": True,
            "file_scheme": True,
        }
    }

    def test_relative_path(self):
        """Test relative path."""

        self.check_markdown(
            r'![picture](./test_extensions/_assets/bg.png)',
            r'<p><img alt="picture" src="file:///Some/fake/path/test_extensions/_assets/bg.png" /></p>'
        )


class TestWindowsAbs(util.MdCase):
    """Test windows specific cases for absolute."""

    extension = ["pymdownx.pathconverter"]
    extension_configs = {
        "pymdownx.pathconverter": {
            "base_path": "C:/Some/fake/path",
            "absolute": True
        }
    }

    def test_windows_root_conversion(self):
        """Test Windows c:/ Conversion."""

        if util.is_win():
            self.check_markdown(
                r'![picture](./extensions/_assets/bg.png)',
                r'<p><img alt="picture" src="/C:/Some/fake/path/extensions/_assets/bg.png" /></p>'
            )
        else:
            self.check_markdown(
                r'![picture](./extensions/_assets/bg.png)',
                r'<p><img alt="picture" src="/C%3A/Some/fake/path/extensions/_assets/bg.png" /></p>'
            )


class TestWindowsAbsFileScheme(util.MdCase):
    """Test windows specific cases for absolute with file:// scheme."""

    extension = ["pymdownx.pathconverter"]
    extension_configs = {
        "pymdownx.pathconverter": {
            "base_path": "C:/Some/fake/path",
            "absolute": True,
            "file_scheme": True,
        }
    }

    def test_windows_root_conversion(self):
        """Test Windows c:/ Conversion."""
        if util.is_win():
            self.check_markdown(
                r'![picture](./extensions/_assets/bg.png)',
                r'<p><img alt="picture" src="file:///C:/Some/fake/path/extensions/_assets/bg.png" /></p>'
            )
        else:
            self.check_markdown(
                r'![picture](./extensions/_assets/bg.png)',
                r'<p><img alt="picture" src="file:///C%3A/Some/fake/path/extensions/_assets/bg.png" /></p>'
            )


class TestWindowsRel(util.MdCase):
    """Test windows specific cases for relative."""

    extension = ["pymdownx.pathconverter"]
    extension_configs = {
        "pymdownx.pathconverter": {
            "base_path": "C:/Some/fake/path",
            "relative_path": "C:/Some/other/path"
        }
    }

    def test_windows_root_conversion(self):
        """Test Windows c:/ Conversion."""

        if util.is_win():
            self.check_markdown(
                r'![picture](./extensions/_assets/bg.png)',
                r'<p><img alt="picture" src="../../fake/path/extensions/_assets/bg.png" /></p>'
            )
        else:
            self.check_markdown(
                r'![picture](./extensions/_assets/bg.png)',
                r'<p><img alt="picture" src="../../fake/path/extensions/_assets/bg.png" /></p>'
            )