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 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646
|
from __future__ import annotations
import contextlib
import copy
import io
import os
import re
import sys
import textwrap
import unittest
from typing import Any
from unittest import mock
import mkdocs
from mkdocs.config import base
from mkdocs.config import config_options as c
from mkdocs.tests.base import tempdir
from mkdocs.utils import write_file, yaml_load
class UnexpectedError(Exception):
pass
class TestCase(unittest.TestCase):
@contextlib.contextmanager
def expect_error(self, **kwargs):
[(key, msg)] = kwargs.items()
with self.assertRaises(UnexpectedError) as cm:
yield
if isinstance(msg, re.Pattern):
self.assertRegex(str(cm.exception), f'^{key}="{msg.pattern}"$')
else:
self.assertEqual(f'{key}="{msg}"', str(cm.exception))
def get_config(
self,
schema: type,
cfg: dict[str, Any],
warnings: dict[str, str] = {},
config_file_path=None,
):
config = base.LegacyConfig(base.get_schema(schema), config_file_path=config_file_path)
config.load_dict(cfg)
actual_errors, actual_warnings = config.validate()
if actual_errors:
raise UnexpectedError(', '.join(f'{key}="{msg}"' for key, msg in actual_errors))
self.assertEqual(warnings, dict(actual_warnings))
return config
class OptionallyRequiredTest(TestCase):
def test_empty(self):
class Schema:
option = c.OptionallyRequired()
conf = self.get_config(Schema, {'option': None})
self.assertEqual(conf['option'], None)
self.assertEqual(Schema.option.required, False)
def test_required(self):
class Schema:
option = c.OptionallyRequired(required=True)
with self.expect_error(option="Required configuration not provided."):
self.get_config(Schema, {'option': None})
self.assertEqual(Schema.option.required, True)
def test_required_no_default(self):
class Schema:
option = c.OptionallyRequired(required=True)
conf = self.get_config(Schema, {'option': 2})
self.assertEqual(conf['option'], 2)
def test_default(self):
class Schema:
option = c.OptionallyRequired(default=1)
conf = self.get_config(Schema, {'option': None})
self.assertEqual(conf['option'], 1)
def test_replace_default(self):
class Schema:
option = c.OptionallyRequired(default=1)
conf = self.get_config(Schema, {'option': 2})
self.assertEqual(conf['option'], 2)
class TypeTest(TestCase):
def test_single_type(self):
class Schema:
option = c.Type(str)
conf = self.get_config(Schema, {'option': "Testing"})
self.assertEqual(conf['option'], "Testing")
def test_multiple_types(self):
class Schema:
option = c.Type((list, tuple))
conf = self.get_config(Schema, {'option': [1, 2, 3]})
self.assertEqual(conf['option'], [1, 2, 3])
conf = self.get_config(Schema, {'option': (1, 2, 3)})
self.assertEqual(conf['option'], (1, 2, 3))
with self.expect_error(
option="Expected type: (<class 'list'>, <class 'tuple'>) but received: <class 'dict'>"
):
self.get_config(Schema, {'option': {'a': 1}})
def test_length(self):
class Schema:
option = c.Type(str, length=7)
conf = self.get_config(Schema, {'option': "Testing"})
self.assertEqual(conf['option'], "Testing")
with self.expect_error(
option="Expected type: <class 'str'> with length 7 but received: 'Testing Long' with length 12"
):
self.get_config(Schema, {'option': "Testing Long"})
class ChoiceTest(TestCase):
def test_required(self):
class Schema:
option = c.Choice(('python', 'node'), required=True)
conf = self.get_config(Schema, {'option': 'python'})
self.assertEqual(conf['option'], 'python')
def test_optional(self):
class Schema:
option = c.Choice(('python', 'node'))
conf = self.get_config(Schema, {'option': 'python'})
self.assertEqual(conf['option'], 'python')
conf = self.get_config(Schema, {})
self.assertEqual(conf['option'], None)
conf = self.get_config(Schema, {'option': None})
self.assertEqual(conf['option'], None)
def test_default(self):
class Schema:
option = c.Choice(('a', 'b', 'c'), default='b')
conf = self.get_config(Schema, {})
self.assertEqual(conf['option'], 'b')
conf = self.get_config(Schema, {'option': None})
self.assertEqual(conf['option'], 'b')
with self.expect_error(option="Expected one of: ('a', 'b', 'c') but received: 'go'"):
self.get_config(Schema, {'option': 'go'})
def test_invalid_default(self):
with self.assertRaises(ValueError):
c.Choice(('a', 'b'), default='c')
with self.assertRaises(ValueError):
c.Choice(('a', 'b'), default='c', required=True)
def test_invalid_choice(self):
class Schema:
option = c.Choice(('python', 'node'))
with self.expect_error(option="Expected one of: ('python', 'node') but received: 'go'"):
self.get_config(Schema, {'option': 'go'})
def test_invalid_choices(self):
with self.assertRaises(ValueError):
c.Choice('')
with self.assertRaises(ValueError):
c.Choice([])
with self.assertRaises(ValueError):
c.Choice(5)
class DeprecatedTest(TestCase):
def test_deprecated_option_simple(self):
class Schema:
d = c.Deprecated()
self.get_config(
Schema,
{'d': 'value'},
warnings=dict(
d="The configuration option 'd' has been deprecated and will be removed in a "
"future release."
),
)
def test_deprecated_option_message(self):
class Schema:
d = c.Deprecated(message='custom message for {} key')
self.get_config(Schema, {'d': 'value'}, warnings={'d': 'custom message for d key'})
def test_deprecated_option_with_type(self):
class Schema:
d = c.Deprecated(option_type=c.Type(str))
self.get_config(
Schema,
{'d': 'value'},
warnings=dict(
d="The configuration option 'd' has been deprecated and will be removed in a "
"future release."
),
)
def test_deprecated_option_with_invalid_type(self):
class Schema:
d = c.Deprecated(option_type=c.Type(list))
with self.expect_error(d="Expected type: <class 'list'> but received: <class 'str'>"):
self.get_config(
Schema,
{'d': 'value'},
warnings=dict(
d="The configuration option 'd' has been deprecated and will be removed in a "
"future release."
),
)
def test_removed_option(self):
class Schema:
d = c.Deprecated(removed=True, moved_to='foo')
with self.expect_error(
d="The configuration option 'd' was removed from MkDocs. Use 'foo' instead.",
):
self.get_config(Schema, {'d': 'value'})
def test_deprecated_option_with_type_undefined(self):
class Schema:
option = c.Deprecated(option_type=c.Type(str))
self.get_config(Schema, {'option': None})
def test_deprecated_option_move(self):
class Schema:
new = c.Type(str)
old = c.Deprecated(moved_to='new')
conf = self.get_config(
Schema,
{'old': 'value'},
warnings=dict(
old="The configuration option 'old' has been deprecated and will be removed in a "
"future release. Use 'new' instead."
),
)
self.assertEqual(conf, {'new': 'value', 'old': None})
def test_deprecated_option_move_complex(self):
class Schema:
foo = c.Type(dict)
old = c.Deprecated(moved_to='foo.bar')
conf = self.get_config(
Schema,
{'old': 'value'},
warnings=dict(
old="The configuration option 'old' has been deprecated and will be removed in a "
"future release. Use 'foo.bar' instead."
),
)
self.assertEqual(conf, {'foo': {'bar': 'value'}, 'old': None})
def test_deprecated_option_move_existing(self):
class Schema:
foo = c.Type(dict)
old = c.Deprecated(moved_to='foo.bar')
conf = self.get_config(
Schema,
{'old': 'value', 'foo': {'existing': 'existing'}},
warnings=dict(
old="The configuration option 'old' has been deprecated and will be removed in a "
"future release. Use 'foo.bar' instead."
),
)
self.assertEqual(conf, {'foo': {'existing': 'existing', 'bar': 'value'}, 'old': None})
def test_deprecated_option_move_invalid(self):
class Schema:
foo = c.Type(dict)
old = c.Deprecated(moved_to='foo.bar')
with self.expect_error(foo="Expected type: <class 'dict'> but received: <class 'str'>"):
self.get_config(
Schema,
{'old': 'value', 'foo': 'wrong type'},
warnings=dict(
old="The configuration option 'old' has been deprecated and will be removed in a "
"future release. Use 'foo.bar' instead."
),
)
class IpAddressTest(TestCase):
class Schema:
option = c.IpAddress()
def test_valid_address(self):
addr = '127.0.0.1:8000'
conf = self.get_config(self.Schema, {'option': addr})
self.assertEqual(str(conf['option']), addr)
self.assertEqual(conf['option'].host, '127.0.0.1')
self.assertEqual(conf['option'].port, 8000)
def test_valid_IPv6_address(self):
addr = '::1:8000'
conf = self.get_config(self.Schema, {'option': addr})
self.assertEqual(str(conf['option']), addr)
self.assertEqual(conf['option'].host, '::1')
self.assertEqual(conf['option'].port, 8000)
def test_valid_full_IPv6_address(self):
addr = '[2001:db8:85a3::8a2e:370:7334]:123'
conf = self.get_config(self.Schema, {'option': addr})
self.assertEqual(conf['option'].host, '2001:db8:85a3::8a2e:370:7334')
self.assertEqual(conf['option'].port, 123)
def test_named_address(self):
addr = 'localhost:8000'
conf = self.get_config(self.Schema, {'option': addr})
self.assertEqual(str(conf['option']), addr)
self.assertEqual(conf['option'].host, 'localhost')
self.assertEqual(conf['option'].port, 8000)
def test_default_address(self):
addr = '127.0.0.1:8000'
class Schema:
option = c.IpAddress(default=addr)
conf = self.get_config(Schema, {'option': None})
self.assertEqual(str(conf['option']), addr)
self.assertEqual(conf['option'].host, '127.0.0.1')
self.assertEqual(conf['option'].port, 8000)
def test_bind_all_IPv4_address(self):
addr = '0.0.0.0:8000'
class Schema:
option = c.IpAddress(default=addr)
conf = self.get_config(Schema, {'option': None})
self.assertEqual(str(conf['option']), addr)
self.assertEqual(conf['option'].host, '0.0.0.0')
self.assertEqual(conf['option'].port, 8000)
def test_bind_all_IPv6_address(self):
addr = ':::8000'
class Schema:
option = c.IpAddress(default=addr)
conf = self.get_config(Schema, {'option': None})
self.assertEqual(str(conf['option']), addr)
self.assertEqual(conf['option'].host, '::')
self.assertEqual(conf['option'].port, 8000)
@unittest.skipIf(
sys.version_info < (3, 9, 5),
"Leading zeros allowed in IP addresses before Python3.9.5",
)
def test_invalid_leading_zeros(self):
with self.expect_error(
option="'127.000.000.001' does not appear to be an IPv4 or IPv6 address"
):
self.get_config(self.Schema, {'option': '127.000.000.001:8000'})
def test_invalid_address_range(self):
with self.expect_error(option="'277.0.0.1' does not appear to be an IPv4 or IPv6 address"):
self.get_config(self.Schema, {'option': '277.0.0.1:8000'})
def test_invalid_address_format(self):
with self.expect_error(option="Must be a string of format 'IP:PORT'"):
self.get_config(self.Schema, {'option': '127.0.0.18000'})
def test_invalid_address_type(self):
with self.expect_error(option="Must be a string of format 'IP:PORT'"):
self.get_config(self.Schema, {'option': 123})
def test_invalid_address_port(self):
with self.expect_error(option="'foo' is not a valid port"):
self.get_config(self.Schema, {'option': '127.0.0.1:foo'})
def test_invalid_address_missing_port(self):
with self.expect_error(option="Must be a string of format 'IP:PORT'"):
self.get_config(self.Schema, {'option': '127.0.0.1'})
class URLTest(TestCase):
def test_valid_url(self):
class Schema:
option = c.URL()
conf = self.get_config(Schema, {'option': "https://mkdocs.org"})
self.assertEqual(conf['option'], "https://mkdocs.org")
conf = self.get_config(Schema, {'option': ""})
self.assertEqual(conf['option'], "")
def test_valid_url_is_dir(self):
class Schema:
option = c.URL(is_dir=True)
conf = self.get_config(Schema, {'option': "http://mkdocs.org/"})
self.assertEqual(conf['option'], "http://mkdocs.org/")
conf = self.get_config(Schema, {'option': "https://mkdocs.org"})
self.assertEqual(conf['option'], "https://mkdocs.org/")
def test_optional(self):
class Schema:
option = c.URL(is_dir=True)
conf = self.get_config(Schema, {'option': ''})
self.assertEqual(conf['option'], '')
conf = self.get_config(Schema, {'option': None})
self.assertEqual(conf['option'], None)
def test_invalid_url(self):
class Schema:
option = c.URL(required=True)
with self.expect_error(option="Required configuration not provided."):
self.get_config(Schema, {'option': None})
for url in "www.mkdocs.org", "//mkdocs.org/test", "http:/mkdocs.org/", "/hello/":
with self.subTest(url=url):
with self.expect_error(
option="The URL isn't valid, it should include the http:// (scheme)"
):
self.get_config(Schema, {'option': url})
def test_invalid_type(self):
class Schema:
option = c.URL()
with self.expect_error(option="Expected a string, got <class 'int'>"):
self.get_config(Schema, {'option': 1})
class EditURITest(TestCase):
class Schema:
repo_url = c.URL()
repo_name = c.RepoName('repo_url')
edit_uri_template = c.EditURITemplate('edit_uri')
edit_uri = c.EditURI('repo_url')
def test_repo_name_github(self):
conf = self.get_config(
self.Schema,
{'repo_url': "https://github.com/mkdocs/mkdocs"},
)
self.assertEqual(conf['repo_name'], "GitHub")
def test_repo_name_bitbucket(self):
conf = self.get_config(
self.Schema,
{'repo_url': "https://bitbucket.org/gutworth/six/"},
)
self.assertEqual(conf['repo_name'], "Bitbucket")
def test_repo_name_gitlab(self):
conf = self.get_config(
self.Schema,
{'repo_url': "https://gitlab.com/gitlab-org/gitlab-ce/"},
)
self.assertEqual(conf['repo_name'], "GitLab")
def test_repo_name_custom(self):
conf = self.get_config(
self.Schema,
{'repo_url': "https://launchpad.net/python-tuskarclient"},
)
self.assertEqual(conf['repo_name'], "Launchpad")
def test_edit_uri_github(self):
conf = self.get_config(
self.Schema,
{'repo_url': "https://github.com/mkdocs/mkdocs"},
)
self.assertEqual(conf['edit_uri'], 'edit/master/docs/')
self.assertEqual(conf['repo_url'], "https://github.com/mkdocs/mkdocs")
def test_edit_uri_bitbucket(self):
conf = self.get_config(
self.Schema,
{'repo_url': "https://bitbucket.org/gutworth/six/"},
)
self.assertEqual(conf['edit_uri'], 'src/default/docs/')
self.assertEqual(conf['repo_url'], "https://bitbucket.org/gutworth/six/")
def test_edit_uri_gitlab(self):
conf = self.get_config(
self.Schema,
{'repo_url': "https://gitlab.com/gitlab-org/gitlab-ce/"},
)
self.assertEqual(conf['edit_uri'], 'edit/master/docs/')
def test_edit_uri_custom(self):
conf = self.get_config(
self.Schema,
{'repo_url': "https://launchpad.net/python-tuskarclient"},
)
self.assertEqual(conf['edit_uri'], None)
self.assertEqual(conf['repo_url'], "https://launchpad.net/python-tuskarclient")
def test_repo_name_custom_and_empty_edit_uri(self):
conf = self.get_config(
self.Schema,
{'repo_url': "https://github.com/mkdocs/mkdocs", 'repo_name': 'mkdocs'},
)
self.assertEqual(conf['edit_uri'], 'edit/master/docs/')
def test_edit_uri_template_ok(self):
conf = self.get_config(
self.Schema,
{
'repo_url': "https://github.com/mkdocs/mkdocs",
'edit_uri_template': 'edit/foo/docs/{path}',
},
)
self.assertEqual(conf['edit_uri_template'], 'edit/foo/docs/{path}')
def test_edit_uri_template_errors(self):
with self.expect_error(
edit_uri_template=re.compile(r'.*[{}].*') # Complains about unclosed '{' or missing '}'
):
self.get_config(
self.Schema,
{
'repo_url': "https://github.com/mkdocs/mkdocs",
'edit_uri_template': 'edit/master/{path',
},
)
with self.expect_error(edit_uri_template=re.compile(r'.*\bz\b.*')):
self.get_config(
self.Schema,
{
'repo_url': "https://github.com/mkdocs/mkdocs",
'edit_uri_template': 'edit/master/{path!z}',
},
)
with self.expect_error(edit_uri_template="Unknown template substitute: 'foo'"):
self.get_config(
self.Schema,
{
'repo_url': "https://github.com/mkdocs/mkdocs",
'edit_uri_template': 'edit/master/{foo}',
},
)
def test_edit_uri_template_warning(self):
conf = self.get_config(
self.Schema,
{
'repo_url': "https://github.com/mkdocs/mkdocs",
'edit_uri': 'edit',
'edit_uri_template': 'edit/master/{path}',
},
warnings=dict(
edit_uri_template="The option 'edit_uri' has no effect when 'edit_uri_template' is set."
),
)
self.assertEqual(conf['edit_uri_template'], 'edit/master/{path}')
class ListOfItemsTest(TestCase):
def test_int_type(self):
class Schema:
option = c.ListOfItems(c.Type(int))
conf = self.get_config(Schema, {'option': [1, 2, 3]})
self.assertEqual(conf['option'], [1, 2, 3])
with self.expect_error(
option="Expected type: <class 'int'> but received: <class 'NoneType'>"
):
conf = self.get_config(Schema, {'option': [1, None, 3]})
def test_combined_float_type(self):
class Schema:
option = c.ListOfItems(c.Type((int, float)))
conf = self.get_config(Schema, {'option': [1.4, 2, 3]})
self.assertEqual(conf['option'], [1.4, 2, 3])
with self.expect_error(
option="Expected type: (<class 'int'>, <class 'float'>) but received: <class 'str'>"
):
self.get_config(Schema, {'option': ['a']})
def test_list_default(self):
class Schema:
option = c.ListOfItems(c.Type(int), default=[])
conf = self.get_config(Schema, {})
self.assertEqual(conf['option'], [])
conf = self.get_config(Schema, {'option': None})
self.assertEqual(conf['option'], [])
def test_none_without_default(self):
class Schema:
option = c.ListOfItems(c.Type(str))
with self.expect_error(option="Required configuration not provided."):
conf = self.get_config(Schema, {})
with self.expect_error(option="Required configuration not provided."):
conf = self.get_config(Schema, {'option': None})
conf = self.get_config(Schema, {'option': ['foo']})
self.assertEqual(conf['option'], ['foo'])
def test_string_not_a_list_of_strings(self):
class Schema:
option = c.ListOfItems(c.Type(str))
with self.expect_error(option="Expected a list of items, but a <class 'str'> was given."):
self.get_config(Schema, {'option': 'foo'})
def test_post_validation_error(self):
class Schema:
option = c.ListOfItems(c.IpAddress())
with self.expect_error(option="'asdf' is not a valid port"):
self.get_config(Schema, {'option': ["localhost:8000", "1.2.3.4:asdf"]})
class FilesystemObjectTest(TestCase):
def test_valid_dir(self):
for cls in c.Dir, c.FilesystemObject:
with self.subTest(cls):
d = os.path.dirname(__file__)
class Schema:
option = cls(exists=True)
conf = self.get_config(Schema, {'option': d})
self.assertEqual(conf['option'], d)
def test_valid_file(self):
for cls in c.File, c.FilesystemObject:
with self.subTest(cls):
f = __file__
class Schema:
option = cls(exists=True)
conf = self.get_config(Schema, {'option': f})
self.assertEqual(conf['option'], f)
def test_missing_without_exists(self):
for cls in c.Dir, c.File, c.FilesystemObject:
with self.subTest(cls):
d = os.path.join("not", "a", "real", "path", "I", "hope")
class Schema:
option = cls()
conf = self.get_config(Schema, {'option': d})
self.assertEqual(conf['option'], os.path.abspath(d))
def test_missing_but_required(self):
for cls in c.Dir, c.File, c.FilesystemObject:
with self.subTest(cls):
d = os.path.join("not", "a", "real", "path", "I", "hope")
class Schema:
option = cls(exists=True)
with self.expect_error(option=re.compile(r"The path '.+' isn't an existing .+")):
self.get_config(Schema, {'option': d})
def test_not_a_dir(self):
d = __file__
class Schema:
option = c.Dir(exists=True)
with self.expect_error(option=re.compile(r"The path '.+' isn't an existing directory.")):
self.get_config(Schema, {'option': d})
def test_not_a_file(self):
d = os.path.dirname(__file__)
class Schema:
option = c.File(exists=True)
with self.expect_error(option=re.compile(r"The path '.+' isn't an existing file.")):
self.get_config(Schema, {'option': d})
def test_incorrect_type_error(self):
for cls in c.Dir, c.File, c.FilesystemObject:
with self.subTest(cls):
class Schema:
option = cls()
with self.expect_error(
option="Expected type: <class 'str'> but received: <class 'int'>"
):
self.get_config(Schema, {'option': 1})
with self.expect_error(
option="Expected type: <class 'str'> but received: <class 'list'>"
):
self.get_config(Schema, {'option': []})
def test_with_unicode(self):
for cls in c.Dir, c.File, c.FilesystemObject:
with self.subTest(cls):
class Schema:
dir = cls()
conf = self.get_config(Schema, {'dir': 'юникод'})
self.assertIsInstance(conf['dir'], str)
def test_dir_bytes(self):
class Schema:
dir = c.Dir()
with self.expect_error(dir="Expected type: <class 'str'> but received: <class 'bytes'>"):
self.get_config(Schema, {'dir': b'foo'})
def test_config_dir_prepended(self):
for cls in c.Dir, c.File, c.FilesystemObject:
with self.subTest(cls):
base_path = os.path.dirname(os.path.abspath(__file__))
class Schema:
dir = cls()
conf = self.get_config(
Schema,
{'dir': 'foo'},
config_file_path=os.path.join(base_path, 'mkdocs.yml'),
)
self.assertEqual(conf['dir'], os.path.join(base_path, 'foo'))
def test_site_dir_is_config_dir_fails(self):
class Schema:
dir = c.DocsDir()
with self.expect_error(
dir="The 'dir' should not be the parent directory of the config file. "
"Use a child directory instead so that the 'dir' is a sibling of the config file."
):
self.get_config(
Schema,
{'dir': '.'},
config_file_path=os.path.join(os.path.abspath('.'), 'mkdocs.yml'),
)
class ListOfPathsTest(TestCase):
def test_valid_path(self):
paths = [os.path.dirname(__file__)]
class Schema:
option = c.ListOfPaths()
self.get_config(Schema, {'option': paths})
def test_missing_path(self):
paths = [os.path.join("does", "not", "exist", "i", "hope")]
class Schema:
option = c.ListOfPaths()
with self.expect_error(
option=f"The path '{paths[0]}' isn't an existing file or directory."
):
self.get_config(Schema, {'option': paths})
def test_non_path(self):
paths = [os.path.dirname(__file__), None]
class Schema:
option = c.ListOfPaths()
with self.expect_error(
option="Expected type: <class 'str'> but received: <class 'NoneType'>"
):
self.get_config(Schema, {'option': paths})
def test_empty_list(self):
class Schema:
option = c.ListOfPaths()
conf = self.get_config(Schema, {'option': []})
self.assertEqual(conf['option'], [])
def test_non_list(self):
paths = os.path.dirname(__file__)
class Schema:
option = c.ListOfPaths()
with self.expect_error(option="Expected a list of items, but a <class 'str'> was given."):
self.get_config(Schema, {'option': paths})
def test_file(self):
paths = [__file__]
class Schema:
option = c.ListOfPaths()
self.get_config(Schema, {'option': paths})
@tempdir()
def test_paths_localized_to_config(self, base_path):
with open(os.path.join(base_path, 'foo'), 'w') as f:
f.write('hi')
class Schema:
watch = c.ListOfPaths()
conf = self.get_config(
Schema,
{'watch': ['foo']},
config_file_path=os.path.join(base_path, 'mkdocs.yml'),
)
self.assertEqual(conf['watch'], [os.path.join(base_path, 'foo')])
class SiteDirTest(TestCase):
class Schema:
site_dir = c.SiteDir()
docs_dir = c.Dir()
def test_doc_dir_in_site_dir(self):
j = os.path.join
# The parent dir is not the same on every system, so use the actual dir name
parent_dir = mkdocs.__file__.split(os.sep)[-3]
test_configs = (
{'docs_dir': j('site', 'docs'), 'site_dir': 'site'},
{'docs_dir': 'docs', 'site_dir': '.'},
{'docs_dir': '.', 'site_dir': '.'},
{'docs_dir': 'docs', 'site_dir': ''},
{'docs_dir': '', 'site_dir': ''},
{'docs_dir': j('..', parent_dir, 'docs'), 'site_dir': 'docs'},
{'docs_dir': 'docs', 'site_dir': '/'},
)
for test_config in test_configs:
with self.subTest(test_config):
with self.expect_error(
site_dir=re.compile(r"The 'docs_dir' should not be within the 'site_dir'.*")
):
self.get_config(self.Schema, test_config)
def test_site_dir_in_docs_dir(self):
j = os.path.join
test_configs = (
{'docs_dir': 'docs', 'site_dir': j('docs', 'site')},
{'docs_dir': '.', 'site_dir': 'site'},
{'docs_dir': '', 'site_dir': 'site'},
{'docs_dir': '/', 'site_dir': 'site'},
)
for test_config in test_configs:
with self.subTest(test_config):
with self.expect_error(
site_dir=re.compile(r"The 'site_dir' should not be within the 'docs_dir'.*")
):
self.get_config(self.Schema, test_config)
def test_common_prefix(self):
"""Legitimate settings with common prefixes should not fail validation."""
test_configs = (
{'docs_dir': 'docs', 'site_dir': 'docs-site'},
{'docs_dir': 'site-docs', 'site_dir': 'site'},
)
for test_config in test_configs:
with self.subTest(test_config):
self.get_config(self.Schema, test_config)
class ThemeTest(TestCase):
def test_theme_as_string(self):
class Schema:
option = c.Theme()
conf = self.get_config(Schema, {'option': "mkdocs"})
self.assertEqual(conf['option'].name, 'mkdocs')
def test_uninstalled_theme_as_string(self):
class Schema:
option = c.Theme()
with self.expect_error(
option=re.compile(
r"Unrecognised theme name: 'mkdocs2'. The available installed themes are: .+"
)
):
self.get_config(Schema, {'option': "mkdocs2"})
def test_theme_default(self):
class Schema:
option = c.Theme(default='mkdocs')
conf = self.get_config(Schema, {'option': None})
self.assertEqual(conf['option'].name, 'mkdocs')
def test_theme_as_simple_config(self):
config = {
'name': 'mkdocs',
}
class Schema:
option = c.Theme()
conf = self.get_config(Schema, {'option': config})
self.assertEqual(conf['option'].name, 'mkdocs')
@tempdir()
def test_theme_as_complex_config(self, custom_dir):
config = {
'name': 'mkdocs',
'custom_dir': custom_dir,
'static_templates': ['sitemap.html'],
'show_sidebar': False,
}
class Schema:
option = c.Theme()
conf = self.get_config(Schema, {'option': config})
self.assertEqual(conf['option'].name, 'mkdocs')
self.assertIn(custom_dir, conf['option'].dirs)
self.assertEqual(
conf['option'].static_templates,
{'404.html', 'sitemap.xml', 'sitemap.html'},
)
self.assertEqual(conf['option']['show_sidebar'], False)
def test_theme_name_is_none(self):
config = {
'name': None,
}
class Schema:
option = c.Theme()
with self.expect_error(option="At least one of 'name' or 'custom_dir' must be defined."):
self.get_config(Schema, {'option': config})
def test_theme_config_missing_name(self):
config = {
'custom_dir': 'custom',
}
class Schema:
option = c.Theme()
with self.expect_error(option="No theme name set."):
self.get_config(Schema, {'option': config})
def test_uninstalled_theme_as_config(self):
config = {
'name': 'mkdocs2',
}
class Schema:
option = c.Theme()
with self.expect_error(
option=re.compile(
r"Unrecognised theme name: 'mkdocs2'. The available installed themes are: .+"
)
):
self.get_config(Schema, {'option': config})
def test_theme_invalid_type(self):
config = ['mkdocs2']
class Schema:
option = c.Theme()
with self.expect_error(
option="Invalid type <class 'list'>. Expected a string or key/value pairs."
):
self.get_config(Schema, {'option': config})
def test_post_validation_none_theme_name_and_missing_custom_dir(self):
config = {
'theme': {
'name': None,
},
}
class Schema:
theme = c.Theme()
with self.expect_error(theme="At least one of 'name' or 'custom_dir' must be defined."):
self.get_config(Schema, config)
@tempdir()
def test_post_validation_inexisting_custom_dir(self, abs_base_path):
path = os.path.join(abs_base_path, 'inexisting_custom_dir')
config = {
'theme': {
'name': None,
'custom_dir': path,
},
}
class Schema:
theme = c.Theme()
with self.expect_error(theme=f"The path set in custom_dir ('{path}') does not exist."):
self.get_config(Schema, config)
def test_post_validation_locale_none(self):
config = {
'theme': {
'name': 'mkdocs',
'locale': None,
},
}
class Schema:
theme = c.Theme()
with self.expect_error(theme="'locale' must be a string."):
self.get_config(Schema, config)
def test_post_validation_locale_invalid_type(self):
config = {
'theme': {
'name': 'mkdocs',
'locale': 0,
},
}
class Schema:
theme = c.Theme()
with self.expect_error(theme="'locale' must be a string."):
self.get_config(Schema, config)
def test_post_validation_locale(self):
config = {
'theme': {
'name': 'mkdocs',
'locale': 'fr',
},
}
class Schema:
theme = c.Theme()
conf = self.get_config(Schema, config)
self.assertEqual(conf['theme']['locale'].language, 'fr')
class NavTest(TestCase):
class Schema:
option = c.Nav()
def test_old_format(self):
with self.expect_error(
option="Expected nav item to be a string or dict, got a list: ['index.md']"
):
self.get_config(self.Schema, {'option': [['index.md']]})
def test_provided_dict(self):
conf = self.get_config(self.Schema, {'option': ['index.md', {"Page": "page.md"}]})
self.assertEqual(conf['option'], ['index.md', {'Page': 'page.md'}])
def test_provided_empty(self):
conf = self.get_config(self.Schema, {'option': []})
self.assertEqual(conf['option'], None)
def test_normal_nav(self):
nav_yaml = textwrap.dedent(
'''\
- Home: index.md
- getting-started.md
- User Guide:
- Overview: user-guide/index.md
- Installation: user-guide/installation.md
'''
)
nav = yaml_load(io.StringIO(nav_yaml))
conf = self.get_config(self.Schema, {'option': nav})
self.assertEqual(conf['option'], nav)
def test_invalid_type_dict(self):
with self.expect_error(option="Expected nav to be a list, got a dict: {}"):
self.get_config(self.Schema, {'option': {}})
def test_invalid_type_int(self):
with self.expect_error(option="Expected nav to be a list, got a int: 5"):
self.get_config(self.Schema, {'option': 5})
def test_invalid_item_int(self):
with self.expect_error(option="Expected nav item to be a string or dict, got a int: 1"):
self.get_config(self.Schema, {'option': [1]})
def test_invalid_item_none(self):
with self.expect_error(option="Expected nav item to be a string or dict, got None"):
self.get_config(self.Schema, {'option': [None]})
def test_invalid_children_config_int(self):
with self.expect_error(option="Expected nav to be a list, got a int: 1"):
self.get_config(self.Schema, {'option': [{"foo.md": [{"bar.md": 1}]}]})
def test_invalid_children_config_none(self):
with self.expect_error(option="Expected nav to be a list, got None"):
self.get_config(self.Schema, {'option': [{"foo.md": None}]})
def test_invalid_children_empty_dict(self):
nav = ['foo', {}]
with self.expect_error(option="Expected nav item to be a dict of size 1, got a dict: {}"):
self.get_config(self.Schema, {'option': nav})
def test_invalid_nested_list(self):
nav = [{'aaa': [[{"bbb": "user-guide/index.md"}]]}]
with self.expect_error(
option="Expected nav item to be a string or dict, got a list: [{'bbb': 'user-guide/index.md'}]"
):
self.get_config(self.Schema, {'option': nav})
def test_invalid_children_oversized_dict(self):
nav = [{"aaa": [{"bbb": "user-guide/index.md", "ccc": "user-guide/installation.md"}]}]
with self.expect_error(
option="Expected nav item to be a dict of size 1, got dict with keys ('bbb', 'ccc')"
):
self.get_config(self.Schema, {'option': nav})
def test_warns_for_dict(self):
self.get_config(
self.Schema,
{'option': [{"a": {"b": "c.md", "d": "e.md"}}]},
warnings=dict(option="Expected nav to be a list, got dict with keys ('b', 'd')"),
)
class PrivateTest(TestCase):
def test_defined(self):
class Schema:
option = c.Private()
with self.expect_error(option="For internal use only."):
self.get_config(Schema, {'option': 'somevalue'})
class SubConfigTest(TestCase):
def test_subconfig_wrong_type(self):
# Test that an error is raised if subconfig does not receive a dict
class Schema:
option = c.SubConfig()
for val in "not_a_dict", ("not_a_dict",), ["not_a_dict"]:
with self.subTest(val):
with self.expect_error(
option=re.compile(
r"The configuration is invalid. Expected a key-value mapping "
r"\(dict\) but received: .+"
)
):
self.get_config(Schema, {'option': val})
def test_subconfig_ignored(self):
"""Default behaviour of subconfig: validation is ignored."""
# Nominal
class Schema1:
option = c.SubConfig(('cc', c.Choice(('foo', 'bar'))))
conf = self.get_config(Schema1, {'option': {'cc': 'foo'}})
self.assertEqual(conf, {'option': {'cc': 'foo'}})
# Invalid option: No error
class Schema2:
option = c.SubConfig(('cc', c.Choice(('foo', 'bar'))))
conf = self.get_config(Schema2, {'option': {'cc': True}})
self.assertEqual(conf, {'option': {'cc': True}})
# Missing option: Will be considered optional with default None
class Schema3:
option = c.SubConfig(('cc', c.Choice(('foo', 'bar'))))
conf = self.get_config(Schema3, {'option': {}})
self.assertEqual(conf, {'option': {'cc': None}})
# Unknown option: No warning
class Schema4:
option = c.SubConfig(('cc', c.Choice(('foo', 'bar'))))
conf = self.get_config(Schema4, {'option': {'unknown_key_is_ok': 0}})
self.assertEqual(conf, {'option': {'cc': None, 'unknown_key_is_ok': 0}})
def test_subconfig_unknown_option(self):
class Schema:
option = c.SubConfig(validate=True)
conf = self.get_config(
Schema,
{'option': {'unknown': 0}},
warnings=dict(option="Sub-option 'unknown': Unrecognised configuration name: unknown"),
)
self.assertEqual(conf['option'], {"unknown": 0})
def test_subconfig_invalid_option(self):
class Schema:
option = c.SubConfig(
('cc', c.Choice(('foo', 'bar'))),
validate=True,
)
with self.expect_error(
option="Sub-option 'cc': Expected one of: ('foo', 'bar') but received: True"
):
self.get_config(Schema, {'option': {'cc': True}})
def test_subconfig_normal(self):
class Schema:
option = c.SubConfig(
('cc', c.Choice(('foo', 'bar'))),
)
conf = self.get_config(Schema, {'option': {'cc': 'foo'}})
self.assertEqual(conf['option'], {'cc': 'foo'})
def test_config_file_path_pass_through(self):
"""Necessary to ensure FilesystemObject validates the correct path."""
passed_config_path = None
class SubType(c.BaseConfigOption):
def pre_validation(self, config, key_name):
nonlocal passed_config_path
passed_config_path = config.config_file_path
class Schema:
sub = c.SubConfig(('opt', SubType()))
config_path = "foo/mkdocs.yaml"
self.get_config(Schema, {"sub": {"opt": "bar"}}, config_file_path=config_path)
self.assertEqual(passed_config_path, config_path)
class ConfigItemsTest(TestCase):
def test_subconfig_with_multiple_items(self):
# This had a bug where subsequent items would get merged into the same dict.
class Schema:
the_items = c.ConfigItems(
("value", c.Type(str)),
)
conf = self.get_config(
Schema,
{
'the_items': [
{'value': 'a'},
{'value': 'b'},
]
},
)
self.assertEqual(conf['the_items'], [{'value': 'a'}, {'value': 'b'}])
def test_optional(self):
class Schema:
sub = c.ListOfItems(
c.SubConfig(
('opt', c.Type(int)),
validate=True,
),
default=[],
)
conf = self.get_config(Schema, {})
self.assertEqual(conf['sub'], [])
conf = self.get_config(Schema, {'sub': None})
self.assertEqual(conf['sub'], [])
conf = self.get_config(Schema, {'sub': [{'opt': 1}, {}]})
self.assertEqual(conf['sub'], [{'opt': 1}, {'opt': None}])
conf = self.get_config(Schema, {'sub': []})
conf = self.get_config(Schema, {'sub': [{'opt': 1}, {'opt': 2}]})
self.assertEqual(conf['sub'], [{'opt': 1}, {'opt': 2}])
def test_required(self):
class Schema:
sub = c.ListOfItems(
c.SubConfig(
('opt', c.Type(int, required=True)),
validate=True,
)
)
with self.expect_error(sub="Required configuration not provided."):
conf = self.get_config(Schema, {})
with self.expect_error(sub="Required configuration not provided."):
conf = self.get_config(Schema, {'sub': None})
with self.expect_error(
sub="Sub-option 'opt': Expected type: <class 'int'> but received: <class 'str'>"
):
conf = self.get_config(Schema, {'sub': [{'opt': 'asdf'}, {}]})
conf = self.get_config(Schema, {'sub': []})
conf = self.get_config(Schema, {'sub': [{'opt': 1}, {'opt': 2}]})
self.assertEqual(conf['sub'], [{'opt': 1}, {'opt': 2}])
with self.expect_error(
sub="Sub-option 'opt': Expected type: <class 'int'> but received: <class 'str'>"
):
self.get_config(Schema, {'sub': [{'opt': 'z'}, {'opt': 2}]})
with self.expect_error(
sub="Sub-option 'opt': Expected type: <class 'int'> but received: <class 'str'>"
):
conf = self.get_config(Schema, {'sub': [{'opt': 'z'}, {'opt': 2}]})
with self.expect_error(
sub="The configuration is invalid. Expected a key-value mapping "
"(dict) but received: <class 'int'>"
):
conf = self.get_config(Schema, {'sub': [1, 2]})
class MarkdownExtensionsTest(TestCase):
@mock.patch('markdown.Markdown', mock.Mock())
def test_simple_list(self):
class Schema:
markdown_extensions = c.MarkdownExtensions()
mdx_configs = c.Private()
config = {
'markdown_extensions': ['foo', 'bar'],
}
conf = self.get_config(Schema, config)
self.assertEqual(conf['markdown_extensions'], ['foo', 'bar'])
self.assertEqual(conf['mdx_configs'], {})
@mock.patch('markdown.Markdown', mock.Mock())
def test_list_dicts(self):
class Schema:
markdown_extensions = c.MarkdownExtensions()
mdx_configs = c.Private()
config = {
'markdown_extensions': [
{'foo': {'foo_option': 'foo value'}},
{'bar': {'bar_option': 'bar value'}},
{'baz': None},
]
}
conf = self.get_config(Schema, config)
self.assertEqual(conf['markdown_extensions'], ['foo', 'bar', 'baz'])
self.assertEqual(
conf['mdx_configs'],
{
'foo': {'foo_option': 'foo value'},
'bar': {'bar_option': 'bar value'},
},
)
@mock.patch('markdown.Markdown', mock.Mock())
def test_mixed_list(self):
class Schema:
markdown_extensions = c.MarkdownExtensions()
mdx_configs = c.Private()
config = {
'markdown_extensions': [
'foo',
{'bar': {'bar_option': 'bar value'}},
]
}
conf = self.get_config(Schema, config)
self.assertEqual(conf['markdown_extensions'], ['foo', 'bar'])
self.assertEqual(
conf['mdx_configs'],
{
'bar': {'bar_option': 'bar value'},
},
)
@mock.patch('markdown.Markdown', mock.Mock())
def test_dict_of_dicts(self):
class Schema:
markdown_extensions = c.MarkdownExtensions()
mdx_configs = c.Private()
config = {
'markdown_extensions': {
'foo': {'foo_option': 'foo value'},
'bar': {'bar_option': 'bar value'},
'baz': {},
}
}
conf = self.get_config(Schema, config)
self.assertEqual(conf['markdown_extensions'], ['foo', 'bar', 'baz'])
self.assertEqual(
conf['mdx_configs'],
{
'foo': {'foo_option': 'foo value'},
'bar': {'bar_option': 'bar value'},
},
)
@mock.patch('markdown.Markdown', mock.Mock())
def test_builtins(self):
class Schema:
markdown_extensions = c.MarkdownExtensions(builtins=['meta', 'toc'])
mdx_configs = c.Private()
config = {
'markdown_extensions': ['foo', 'bar'],
}
conf = self.get_config(Schema, config)
self.assertEqual(conf['markdown_extensions'], ['meta', 'toc', 'foo', 'bar'])
self.assertEqual(conf['mdx_configs'], {})
def test_duplicates(self):
class Schema:
markdown_extensions = c.MarkdownExtensions(builtins=['meta', 'toc'])
mdx_configs = c.Private()
config = {
'markdown_extensions': ['meta', 'toc'],
}
conf = self.get_config(Schema, config)
self.assertEqual(conf['markdown_extensions'], ['meta', 'toc'])
self.assertEqual(conf['mdx_configs'], {})
def test_builtins_config(self):
class Schema:
markdown_extensions = c.MarkdownExtensions(builtins=['meta', 'toc'])
mdx_configs = c.Private()
config = {
'markdown_extensions': [
{'toc': {'permalink': True}},
],
}
conf = self.get_config(Schema, config)
self.assertEqual(conf['markdown_extensions'], ['meta', 'toc'])
self.assertEqual(conf['mdx_configs'], {'toc': {'permalink': True}})
@mock.patch('markdown.Markdown', mock.Mock())
def test_configkey(self):
class Schema:
markdown_extensions = c.MarkdownExtensions(configkey='bar')
bar = c.Private()
config = {
'markdown_extensions': [
{'foo': {'foo_option': 'foo value'}},
]
}
conf = self.get_config(Schema, config)
self.assertEqual(conf['markdown_extensions'], ['foo'])
self.assertEqual(
conf['bar'],
{
'foo': {'foo_option': 'foo value'},
},
)
def test_missing_default(self):
class Schema:
markdown_extensions = c.MarkdownExtensions()
mdx_configs = c.Private()
conf = self.get_config(Schema, {})
self.assertEqual(conf['markdown_extensions'], [])
self.assertEqual(conf['mdx_configs'], {})
def test_none(self):
class Schema:
markdown_extensions = c.MarkdownExtensions(default=[])
mdx_configs = c.Private()
config = {
'markdown_extensions': None,
}
conf = self.get_config(Schema, config)
self.assertEqual(conf['markdown_extensions'], [])
self.assertEqual(conf['mdx_configs'], {})
@mock.patch('markdown.Markdown', mock.Mock())
def test_not_list(self):
class Schema:
option = c.MarkdownExtensions()
with self.expect_error(option="Invalid Markdown Extensions configuration"):
self.get_config(Schema, {'option': 'not a list'})
@mock.patch('markdown.Markdown', mock.Mock())
def test_invalid_config_option(self):
class Schema:
markdown_extensions = c.MarkdownExtensions()
config = {
'markdown_extensions': [
{'foo': 'not a dict'},
],
}
with self.expect_error(
markdown_extensions="Invalid config options for Markdown Extension 'foo'."
):
self.get_config(Schema, config)
@mock.patch('markdown.Markdown', mock.Mock())
def test_invalid_config_item(self):
class Schema:
markdown_extensions = c.MarkdownExtensions()
config = {
'markdown_extensions': [
['not a dict'],
],
}
with self.expect_error(markdown_extensions="Invalid Markdown Extensions configuration"):
self.get_config(Schema, config)
@mock.patch('markdown.Markdown', mock.Mock())
def test_invalid_dict_item(self):
class Schema:
markdown_extensions = c.MarkdownExtensions()
config = {
'markdown_extensions': [
{'key1': 'value', 'key2': 'too many keys'},
],
}
with self.expect_error(markdown_extensions="Invalid Markdown Extensions configuration"):
self.get_config(Schema, config)
def test_unknown_extension(self):
class Schema:
markdown_extensions = c.MarkdownExtensions()
config = {
'markdown_extensions': ['unknown'],
}
with self.expect_error(
markdown_extensions=re.compile(r"Failed to load extension 'unknown'.\n.+")
):
self.get_config(Schema, config)
def test_multiple_markdown_config_instances(self):
# This had a bug where an extension config would persist to separate
# config instances that didn't specify extensions.
class Schema:
markdown_extensions = c.MarkdownExtensions()
mdx_configs = c.Private()
conf = self.get_config(
Schema,
{
'markdown_extensions': [{'toc': {'permalink': '##'}}],
},
)
self.assertEqual(conf['mdx_configs']['toc'], {'permalink': '##'})
conf = self.get_config(
Schema,
{},
)
self.assertIsNone(conf['mdx_configs'].get('toc'))
class HooksTest(TestCase):
class Schema:
plugins = c.Plugins(default=[])
hooks = c.Hooks('plugins')
@tempdir()
def test_hooks(self, src_dir):
write_file(
b'def on_page_markdown(markdown, **kwargs): return markdown.replace("f", "z")',
os.path.join(src_dir, 'hooks', 'my_hook.py'),
)
write_file(
b'foo foo',
os.path.join(src_dir, 'docs', 'index.md'),
)
conf = self.get_config(
self.Schema,
{'hooks': ['hooks/my_hook.py']},
config_file_path=os.path.join(src_dir, 'mkdocs.yml'),
)
self.assertIn('hooks/my_hook.py', conf['plugins'])
hook = conf['plugins']['hooks/my_hook.py']
self.assertTrue(hasattr(hook, 'on_page_markdown'))
self.assertEqual(
{**conf['plugins'].events, 'page_markdown': [hook.on_page_markdown]},
conf['plugins'].events,
)
self.assertEqual(hook.on_page_markdown('foo foo'), 'zoo zoo')
self.assertFalse(hasattr(hook, 'on_nav'))
class SchemaTest(TestCase):
def test_copy(self):
copy.deepcopy(
base.LegacyConfig(
(('foo', c.MarkdownExtensions()),),
),
)
copy.deepcopy(self.get_config(IpAddressTest.Schema, {'option': '1.2.3.4:5678'}))
copy.deepcopy(IpAddressTest.Schema)
copy.deepcopy(base.get_schema(IpAddressTest.Schema))
copy.deepcopy(self.get_config(EditURITest.Schema, {}))
copy.deepcopy(EditURITest.Schema)
copy.deepcopy(base.get_schema(EditURITest.Schema))
|