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 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572
|
"""String processing tests."""
import pytest
from mkdocs_include_markdown_plugin.cache import Cache
from mkdocs_include_markdown_plugin.process import (
increase_headings_offset,
read_url,
rewrite_relative_urls,
)
@pytest.mark.parametrize(
('markdown', 'source_path', 'destination_path', 'expected_result'),
(
# Markdown Relative Links
pytest.param(
"Here's a [link](CHANGELOG.md) to the changelog.",
'README',
'docs/nav.md',
"Here's a [link](../CHANGELOG.md) to the changelog.",
id='relative-link',
),
pytest.param(
'''Here's a [link whose text is really long and so is broken across
multiple lines](CHANGELOG.md) to the changelog.
''',
'README',
'docs/nav.md',
'''Here's a [link whose text is really long and so is broken across
multiple lines](../CHANGELOG.md) to the changelog.
''',
id='multiline-link',
),
pytest.param(
'''
Check [this link](foobar.md) for more information
''',
'docs/includes/feature_a/index.md',
'docs/setup.md',
'''
Check [this link](includes/feature_a/foobar.md) for more information
''',
id='relative-link-down',
),
pytest.param(
'''Here's a [link](CHANGELOG.md#v1.2.3) to the changelog.
''',
'README',
'docs/nav.md',
'''Here's a [link](../CHANGELOG.md#v1.2.3) to the changelog.
''',
id='link-with-hash',
),
pytest.param(
'''Here's a [link][changelog] to the changelog.
[changelog]: CHANGELOG.md
''',
'README',
'docs/nav.md',
'''Here's a [link][changelog] to the changelog.
[changelog]: ../CHANGELOG.md
''',
id='link-reference',
),
pytest.param(
"Here's a diagram: ",
'README',
'docs/home.md',
"Here's a diagram: ",
id='image',
),
pytest.param(
'Build status: [](build/)',
'README',
'docs/home.md',
'Build status: [](../build/)',
id='image-inside-link',
),
# HTML Relative Links
pytest.param(
('Here\'s a diagram: <img id="foo" src="assets/diagram.png"'
' alt="diagram" class="bar" />'),
'README',
'docs/home.md',
('Here\'s a diagram: <img id="foo" src="../assets/diagram.png"'
' alt="diagram" class="bar" />'),
id='html-image',
),
pytest.param(
('Here\'s a diagram: <source id="foo" src="assets/diagram.png"'
' class="bar" />'),
'README',
'docs/home.md',
('Here\'s a diagram: <source id="foo" src="../assets/diagram.png"'
' class="bar" />'),
id='html-source',
),
pytest.param(
('Here\'s a diagram: <a id="foo" href="badge.png"'
' class="bar">example</a>'),
'README',
'docs/home.md',
('Here\'s a diagram: <a id="foo" href="../badge.png"'
' class="bar">example</a>'),
id='html-anchor',
),
pytest.param(
("Here's a diagram: <img id='foo' src='assets/diagram.png'"
" alt='diagram' class='bar' />"),
'README',
'docs/home.md',
("Here's a diagram: <img id='foo' src='../assets/diagram.png'"
" alt='diagram' class='bar' />"),
id='html-image-single-quote',
),
pytest.param(
("Here's a diagram: <a id='foo' href='assets/diagram.png'"
" class='bar'>example</a>"),
'README',
'docs/home.md',
("Here's a diagram: <a id='foo' href='../assets/diagram.png'"
" class='bar'>example</a>"),
id='html-anchor-single-quote',
),
# HTML Relative Links Adversarial tests:
# (attribute contains >, attribute without value, multiple tag in line)
pytest.param(
('<img id="foo" attr="3>2" attr2 src="assets/diagram.png"'
' alt="diagram" class="bar" /><img id="foo" attr="3>2"'
' src="assets/diagram.png" alt="diagram" class="bar" />'),
'README',
'docs/home.md',
('<img id="foo" attr="3>2" attr2 src="../assets/diagram.png"'
' alt="diagram" class="bar" /><img id="foo" attr="3>2"'
' src="../assets/diagram.png" alt="diagram" class="bar" />'),
id='html-image-adversarial-test',
),
pytest.param(
('<a id="foo" attr="3>2" attr2 href="badge.png" class="bar">'
'foo</a><a id="foo" attr="3>2" href="badge.png" class="bar">'
'bar</a>'),
'README',
'docs/home.md',
('<a id="foo" attr="3>2" attr2 href="../badge.png" class="bar">'
'foo</a><a id="foo" attr="3>2" href="../badge.png" class="bar">'
'bar</a>'),
id='html-anchor-adversarial-test',
),
# HTML Relative Links Adversarial test: img no end slash
pytest.param(
('Here\'s a diagram: <img id="foo" src="assets/diagram.png"'
' alt="diagram" class="bar">'),
'README',
'docs/home.md',
('Here\'s a diagram: <img id="foo" src="../assets/diagram.png"'
' alt="diagram" class="bar">'),
id='html-image-no-end-slash',
),
# Non-relative links
pytest.param(
"Here's a [link](/CHANGELOG.md) to the changelog.",
'README',
'docs/nav.md',
"Here's a [link](/CHANGELOG.md) to the changelog.",
id='absolute-link',
),
pytest.param(
'A [link](https://example.com/index.html) to the changelog.',
'README',
'docs/nav.md',
'A [link](https://example.com/index.html) to the changelog.',
id='external-link',
),
pytest.param(
"Here's a [link](https://example.com) to the changelog.",
'README',
'docs/nav.md',
"Here's a [link](https://example.com) to the changelog.",
id='external-top-level-link',
),
pytest.param(
('<img id="foo" attr="3>2" src="https://example.com/image.png"'
' class="bar" />'),
'README',
'docs/home.md',
('<img id="foo" attr="3>2" src="https://example.com/image.png"'
' class="bar" />'),
id='html-image-external-link',
),
pytest.param(
('<a id="foo" attr="3>2" href="https://example.com/index.html"'
' class="bar" />'),
'README',
'docs/home.md',
('<a id="foo" attr="3>2" href="https://example.com/index.html"'
' class="bar" />'),
id='html-anchor-external-link',
),
pytest.param(
'<a id="ab" attr="3>2" href="https://example.com" class="cd" />',
'README',
'docs/home.md',
'<a id="ab" attr="3>2" href="https://example.com" class="cd" />',
id='html-anchor-external-top-level-link',
),
pytest.param(
'''[Homepage](/) [Github](https://github.com/user/repo)
[Privacy policy](/privacy)''',
'README',
'docs/nav.md',
'''[Homepage](/) [Github](https://github.com/user/repo)
[Privacy policy](/privacy)''',
id='absolute-urls',
),
pytest.param(
'[contact us](mailto:hello@example.com)',
'README',
'docs/nav.md',
'[contact us](mailto:hello@example.com)',
id='mailto-urls',
),
pytest.param(
'''Some text before
```cpp
// Some code in which rewrites shouldn't be proccessed.
// https://github.com/mondeja/mkdocs-include-markdown-plugin/issues/78
const auto lambda = []() { .... };
```
''',
'README',
'examples/lambda.md',
'''Some text before
```cpp
// Some code in which rewrites shouldn't be proccessed.
// https://github.com/mondeja/mkdocs-include-markdown-plugin/issues/78
const auto lambda = []() { .... };
```
''',
id='cpp-likelink-fenced-codeblock',
),
pytest.param(
(
'Text before\n'
' \n '
'const auto lambda = []() { .... };\n \nText after\n'
),
'README',
'examples/lambda.md',
(
'Text before\n'
' \n '
'const auto lambda = []() { .... };\n \nText after\n'
),
id='cpp-likelink-indented-codeblock',
),
pytest.param(
(
'Text before\r\n'
' \r\n '
'const auto lambda = []() { .... };\r\n \r\nText after\r\n'
),
'README',
'examples/lambda.md',
(
'Text before\r\n'
' \r\n '
'const auto lambda = []() { .... };\r\n \r\nText after\r\n'
),
id='cpp-likelink-indented-codeblock-windows-newlines',
),
pytest.param(
'''```
[link](CHANGELOG.md)
```
''',
'README',
'docs/nav.md',
'''```
[link](CHANGELOG.md)
```
''',
id='exclude-fenced-code-blocks',
),
pytest.param(
'''```
<img src="assets/diagram.png" alt="diagram">
<a href="badge.png">example</a>
```
''',
'README',
'docs/nav.md',
'''```
<img src="assets/diagram.png" alt="diagram">
<a href="badge.png">example</a>
```
''',
id='exclude-fenced-code-blocks-html',
),
pytest.param(
(
' \n'
' [link](CHANGELOG.md)\n'
' \n'
),
'README',
'docs/nav.md',
(
' \n'
' [link](CHANGELOG.md)\n'
' \n'
),
id='exclude-indented-code-blocks',
),
pytest.param(
(
' \n'
' [link](CHANGELOG.md)\n'
),
'README',
'docs/nav.md',
# is rewritten because not newline at end of code block
(
' \n'
' [link](../CHANGELOG.md)\n'
),
id='exclude-indented-code-blocks-eof',
),
pytest.param(
(
' [link](CHANGELOG.md)\n'
' \n'
),
'README',
'docs/nav.md',
(
' [link](../CHANGELOG.md)\n'
' \n'
),
# No newline before, is not an indented code block, see:
# https://spec.commonmark.org/0.28/#indented-code-blocks
id='no-exclude-indented-code-blocks-missing-newline-before',
),
pytest.param(
(
' \n'
' [link](CHANGELOG.md)\n'
'Foo\n'
),
'README',
'docs/nav.md',
(
' \n'
' [link](../CHANGELOG.md)\n'
'Foo\n'
),
# No newline after, is not an indented code block, see:
# https://spec.commonmark.org/0.28/#indented-code-blocks
id='no-exclude-indented-code-blocks-missing-newline-after',
),
# Internal anchor in included file
# https://github.com/mondeja/mkdocs-include-markdown-plugin/issues/266
pytest.param(
'This is a link to an [internal anchor](#internal-anchor).',
'README',
'docs/nav.md',
'This is a link to an [internal anchor](#internal-anchor).',
id='internal-anchor',
),
),
)
def test_rewrite_relative_urls(
markdown,
source_path,
destination_path,
expected_result,
):
assert rewrite_relative_urls(
markdown,
source_path,
destination_path,
) == expected_result
@pytest.mark.parametrize(
('markdown', 'offset', 'expected_result'),
(
pytest.param(
'''# Foo
```python
# this is a comment
hello = "world"
```
# this is an indented
codeblock
- This list item has a fenced codeblock inside:
```
# fenced codeblock inside list item
```
# Bar
Some text
## Baz
''',
2,
'''### Foo
```python
# this is a comment
hello = "world"
```
# this is an indented
codeblock
- This list item has a fenced codeblock inside:
```
# fenced codeblock inside list item
```
### Bar
Some text
#### Baz
''',
id='```',
),
pytest.param(
'''# Foo
~~~python
# this is a comment
hello = "world"
~~~
# Bar
Some text
## Baz
''',
3,
'''#### Foo
~~~python
# this is a comment
hello = "world"
~~~
#### Bar
Some text
##### Baz
''',
id='~~~',
),
pytest.param(
'''# Foo
~~~python
# this is a comment
hello = "world"
~~~
# Bar
Some text
## Baz
```
# another comment
```
# Qux
''',
1,
'''## Foo
~~~python
# this is a comment
hello = "world"
~~~
## Bar
Some text
### Baz
```
# another comment
```
## Qux
''',
id='```,~~~',
),
pytest.param(
'''# Foo
# this is a comment
hello = "world"
# Bar
# another comment
\t# comment in tabbed indented codeblock\r\n
## Qux
''',
1,
'''## Foo
# this is a comment
hello = "world"
## Bar
# another comment
\t# comment in tabbed indented codeblock\r\n
### Qux
''',
id='indented-codeblocks',
),
),
)
def test_dont_increase_heading_offset_inside_fenced_codeblocks(
markdown,
offset,
expected_result,
):
assert increase_headings_offset(markdown, offset=offset) == expected_result
def test_read_url_cached_content(tmp_path):
url = (
'https://raw.githubusercontent.com/mondeja/'
'mkdocs-include-markdown-plugin/master/README.md'
)
cache_dir = tmp_path.as_posix()
cached_file_name = Cache.generate_unique_key_from_url(url)
cached_file_path = tmp_path / cached_file_name
if cached_file_path.exists():
cached_file_path.unlink()
cache = Cache(cache_dir, 600)
content = read_url(url, cache)
assert cached_file_path.exists()
cached_content = cached_file_path.read_text(
encoding='utf-8',
).split('\n', 1)[1]
assert content == cached_content
assert cache.get_(url) == cached_content
assert cache.get_(url) == read_url(url, cache)
cached_file_path.unlink()
|