File size: 45,584 Bytes
065fee7 |
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 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 |
from enum import Enum
from urllib.parse import SplitResult
import pytest
from yarl import URL
def test_inheritance():
with pytest.raises(TypeError) as ctx:
class MyURL(URL): # type: ignore[misc]
pass
assert (
"Inheriting a class "
"<class 'test_url.test_inheritance.<locals>.MyURL'> "
"from URL is forbidden" == str(ctx.value)
)
def test_str_subclass():
class S(str):
pass
assert str(URL(S("http://example.com"))) == "http://example.com"
def test_is():
u1 = URL("http://example.com")
u2 = URL(u1)
assert u1 is u2
def test_bool():
assert URL("http://example.com")
assert not URL()
assert not URL("")
def test_absolute_url_without_host():
with pytest.raises(ValueError):
URL("http://:8080/")
def test_url_is_not_str():
url = URL("http://example.com")
assert not isinstance(url, str)
def test_str():
url = URL("http://example.com:8888/path/to?a=1&b=2")
assert str(url) == "http://example.com:8888/path/to?a=1&b=2"
def test_repr():
url = URL("http://example.com")
assert "URL('http://example.com')" == repr(url)
def test_origin():
url = URL("http://user:password@example.com:8888/path/to?a=1&b=2")
assert URL("http://example.com:8888") == url.origin()
def test_origin_nonascii():
url = URL("http://user:password@оун-упа.укр:8888/path/to?a=1&b=2")
assert str(url.origin()) == "http://xn----8sb1bdhvc.xn--j1amh:8888"
def test_origin_ipv6():
url = URL("http://user:password@[::1]:8888/path/to?a=1&b=2")
assert str(url.origin()) == "http://[::1]:8888"
def test_origin_not_absolute_url():
url = URL("/path/to?a=1&b=2")
with pytest.raises(ValueError):
url.origin()
def test_origin_no_scheme():
url = URL("//user:password@example.com:8888/path/to?a=1&b=2")
with pytest.raises(ValueError):
url.origin()
def test_drop_dots():
u = URL("http://example.com/path/../to")
assert str(u) == "http://example.com/to"
def test_abs_cmp():
assert URL("http://example.com:8888") == URL("http://example.com:8888")
assert URL("http://example.com:8888/") == URL("http://example.com:8888/")
assert URL("http://example.com:8888/") == URL("http://example.com:8888")
assert URL("http://example.com:8888") == URL("http://example.com:8888/")
def test_abs_hash():
url = URL("http://example.com:8888")
url_trailing = URL("http://example.com:8888/")
assert hash(url) == hash(url_trailing)
# properties
def test_scheme():
url = URL("http://example.com")
assert "http" == url.scheme
def test_raw_user():
url = URL("http://user@example.com")
assert "user" == url.raw_user
def test_raw_user_non_ascii():
url = URL("http://бажан@example.com")
assert "%D0%B1%D0%B0%D0%B6%D0%B0%D0%BD" == url.raw_user
def test_no_user():
url = URL("http://example.com")
assert url.user is None
def test_user_non_ascii():
url = URL("http://бажан@example.com")
assert "бажан" == url.user
def test_raw_password():
url = URL("http://user:password@example.com")
assert "password" == url.raw_password
def test_raw_password_non_ascii():
url = URL("http://user:пароль@example.com")
assert "%D0%BF%D0%B0%D1%80%D0%BE%D0%BB%D1%8C" == url.raw_password
def test_password_non_ascii():
url = URL("http://user:пароль@example.com")
assert "пароль" == url.password
def test_password_without_user():
url = URL("http://:password@example.com")
assert url.user is None
assert "password" == url.password
def test_user_empty_password():
url = URL("http://user:@example.com")
assert "user" == url.user
assert "" == url.password
def test_raw_host():
url = URL("http://example.com")
assert "example.com" == url.raw_host
def test_raw_host_non_ascii():
url = URL("http://оун-упа.укр")
assert "xn----8sb1bdhvc.xn--j1amh" == url.raw_host
def test_host_non_ascii():
url = URL("http://оун-упа.укр")
assert "оун-упа.укр" == url.host
def test_localhost():
url = URL("http://[::1]")
assert "::1" == url.host
def test_host_with_underscore():
url = URL("http://abc_def.com")
assert "abc_def.com" == url.host
def test_raw_host_when_port_is_specified():
url = URL("http://example.com:8888")
assert "example.com" == url.raw_host
def test_raw_host_from_str_with_ipv4():
url = URL("http://127.0.0.1:80")
assert url.raw_host == "127.0.0.1"
def test_raw_host_from_str_with_ipv6():
url = URL("http://[::1]:80")
assert url.raw_host == "::1"
def test_authority_full() -> None:
url = URL("http://user:passwd@host.com:8080/path")
assert url.raw_authority == "user:passwd@host.com:8080"
assert url.authority == "user:passwd@host.com:8080"
def test_authority_short() -> None:
url = URL("http://host.com/path")
assert url.raw_authority == "host.com"
def test_authority_full_nonasci() -> None:
url = URL("http://степан:пароль@слава.укр:8080/path")
assert url.raw_authority == (
"%D1%81%D1%82%D0%B5%D0%BF%D0%B0%D0%BD:"
"%D0%BF%D0%B0%D1%80%D0%BE%D0%BB%D1%8C@"
"xn--80aaf8a3a.xn--j1amh:8080"
)
assert url.authority == "степан:пароль@слава.укр:8080"
def test_lowercase():
url = URL("http://gitHUB.com")
assert url.raw_host == "github.com"
assert url.host == url.raw_host
def test_lowercase_nonascii():
url = URL("http://Слава.Укр")
assert url.raw_host == "xn--80aaf8a3a.xn--j1amh"
assert url.host == "слава.укр"
def test_compressed_ipv6():
url = URL("http://[1DEC:0:0:0::1]")
assert url.raw_host == "1dec::1"
assert url.host == url.raw_host
def test_ipv4_zone():
# I'm unsure if it is correct.
url = URL("http://1.2.3.4%тест%42:123")
assert url.raw_host == "1.2.3.4%тест%42"
assert url.host == url.raw_host
def test_port_for_explicit_port():
url = URL("http://example.com:8888")
assert 8888 == url.port
def test_port_for_implicit_port():
url = URL("http://example.com")
assert 80 == url.port
def test_port_for_relative_url():
url = URL("/path/to")
assert url.port is None
def test_port_for_unknown_scheme():
url = URL("unknown://example.com")
assert url.port is None
def test_explicit_port_for_explicit_port():
url = URL("http://example.com:8888")
assert 8888 == url.explicit_port
def test_explicit_port_for_implicit_port():
url = URL("http://example.com")
assert url.explicit_port is None
def test_explicit_port_for_relative_url():
url = URL("/path/to")
assert url.explicit_port is None
def test_explicit_port_for_unknown_scheme():
url = URL("unknown://example.com")
assert url.explicit_port is None
def test_raw_path_string_empty():
url = URL("http://example.com")
assert "/" == url.raw_path
def test_raw_path():
url = URL("http://example.com/path/to")
assert "/path/to" == url.raw_path
def test_raw_path_non_ascii():
url = URL("http://example.com/шлях/сюди")
assert "/%D1%88%D0%BB%D1%8F%D1%85/%D1%81%D1%8E%D0%B4%D0%B8" == url.raw_path
def test_path_non_ascii():
url = URL("http://example.com/шлях/сюди")
assert "/шлях/сюди" == url.path
def test_path_with_spaces():
url = URL("http://example.com/a b/test")
assert "/a b/test" == url.path
url = URL("http://example.com/a b")
assert "/a b" == url.path
def test_raw_path_for_empty_url():
url = URL()
assert "" == url.raw_path
def test_raw_path_for_colon_and_at():
url = URL("http://example.com/path:abc@123")
assert url.raw_path == "/path:abc@123"
def test_raw_query_string():
url = URL("http://example.com?a=1&b=2")
assert url.raw_query_string == "a=1&b=2"
def test_raw_query_string_non_ascii():
url = URL("http://example.com?б=в&ю=к")
assert url.raw_query_string == "%D0%B1=%D0%B2&%D1%8E=%D0%BA"
def test_query_string_non_ascii():
url = URL("http://example.com?б=в&ю=к")
assert url.query_string == "б=в&ю=к"
def test_path_qs():
url = URL("http://example.com/")
assert url.path_qs == "/"
url = URL("http://example.com/?б=в&ю=к")
assert url.path_qs == "/?б=в&ю=к"
url = URL("http://example.com/path?б=в&ю=к")
assert url.path_qs == "/path?б=в&ю=к"
def test_raw_path_qs():
url = URL("http://example.com/")
assert url.raw_path_qs == "/"
url = URL("http://example.com/?б=в&ю=к")
assert url.raw_path_qs == "/?%D0%B1=%D0%B2&%D1%8E=%D0%BA"
url = URL("http://example.com/path?б=в&ю=к")
assert url.raw_path_qs == "/path?%D0%B1=%D0%B2&%D1%8E=%D0%BA"
url = URL("http://example.com/шлях?a=1&b=2")
assert url.raw_path_qs == "/%D1%88%D0%BB%D1%8F%D1%85?a=1&b=2"
def test_query_string_spaces():
url = URL("http://example.com?a+b=c+d&e=f+g")
assert url.query_string == "a b=c d&e=f g"
# raw fragment
def test_raw_fragment_empty():
url = URL("http://example.com")
assert "" == url.raw_fragment
def test_raw_fragment():
url = URL("http://example.com/path#anchor")
assert "anchor" == url.raw_fragment
def test_raw_fragment_non_ascii():
url = URL("http://example.com/path#якір")
assert "%D1%8F%D0%BA%D1%96%D1%80" == url.raw_fragment
def test_raw_fragment_safe():
url = URL("http://example.com/path#a?b/c:d@e")
assert "a?b/c:d@e" == url.raw_fragment
def test_fragment_non_ascii():
url = URL("http://example.com/path#якір")
assert "якір" == url.fragment
def test_raw_parts_empty():
url = URL("http://example.com")
assert ("/",) == url.raw_parts
def test_raw_parts():
url = URL("http://example.com/path/to")
assert ("/", "path", "to") == url.raw_parts
def test_raw_parts_without_path():
url = URL("http://example.com")
assert ("/",) == url.raw_parts
def test_raw_path_parts_with_2F_in_path():
url = URL("http://example.com/path%2Fto/three")
assert ("/", "path%2Fto", "three") == url.raw_parts
def test_raw_path_parts_with_2f_in_path():
url = URL("http://example.com/path%2fto/three")
assert ("/", "path%2Fto", "three") == url.raw_parts
def test_raw_parts_for_relative_path():
url = URL("path/to")
assert ("path", "to") == url.raw_parts
def test_raw_parts_for_relative_path_starting_from_slash():
url = URL("/path/to")
assert ("/", "path", "to") == url.raw_parts
def test_raw_parts_for_relative_double_path():
url = URL("path/to")
assert ("path", "to") == url.raw_parts
def test_parts_for_empty_url():
url = URL()
assert ("",) == url.raw_parts
def test_raw_parts_non_ascii():
url = URL("http://example.com/шлях/сюди")
assert (
"/",
"%D1%88%D0%BB%D1%8F%D1%85",
"%D1%81%D1%8E%D0%B4%D0%B8",
) == url.raw_parts
def test_parts_non_ascii():
url = URL("http://example.com/шлях/сюди")
assert ("/", "шлях", "сюди") == url.parts
def test_name_for_empty_url():
url = URL()
assert "" == url.raw_name
def test_raw_name():
url = URL("http://example.com/path/to#frag")
assert "to" == url.raw_name
def test_raw_name_root():
url = URL("http://example.com/#frag")
assert "" == url.raw_name
def test_raw_name_root2():
url = URL("http://example.com")
assert "" == url.raw_name
def test_raw_name_root3():
url = URL("http://example.com/")
assert "" == url.raw_name
def test_relative_raw_name():
url = URL("path/to")
assert "to" == url.raw_name
def test_relative_raw_name_starting_from_slash():
url = URL("/path/to")
assert "to" == url.raw_name
def test_relative_raw_name_slash():
url = URL("/")
assert "" == url.raw_name
def test_name_non_ascii():
url = URL("http://example.com/шлях")
assert url.name == "шлях"
def test_suffix_for_empty_url():
url = URL()
assert "" == url.raw_suffix
def test_raw_suffix():
url = URL("http://example.com/path/to.txt#frag")
assert ".txt" == url.raw_suffix
def test_raw_suffix_root():
url = URL("http://example.com/#frag")
assert "" == url.raw_suffix
def test_raw_suffix_root2():
url = URL("http://example.com")
assert "" == url.raw_suffix
def test_raw_suffix_root3():
url = URL("http://example.com/")
assert "" == url.raw_suffix
def test_relative_raw_suffix():
url = URL("path/to")
assert "" == url.raw_suffix
def test_relative_raw_suffix_starting_from_slash():
url = URL("/path/to")
assert "" == url.raw_suffix
def test_relative_raw_suffix_dot():
url = URL(".")
assert "" == url.raw_suffix
def test_suffix_non_ascii():
url = URL("http://example.com/шлях.суфікс")
assert url.suffix == ".суфікс"
def test_suffix_with_empty_name():
url = URL("http://example.com/.hgrc")
assert "" == url.raw_suffix
def test_suffix_multi_dot():
url = URL("http://example.com/doc.tar.gz")
assert ".gz" == url.raw_suffix
def test_suffix_with_dot_name():
url = URL("http://example.com/doc.")
assert "" == url.raw_suffix
def test_suffixes_for_empty_url():
url = URL()
assert () == url.raw_suffixes
def test_raw_suffixes():
url = URL("http://example.com/path/to.txt#frag")
assert (".txt",) == url.raw_suffixes
def test_raw_suffixes_root():
url = URL("http://example.com/#frag")
assert () == url.raw_suffixes
def test_raw_suffixes_root2():
url = URL("http://example.com")
assert () == url.raw_suffixes
def test_raw_suffixes_root3():
url = URL("http://example.com/")
assert () == url.raw_suffixes
def test_relative_raw_suffixes():
url = URL("path/to")
assert () == url.raw_suffixes
def test_relative_raw_suffixes_starting_from_slash():
url = URL("/path/to")
assert () == url.raw_suffixes
def test_relative_raw_suffixes_dot():
url = URL(".")
assert () == url.raw_suffixes
def test_suffixes_non_ascii():
url = URL("http://example.com/шлях.суфікс")
assert url.suffixes == (".суфікс",)
def test_suffixes_with_empty_name():
url = URL("http://example.com/.hgrc")
assert () == url.raw_suffixes
def test_suffixes_multi_dot():
url = URL("http://example.com/doc.tar.gz")
assert (".tar", ".gz") == url.raw_suffixes
def test_suffixes_with_dot_name():
url = URL("http://example.com/doc.")
assert () == url.raw_suffixes
def test_plus_in_path():
url = URL("http://example.com/test/x+y%2Bz/:+%2B/")
assert "/test/x+y+z/:++/" == url.path
def test_nonascii_in_qs():
url = URL("http://example.com")
url2 = url.with_query({"f\xf8\xf8": "f\xf8\xf8"})
assert "http://example.com/?f%C3%B8%C3%B8=f%C3%B8%C3%B8" == str(url2)
def test_percent_encoded_in_qs():
url = URL("http://example.com")
url2 = url.with_query({"k%cf%80": "v%cf%80"})
assert str(url2) == "http://example.com/?k%25cf%2580=v%25cf%2580"
assert url2.raw_query_string == "k%25cf%2580=v%25cf%2580"
assert url2.query_string == "k%cf%80=v%cf%80"
assert url2.query == {"k%cf%80": "v%cf%80"}
# modifiers
def test_parent_raw_path():
url = URL("http://example.com/path/to")
assert url.parent.raw_path == "/path"
def test_parent_raw_parts():
url = URL("http://example.com/path/to")
assert url.parent.raw_parts == ("/", "path")
def test_double_parent_raw_path():
url = URL("http://example.com/path/to")
assert url.parent.parent.raw_path == "/"
def test_empty_parent_raw_path():
url = URL("http://example.com/")
assert url.parent.parent.raw_path == "/"
def test_empty_parent_raw_path2():
url = URL("http://example.com")
assert url.parent.parent.raw_path == "/"
def test_clear_fragment_on_getting_parent():
url = URL("http://example.com/path/to#frag")
assert URL("http://example.com/path") == url.parent
def test_clear_fragment_on_getting_parent_toplevel():
url = URL("http://example.com/#frag")
assert URL("http://example.com/") == url.parent
def test_clear_query_on_getting_parent():
url = URL("http://example.com/path/to?a=b")
assert URL("http://example.com/path") == url.parent
def test_clear_query_on_getting_parent_toplevel():
url = URL("http://example.com/?a=b")
assert URL("http://example.com/") == url.parent
# truediv
def test_div_root():
url = URL("http://example.com") / "path" / "to"
assert str(url) == "http://example.com/path/to"
assert url.raw_path == "/path/to"
def test_div_root_with_slash():
url = URL("http://example.com/") / "path" / "to"
assert str(url) == "http://example.com/path/to"
assert url.raw_path == "/path/to"
def test_div():
url = URL("http://example.com/path") / "to"
assert str(url) == "http://example.com/path/to"
assert url.raw_path == "/path/to"
def test_div_with_slash():
url = URL("http://example.com/path/") / "to"
assert str(url) == "http://example.com/path/to"
assert url.raw_path == "/path/to"
def test_div_path_starting_from_slash_is_forbidden():
url = URL("http://example.com/path/")
with pytest.raises(ValueError):
url / "/to/others"
class StrEnum(str, Enum):
spam = "ham"
def __str__(self):
return self.value
def test_div_path_srting_subclass():
url = URL("http://example.com/path/") / StrEnum.spam
assert str(url) == "http://example.com/path/ham"
def test_div_bad_type():
url = URL("http://example.com/path/")
with pytest.raises(TypeError):
url / 3
def test_div_cleanup_query_and_fragment():
url = URL("http://example.com/path?a=1#frag")
assert str(url / "to") == "http://example.com/path/to"
def test_div_for_empty_url():
url = URL() / "a"
assert url.raw_parts == ("a",)
def test_div_for_relative_url():
url = URL("a") / "b"
assert url.raw_parts == ("a", "b")
def test_div_for_relative_url_started_with_slash():
url = URL("/a") / "b"
assert url.raw_parts == ("/", "a", "b")
def test_div_non_ascii():
url = URL("http://example.com/сюди")
url2 = url / "туди"
assert url2.path == "/сюди/туди"
assert url2.raw_path == "/%D1%81%D1%8E%D0%B4%D0%B8/%D1%82%D1%83%D0%B4%D0%B8"
assert url2.parts == ("/", "сюди", "туди")
assert url2.raw_parts == (
"/",
"%D1%81%D1%8E%D0%B4%D0%B8",
"%D1%82%D1%83%D0%B4%D0%B8",
)
def test_div_percent_encoded():
url = URL("http://example.com/path")
url2 = url / "%cf%80"
assert url2.path == "/path/%cf%80"
assert url2.raw_path == "/path/%25cf%2580"
assert url2.parts == ("/", "path", "%cf%80")
assert url2.raw_parts == ("/", "path", "%25cf%2580")
def test_div_with_colon_and_at():
url = URL("http://example.com/base") / "path:abc@123"
assert url.raw_path == "/base/path:abc@123"
def test_div_with_dots():
url = URL("http://example.com/base") / "../path/./to"
assert url.raw_path == "/path/to"
# joinpath
@pytest.mark.parametrize(
"base,to_join,expected",
[
pytest.param("", ("path", "to"), "http://example.com/path/to", id="root"),
pytest.param(
"/", ("path", "to"), "http://example.com/path/to", id="root-with-slash"
),
pytest.param("/path", ("to",), "http://example.com/path/to", id="path"),
pytest.param(
"/path/", ("to",), "http://example.com/path/to", id="path-with-slash"
),
pytest.param(
"/path?a=1#frag",
("to",),
"http://example.com/path/to",
id="cleanup-query-and-fragment",
),
pytest.param("", ("path/",), "http://example.com/path/", id="trailing-slash"),
pytest.param(
"", ("path/", "to/"), "http://example.com/path/to/", id="duplicate-slash"
),
pytest.param("", (), "http://example.com", id="empty-segments"),
pytest.param(
"/", ("path/",), "http://example.com/path/", id="base-slash-trailing-slash"
),
pytest.param(
"/",
("path/", "to/"),
"http://example.com/path/to/",
id="base-slash-duplicate-slash",
),
pytest.param("/", (), "http://example.com", id="base-slash-empty-segments"),
],
)
def test_joinpath(base, to_join, expected):
url = URL(f"http://example.com{base}")
assert str(url.joinpath(*to_join)) == expected
@pytest.mark.parametrize(
"url,to_join,expected",
[
pytest.param(URL(), ("a",), ("a",), id="empty-url"),
pytest.param(URL("a"), ("b",), ("a", "b"), id="relative-path"),
pytest.param(URL("a"), ("b", "", "c"), ("a", "b", "c"), id="empty-element"),
pytest.param(URL("/a"), ("b"), ("/", "a", "b"), id="absolute-path"),
pytest.param(URL(), ("a/",), ("a", ""), id="trailing-slash"),
pytest.param(URL(), ("a/", "b/"), ("a", "b", ""), id="duplicate-slash"),
pytest.param(URL(), (), ("",), id="empty-segments"),
],
)
def test_joinpath_relative(url, to_join, expected):
assert url.joinpath(*to_join).raw_parts == expected
@pytest.mark.parametrize(
"url,to_join,encoded,e_path,e_raw_path,e_parts,e_raw_parts",
[
pytest.param(
"http://example.com/сюди",
("туди",),
False,
"/сюди/туди",
"/%D1%81%D1%8E%D0%B4%D0%B8/%D1%82%D1%83%D0%B4%D0%B8",
("/", "сюди", "туди"),
("/", "%D1%81%D1%8E%D0%B4%D0%B8", "%D1%82%D1%83%D0%B4%D0%B8"),
id="non-ascii",
),
pytest.param(
"http://example.com/path",
("%cf%80",),
False,
"/path/%cf%80",
"/path/%25cf%2580",
("/", "path", "%cf%80"),
("/", "path", "%25cf%2580"),
id="percent-encoded",
),
pytest.param(
"http://example.com/path",
("%cf%80",),
True,
"/path/π",
"/path/%cf%80",
("/", "path", "π"),
("/", "path", "%cf%80"),
id="encoded-percent-encoded",
),
],
)
def test_joinpath_encoding(
url, to_join, encoded, e_path, e_raw_path, e_parts, e_raw_parts
):
joined = URL(url).joinpath(*to_join, encoded=encoded)
assert joined.path == e_path
assert joined.raw_path == e_raw_path
assert joined.parts == e_parts
assert joined.raw_parts == e_raw_parts
@pytest.mark.parametrize(
"to_join,expected",
[
pytest.param(("path:abc@123",), "/base/path:abc@123", id="with-colon-and-at"),
pytest.param(("..", "path", ".", "to"), "/path/to", id="with-dots"),
],
)
def test_joinpath_edgecases(to_join, expected):
url = URL("http://example.com/base").joinpath(*to_join)
assert url.raw_path == expected
def test_joinpath_path_starting_from_slash_is_forbidden():
url = URL("http://example.com/path/")
with pytest.raises(
ValueError, match="Appending path .* starting from slash is forbidden"
):
assert url.joinpath("/to/others")
# with_path
def test_with_path():
url = URL("http://example.com")
url2 = url.with_path("/test")
assert str(url2) == "http://example.com/test"
assert url2.raw_path == "/test"
assert url2.path == "/test"
def test_with_path_nonascii():
url = URL("http://example.com")
url2 = url.with_path("/π")
assert str(url2) == "http://example.com/%CF%80"
assert url2.raw_path == "/%CF%80"
assert url2.path == "/π"
def test_with_path_percent_encoded():
url = URL("http://example.com")
url2 = url.with_path("/%cf%80")
assert str(url2) == "http://example.com/%25cf%2580"
assert url2.raw_path == "/%25cf%2580"
assert url2.path == "/%cf%80"
def test_with_path_encoded():
url = URL("http://example.com")
url2 = url.with_path("/test", encoded=True)
assert str(url2) == "http://example.com/test"
assert url2.raw_path == "/test"
assert url2.path == "/test"
def test_with_path_encoded_nonascii():
url = URL("http://example.com")
url2 = url.with_path("/π", encoded=True)
assert str(url2) == "http://example.com/π"
assert url2.raw_path == "/π"
assert url2.path == "/π"
def test_with_path_encoded_percent_encoded():
url = URL("http://example.com")
url2 = url.with_path("/%cf%80", encoded=True)
assert str(url2) == "http://example.com/%cf%80"
assert url2.raw_path == "/%cf%80"
assert url2.path == "/π"
def test_with_path_dots():
url = URL("http://example.com")
assert str(url.with_path("/test/.")) == "http://example.com/test/"
def test_with_path_relative():
url = URL("/path")
assert str(url.with_path("/new")) == "/new"
def test_with_path_query():
url = URL("http://example.com?a=b")
assert str(url.with_path("/test")) == "http://example.com/test"
def test_with_path_fragment():
url = URL("http://example.com#frag")
assert str(url.with_path("/test")) == "http://example.com/test"
def test_with_path_empty():
url = URL("http://example.com/test")
assert str(url.with_path("")) == "http://example.com"
def test_with_path_leading_slash():
url = URL("http://example.com")
assert url.with_path("test").path == "/test"
# with_fragment
def test_with_fragment():
url = URL("http://example.com")
url2 = url.with_fragment("frag")
assert str(url2) == "http://example.com/#frag"
assert url2.raw_fragment == "frag"
assert url2.fragment == "frag"
def test_with_fragment_safe():
url = URL("http://example.com")
u2 = url.with_fragment("a:b?c@d/e")
assert str(u2) == "http://example.com/#a:b?c@d/e"
def test_with_fragment_non_ascii():
url = URL("http://example.com")
url2 = url.with_fragment("фрагм")
assert url2.raw_fragment == "%D1%84%D1%80%D0%B0%D0%B3%D0%BC"
assert url2.fragment == "фрагм"
def test_with_fragment_percent_encoded():
url = URL("http://example.com")
url2 = url.with_fragment("%cf%80")
assert str(url2) == "http://example.com/#%25cf%2580"
assert url2.raw_fragment == "%25cf%2580"
assert url2.fragment == "%cf%80"
def test_with_fragment_None():
url = URL("http://example.com/path#frag")
url2 = url.with_fragment(None)
assert str(url2) == "http://example.com/path"
def test_with_fragment_None_matching():
url = URL("http://example.com/path")
url2 = url.with_fragment(None)
assert url is url2
def test_with_fragment_matching():
url = URL("http://example.com/path#frag")
url2 = url.with_fragment("frag")
assert url is url2
def test_with_fragment_bad_type():
url = URL("http://example.com")
with pytest.raises(TypeError):
url.with_fragment(123)
# with_name
def test_with_name():
url = URL("http://example.com/a/b")
assert url.raw_parts == ("/", "a", "b")
url2 = url.with_name("c")
assert url2.raw_parts == ("/", "a", "c")
assert url2.parts == ("/", "a", "c")
assert url2.raw_path == "/a/c"
assert url2.path == "/a/c"
def test_with_name_for_naked_path():
url = URL("http://example.com")
url2 = url.with_name("a")
assert url2.raw_parts == ("/", "a")
def test_with_name_for_relative_path():
url = URL("a")
url2 = url.with_name("b")
assert url2.raw_parts == ("b",)
def test_with_name_for_relative_path2():
url = URL("a/b")
url2 = url.with_name("c")
assert url2.raw_parts == ("a", "c")
def test_with_name_for_relative_path_starting_from_slash():
url = URL("/a")
url2 = url.with_name("b")
assert url2.raw_parts == ("/", "b")
def test_with_name_for_relative_path_starting_from_slash2():
url = URL("/a/b")
url2 = url.with_name("c")
assert url2.raw_parts == ("/", "a", "c")
def test_with_name_empty():
url = URL("http://example.com/path/to").with_name("")
assert str(url) == "http://example.com/path/"
def test_with_name_non_ascii():
url = URL("http://example.com/path").with_name("шлях")
assert url.path == "/шлях"
assert url.raw_path == "/%D1%88%D0%BB%D1%8F%D1%85"
assert url.parts == ("/", "шлях")
assert url.raw_parts == ("/", "%D1%88%D0%BB%D1%8F%D1%85")
def test_with_name_percent_encoded():
url = URL("http://example.com/path")
url2 = url.with_name("%cf%80")
assert url2.raw_parts == ("/", "%25cf%2580")
assert url2.parts == ("/", "%cf%80")
assert url2.raw_path == "/%25cf%2580"
assert url2.path == "/%cf%80"
def test_with_name_with_slash():
with pytest.raises(ValueError):
URL("http://example.com").with_name("a/b")
def test_with_name_non_str():
with pytest.raises(TypeError):
URL("http://example.com").with_name(123)
def test_with_name_within_colon_and_at():
url = URL("http://example.com/oldpath").with_name("path:abc@123")
assert url.raw_path == "/path:abc@123"
def test_with_name_dot():
with pytest.raises(ValueError):
URL("http://example.com").with_name(".")
def test_with_name_double_dot():
with pytest.raises(ValueError):
URL("http://example.com").with_name("..")
# with_suffix
def test_with_suffix():
url = URL("http://example.com/a/b")
assert url.raw_parts == ("/", "a", "b")
url2 = url.with_suffix(".c")
assert url2.raw_parts == ("/", "a", "b.c")
assert url2.parts == ("/", "a", "b.c")
assert url2.raw_path == "/a/b.c"
assert url2.path == "/a/b.c"
def test_with_suffix_for_naked_path():
url = URL("http://example.com")
with pytest.raises(ValueError) as excinfo:
url.with_suffix(".a")
(msg,) = excinfo.value.args
assert msg == f"{url!r} has an empty name"
def test_with_suffix_for_relative_path():
url = URL("a")
url2 = url.with_suffix(".b")
assert url2.raw_parts == ("a.b",)
def test_with_suffix_for_relative_path2():
url = URL("a/b")
url2 = url.with_suffix(".c")
assert url2.raw_parts == ("a", "b.c")
def test_with_suffix_for_relative_path_starting_from_slash():
url = URL("/a")
url2 = url.with_suffix(".b")
assert url2.raw_parts == ("/", "a.b")
def test_with_suffix_for_relative_path_starting_from_slash2():
url = URL("/a/b")
url2 = url.with_suffix(".c")
assert url2.raw_parts == ("/", "a", "b.c")
def test_with_suffix_empty():
url = URL("http://example.com/path/to").with_suffix("")
assert str(url) == "http://example.com/path/to"
def test_with_suffix_non_ascii():
url = URL("http://example.com/path").with_suffix(".шлях")
assert url.path == "/path.шлях"
assert url.raw_path == "/path.%D1%88%D0%BB%D1%8F%D1%85"
assert url.parts == ("/", "path.шлях")
assert url.raw_parts == ("/", "path.%D1%88%D0%BB%D1%8F%D1%85")
def test_with_suffix_percent_encoded():
url = URL("http://example.com/path")
url2 = url.with_suffix(".%cf%80")
assert url2.raw_parts == ("/", "path.%25cf%2580")
assert url2.parts == ("/", "path.%cf%80")
assert url2.raw_path == "/path.%25cf%2580"
assert url2.path == "/path.%cf%80"
def test_with_suffix_without_dot():
with pytest.raises(ValueError) as excinfo:
URL("http://example.com/a").with_suffix("b")
(msg,) = excinfo.value.args
assert msg == "Invalid suffix 'b'"
def test_with_suffix_non_str():
with pytest.raises(TypeError) as excinfo:
URL("http://example.com").with_suffix(123)
(msg,) = excinfo.value.args
assert msg == "Invalid suffix type"
def test_with_suffix_dot():
with pytest.raises(ValueError) as excinfo:
URL("http://example.com").with_suffix(".")
(msg,) = excinfo.value.args
assert msg == "Invalid suffix '.'"
def test_with_suffix_with_slash():
with pytest.raises(ValueError) as excinfo:
URL("http://example.com/a").with_suffix("/.b")
(msg,) = excinfo.value.args
assert msg == "Invalid suffix '/.b'"
def test_with_suffix_with_slash2():
with pytest.raises(ValueError) as excinfo:
URL("http://example.com/a").with_suffix(".b/.d")
(msg,) = excinfo.value.args
assert msg == "Slash in name is not allowed"
def test_with_suffix_replace():
url = URL("/a.b")
url2 = url.with_suffix(".c")
assert url2.raw_parts == ("/", "a.c")
# is_absolute
def test_is_absolute_for_relative_url():
url = URL("/path/to")
assert not url.is_absolute()
def test_is_absolute_for_absolute_url():
url = URL("http://example.com")
assert url.is_absolute()
def test_is_non_absolute_for_empty_url():
url = URL()
assert not url.is_absolute()
def test_is_non_absolute_for_empty_url2():
url = URL("")
assert not url.is_absolute()
def test_is_absolute_path_starting_from_double_slash():
url = URL("//www.python.org")
assert url.is_absolute()
# is_default_port
def test_is_default_port_for_relative_url():
url = URL("/path/to")
assert not url.is_default_port()
def test_is_default_port_for_absolute_url_without_port():
url = URL("http://example.com")
assert url.is_default_port()
def test_is_default_port_for_absolute_url_with_default_port():
url = URL("http://example.com:80")
assert url.is_default_port()
def test_is_default_port_for_absolute_url_with_nondefault_port():
url = URL("http://example.com:8080")
assert not url.is_default_port()
def test_is_default_port_for_unknown_scheme():
url = URL("unknown://example.com:8080")
assert not url.is_default_port()
#
def test_no_scheme():
url = URL("example.com")
assert url.raw_host is None
assert url.raw_path == "example.com"
assert str(url) == "example.com"
def test_no_scheme2():
url = URL("example.com/a/b")
assert url.raw_host is None
assert url.raw_path == "example.com/a/b"
assert str(url) == "example.com/a/b"
def test_from_non_allowed():
with pytest.raises(TypeError):
URL(1234)
def test_from_idna():
url = URL("http://xn--jxagkqfkduily1i.eu")
assert "http://xn--jxagkqfkduily1i.eu" == str(url)
url = URL("http://xn--einla-pqa.de/") # needs idna 2008
assert "http://xn--einla-pqa.de/" == str(url)
def test_to_idna():
url = URL("http://εμπορικόσήμα.eu")
assert "http://xn--jxagkqfkduily1i.eu" == str(url)
url = URL("http://einlaß.de/")
assert "http://xn--einla-pqa.de/" == str(url)
def test_from_ascii_login():
url = URL("http://" "%D0%B2%D0%B0%D1%81%D1%8F" "@host:1234/")
assert ("http://" "%D0%B2%D0%B0%D1%81%D1%8F" "@host:1234/") == str(url)
def test_from_non_ascii_login():
url = URL("http://бажан@host:1234/")
assert ("http://%D0%B1%D0%B0%D0%B6%D0%B0%D0%BD@host:1234/") == str(url)
def test_from_ascii_login_and_password():
url = URL(
"http://"
"%D0%B2%D0%B0%D1%81%D1%8F"
":%D0%BF%D0%B0%D1%80%D0%BE%D0%BB%D1%8C"
"@host:1234/"
)
assert (
"http://"
"%D0%B2%D0%B0%D1%81%D1%8F"
":%D0%BF%D0%B0%D1%80%D0%BE%D0%BB%D1%8C"
"@host:1234/"
) == str(url)
def test_from_non_ascii_login_and_password():
url = URL("http://бажан:пароль@host:1234/")
assert (
"http://"
"%D0%B1%D0%B0%D0%B6%D0%B0%D0%BD"
":%D0%BF%D0%B0%D1%80%D0%BE%D0%BB%D1%8C"
"@host:1234/"
) == str(url)
def test_from_ascii_path():
url = URL("http://example.com/" "%D0%BF%D1%83%D1%82%D1%8C/%D1%82%D1%83%D0%B4%D0%B0")
assert (
"http://example.com/" "%D0%BF%D1%83%D1%82%D1%8C/%D1%82%D1%83%D0%B4%D0%B0"
) == str(url)
def test_from_ascii_path_lower_case():
url = URL("http://example.com/" "%d0%bf%d1%83%d1%82%d1%8c/%d1%82%d1%83%d0%b4%d0%b0")
assert (
"http://example.com/" "%D0%BF%D1%83%D1%82%D1%8C/%D1%82%D1%83%D0%B4%D0%B0"
) == str(url)
def test_from_non_ascii_path():
url = URL("http://example.com/шлях/туди")
assert (
"http://example.com/%D1%88%D0%BB%D1%8F%D1%85/%D1%82%D1%83%D0%B4%D0%B8"
) == str(url)
def test_bytes():
url = URL("http://example.com/шлях/туди")
assert (
b"http://example.com/%D1%88%D0%BB%D1%8F%D1%85/%D1%82%D1%83%D0%B4%D0%B8"
== bytes(url)
)
def test_from_ascii_query_parts():
url = URL(
"http://example.com/"
"?%D0%BF%D0%B0%D1%80%D0%B0%D0%BC"
"=%D0%B7%D0%BD%D0%B0%D1%87"
)
assert (
"http://example.com/"
"?%D0%BF%D0%B0%D1%80%D0%B0%D0%BC"
"=%D0%B7%D0%BD%D0%B0%D1%87"
) == str(url)
def test_from_non_ascii_query_parts():
url = URL("http://example.com/?парам=знач")
assert (
"http://example.com/"
"?%D0%BF%D0%B0%D1%80%D0%B0%D0%BC"
"=%D0%B7%D0%BD%D0%B0%D1%87"
) == str(url)
def test_from_non_ascii_query_parts2():
url = URL("http://example.com/?п=з&ю=б")
assert "http://example.com/?%D0%BF=%D0%B7&%D1%8E=%D0%B1" == str(url)
def test_from_ascii_fragment():
url = URL("http://example.com/" "#%D1%84%D1%80%D0%B0%D0%B3%D0%BC%D0%B5%D0%BD%D1%82")
assert (
"http://example.com/" "#%D1%84%D1%80%D0%B0%D0%B3%D0%BC%D0%B5%D0%BD%D1%82"
) == str(url)
def test_from_bytes_with_non_ascii_fragment():
url = URL("http://example.com/#фрагмент")
assert (
"http://example.com/" "#%D1%84%D1%80%D0%B0%D0%B3%D0%BC%D0%B5%D0%BD%D1%82"
) == str(url)
def test_to_str():
url = URL("http://εμπορικόσήμα.eu/")
assert "http://xn--jxagkqfkduily1i.eu/" == str(url)
def test_to_str_long():
url = URL(
"https://host-12345678901234567890123456789012345678901234567890" "-name:8888/"
)
expected = (
"https://host-"
"12345678901234567890123456789012345678901234567890"
"-name:8888/"
)
assert expected == str(url)
def test_decoding_with_2F_in_path():
url = URL("http://example.com/path%2Fto")
assert "http://example.com/path%2Fto" == str(url)
assert url == URL(str(url))
def test_decoding_with_26_and_3D_in_query():
url = URL("http://example.com/?%26=%3D")
assert "http://example.com/?%26=%3D" == str(url)
assert url == URL(str(url))
def test_fragment_only_url():
url = URL("#frag")
assert str(url) == "#frag"
def test_url_from_url():
url = URL("http://example.com")
assert URL(url) == url
assert URL(url).raw_parts == ("/",)
def test_lowercase_scheme():
url = URL("HTTP://example.com")
assert str(url) == "http://example.com"
def test_str_for_empty_url():
url = URL()
assert "" == str(url)
def test_parent_for_empty_url():
url = URL()
assert url is url.parent
def test_empty_value_for_query():
url = URL("http://example.com/path").with_query({"a": ""})
assert str(url) == "http://example.com/path?a="
def test_none_value_for_query():
with pytest.raises(TypeError):
URL("http://example.com/path").with_query({"a": None})
def test_decode_pct_in_path():
url = URL("http://www.python.org/%7Eguido")
assert "http://www.python.org/~guido" == str(url)
def test_decode_pct_in_path_lower_case():
url = URL("http://www.python.org/%7eguido")
assert "http://www.python.org/~guido" == str(url)
# join
def test_join():
base = URL("http://www.cwi.nl/%7Eguido/Python.html")
url = URL("FAQ.html")
url2 = base.join(url)
assert str(url2) == "http://www.cwi.nl/~guido/FAQ.html"
def test_join_absolute():
base = URL("http://www.cwi.nl/%7Eguido/Python.html")
url = URL("//www.python.org/%7Eguido")
url2 = base.join(url)
assert str(url2) == "http://www.python.org/~guido"
def test_join_non_url():
base = URL("http://example.com")
with pytest.raises(TypeError):
base.join("path/to")
NORMAL = [
("g:h", "g:h"),
("g", "http://a/b/c/g"),
("./g", "http://a/b/c/g"),
("g/", "http://a/b/c/g/"),
("/g", "http://a/g"),
("//g", "http://g"),
("?y", "http://a/b/c/d;p?y"),
("g?y", "http://a/b/c/g?y"),
("#s", "http://a/b/c/d;p?q#s"),
("g#s", "http://a/b/c/g#s"),
("g?y#s", "http://a/b/c/g?y#s"),
(";x", "http://a/b/c/;x"),
("g;x", "http://a/b/c/g;x"),
("g;x?y#s", "http://a/b/c/g;x?y#s"),
("", "http://a/b/c/d;p?q"),
(".", "http://a/b/c/"),
("./", "http://a/b/c/"),
("..", "http://a/b/"),
("../", "http://a/b/"),
("../g", "http://a/b/g"),
("../..", "http://a/"),
("../../", "http://a/"),
("../../g", "http://a/g"),
]
@pytest.mark.parametrize("url,expected", NORMAL)
def test_join_from_rfc_3986_normal(url, expected):
# test case from https://tools.ietf.org/html/rfc3986.html#section-5.4
base = URL("http://a/b/c/d;p?q")
url = URL(url)
expected = URL(expected)
assert base.join(url) == expected
ABNORMAL = [
("../../../g", "http://a/g"),
("../../../../g", "http://a/g"),
("/./g", "http://a/g"),
("/../g", "http://a/g"),
("g.", "http://a/b/c/g."),
(".g", "http://a/b/c/.g"),
("g..", "http://a/b/c/g.."),
("..g", "http://a/b/c/..g"),
("./../g", "http://a/b/g"),
("./g/.", "http://a/b/c/g/"),
("g/./h", "http://a/b/c/g/h"),
("g/../h", "http://a/b/c/h"),
("g;x=1/./y", "http://a/b/c/g;x=1/y"),
("g;x=1/../y", "http://a/b/c/y"),
("g?y/./x", "http://a/b/c/g?y/./x"),
("g?y/../x", "http://a/b/c/g?y/../x"),
("g#s/./x", "http://a/b/c/g#s/./x"),
("g#s/../x", "http://a/b/c/g#s/../x"),
]
@pytest.mark.parametrize("url,expected", ABNORMAL)
def test_join_from_rfc_3986_abnormal(url, expected):
# test case from https://tools.ietf.org/html/rfc3986.html#section-5.4.2
base = URL("http://a/b/c/d;p?q")
url = URL(url)
expected = URL(expected)
assert base.join(url) == expected
def test_split_result_non_decoded():
with pytest.raises(ValueError):
URL(SplitResult("http", "example.com", "path", "qs", "frag"))
def test_human_repr():
url = URL("http://бажан:пароль@хост.домен:8080/шлях/сюди?арг=вал#фраг")
s = url.human_repr()
assert URL(s) == url
assert s == "http://бажан:пароль@хост.домен:8080/шлях/сюди?арг=вал#фраг"
def test_human_repr_defaults():
url = URL("шлях")
s = url.human_repr()
assert s == "шлях"
def test_human_repr_default_port():
url = URL("http://бажан:пароль@хост.домен/шлях/сюди?арг=вал#фраг")
s = url.human_repr()
assert URL(s) == url
assert s == "http://бажан:пароль@хост.домен/шлях/сюди?арг=вал#фраг"
def test_human_repr_ipv6():
url = URL("http://[::1]:8080/path")
s = url.human_repr()
url2 = URL(s)
assert url2 == url
assert url2.host == "::1"
assert s == "http://[::1]:8080/path"
def test_human_repr_delimiters():
url = URL.build(
scheme="http",
user=" !\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~",
password=" !\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~",
host="хост.домен",
port=8080,
path="/ !\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~",
query={
" !\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~": " !\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~"
},
fragment=" !\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~",
)
s = url.human_repr()
assert URL(s) == url
assert (
s == "http:// !\"%23$%25&'()*+,-.%2F%3A;<=>%3F%40%5B\\%5D^_`{|}~"
": !\"%23$%25&'()*+,-.%2F%3A;<=>%3F%40%5B\\%5D^_`{|}~"
"@хост.домен:8080"
"/ !\"%23$%25&'()*+,-./:;<=>%3F@[\\]^_`{|}~"
"? !\"%23$%25%26'()*%2B,-./:%3B<%3D>?@[\\]^_`{|}~"
"= !\"%23$%25%26'()*%2B,-./:%3B<%3D>?@[\\]^_`{|}~"
"# !\"#$%25&'()*+,-./:;<=>?@[\\]^_`{|}~"
)
def test_human_repr_non_printable():
url = URL.build(
scheme="http",
user="бажан\n\xad\u200b",
password="пароль\n\xad\u200b",
host="хост.домен",
port=8080,
path="/шлях\n\xad\u200b",
query={"арг\n\xad\u200b": "вал\n\xad\u200b"},
fragment="фраг\n\xad\u200b",
)
s = url.human_repr()
assert URL(s) == url
assert (
s == "http://бажан%0A%C2%AD%E2%80%8B:пароль%0A%C2%AD%E2%80%8B"
"@хост.домен:8080"
"/шлях%0A%C2%AD%E2%80%8B"
"?арг%0A%C2%AD%E2%80%8B=вал%0A%C2%AD%E2%80%8B"
"#фраг%0A%C2%AD%E2%80%8B"
)
# relative
def test_relative():
url = URL("http://user:pass@example.com:8080/path?a=b#frag")
rel = url.relative()
assert str(rel) == "/path?a=b#frag"
def test_relative_is_relative():
url = URL("http://user:pass@example.com:8080/path?a=b#frag")
rel = url.relative()
assert not rel.is_absolute()
def test_relative_abs_parts_are_removed():
url = URL("http://user:pass@example.com:8080/path?a=b#frag")
rel = url.relative()
assert not rel.scheme
assert not rel.user
assert not rel.password
assert not rel.host
assert not rel.port
def test_relative_fails_on_rel_url():
with pytest.raises(ValueError):
URL("/path?a=b#frag").relative()
def test_slash_and_question_in_query():
u = URL("http://example.com/path?http://example.com/p?a#b")
assert u.query_string == "http://example.com/p?a"
def test_slash_and_question_in_fragment():
u = URL("http://example.com/path#http://example.com/p?a")
assert u.fragment == "http://example.com/p?a"
def test_requoting():
u = URL("http://127.0.0.1/?next=http%3A//example.com/")
assert u.raw_query_string == "next=http://example.com/"
assert str(u) == "http://127.0.0.1/?next=http://example.com/"
|