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
|
# stdlib
import json
import os
import pathlib
import sys
from abc import ABC, abstractmethod
from ipaddress import IPv4Address
from textwrap import dedent
from typing import Type
from urllib.parse import parse_qs
# 3rd party
import pytest
import pytest_httpserver.pytest_plugin
import requests
import werkzeug
from coincidence import count, not_pypy
from pytest_httpserver.httpserver import QueryMatcher
# this package
from apeye.requests_url import RequestsURL, TrailingRequestsURL
from apeye.slumber_url import SlumberURL
from apeye.url import URL, Domain, URLPath
class MyPathLike(os.PathLike):
def __fspath__(self):
return "/python"
class TestURLPath:
@pytest.mark.parametrize(
"value, expected",
[
("/watch?v=NG21KWZSiok", '/'),
("watch?v=NG21KWZSiok", ''),
('', ''),
("/programmes/b006qtlx/episodes/player", '/'),
("/news", '/'),
("news", ''),
]
)
def test_drive_root_anchor(self, value: str, expected: str):
# These were originally NotImplemented, but they weren't doing any harm and might be useful
assert URLPath(value).drive == ''
assert URLPath(value).root == expected
assert URLPath(value).anchor == expected
@pytest.mark.parametrize(
"value, absolute",
[
(URLPath(), False),
(URLPath(''), False),
(URLPath('/'), True),
(URLPath("/news"), True),
(URLPath("news"), False),
(URLPath("/programmes/b006qtlx"), True),
(URLPath("programmes/b006qtlx"), False),
(URLPath("/programmes/b006qtlx/episodes/player"), True),
(URLPath("/watch?v=NG21KWZSiok"), True),
(URLPath("watch?v=NG21KWZSiok"), False),
]
)
def test_is_absolute(self, value: str, absolute: bool):
# Was originally NotImplemented, but it might be useful
assert URLPath(value).is_absolute() is absolute
@pytest.mark.parametrize(
"value", [
"/watch?v=NG21KWZSiok",
"watch?v=NG21KWZSiok",
'',
"/programmes/b006qtlx/episodes/player",
]
)
def test_str(self, value):
assert str(URLPath(value)) == value
@pytest.mark.parametrize(
"value, expects",
[
("/watch?v=NG21KWZSiok", "URLPath('/watch?v=NG21KWZSiok')"),
("watch?v=NG21KWZSiok", "URLPath('watch?v=NG21KWZSiok')"),
('', "URLPath('')"),
("/programmes/b006qtlx/episodes/player", "URLPath('/programmes/b006qtlx/episodes/player')"),
]
)
def test_repr(self, value, expects):
assert repr(URLPath(value)) == expects
@pytest.mark.parametrize("method", [URLPath().as_uri])
def test_notimplemented(self, method):
with pytest.raises(NotImplementedError):
method()
@pytest.mark.parametrize(
"value, expects",
[
(URLPath() / "news", URLPath("news")),
(URLPath('/') / "news", URLPath("/news")),
(URLPath("/programmes") / "b006qtlx", URLPath("/programmes/b006qtlx")),
("/programmes" / URLPath("b006qtlx"), URLPath("/programmes/b006qtlx")),
]
)
def test_division(self, value, expects):
assert value == expects
assert isinstance(value, URLPath)
@pytest.mark.parametrize(
"value, expects",
[
(URLPath() / pathlib.PurePosixPath("news"), URLPath("news")),
(URLPath() / URLPath("news"), URLPath("news")),
(URLPath('/') / pathlib.PurePosixPath("news"), URLPath("/news")),
(URLPath('/') / URLPath("news"), URLPath("/news")),
(URLPath('/') / MyPathLike(), URLPath("/python")),
(URLPath("/programmes") / pathlib.PurePosixPath("b006qtlx"), URLPath("/programmes/b006qtlx")),
(URLPath("/programmes") / URLPath("b006qtlx"), URLPath("/programmes/b006qtlx")),
pytest.param(
pathlib.PurePosixPath("/programmes") / URLPath("b006qtlx"),
URLPath("/programmes/b006qtlx"),
marks=pytest.mark.xfail(reason="The type is taken from the left object.")
),
]
)
def test_division_pathlike(self, value, expects):
assert value == expects
assert isinstance(value, URLPath)
@pytest.mark.parametrize(
"value, expects",
[
(URLPath().joinpath("news"), URLPath("news")),
(URLPath('/').joinpath("news"), URLPath("/news")),
(URLPath("/programmes").joinpath("b006qtlx"), URLPath("/programmes/b006qtlx")),
(
URLPath("/programmes").joinpath("b006qtlx", "details"),
URLPath("/programmes/b006qtlx/details")
),
]
)
def test_joinpath(self, value, expects):
assert value == expects
assert isinstance(value, URLPath)
# pylint: disable=expression-not-assigned
@count(100)
def test_division_errors_number(self, count: int):
if sys.version_info < (3, 8):
with pytest.raises(TypeError, match=r"expected str, bytes or os.PathLike object, not int"):
URLPath() / count
with pytest.raises(TypeError, match=r"expected str, bytes or os.PathLike object, not float"):
URLPath() / float(count)
else:
with pytest.raises(TypeError, match=r"unsupported operand type\(s\) for /: 'URLPath' and 'int'"):
URLPath() / count # type: ignore[operator]
with pytest.raises(TypeError, match=r"unsupported operand type\(s\) for /: 'URLPath' and 'float'"):
URLPath() / float(count) # type: ignore[operator]
@pytest.mark.parametrize("obj", [[], (), {}, set(), pytest.raises, ABC])
def test_division_errors(self, obj):
if sys.version_info < (3, 8):
with pytest.raises(TypeError, match=r"expected str, bytes or os.PathLike object, not .*"):
URLPath() / obj
else:
with pytest.raises(TypeError, match=r"unsupported operand type\(s\) for /: 'URLPath' and .*"):
URLPath() / obj
@pytest.mark.parametrize("obj", [1234, 12.34, [], (), {}, set(), pytest.raises, ABC])
def test_rtruediv_typerror(self, obj):
if sys.version_info < (3, 8):
with pytest.raises(TypeError, match=r"expected str, bytes or os.PathLike object, not .*"):
obj / URLPath()
else:
with pytest.raises(TypeError, match=r"unsupported operand type\(s\) for /: .* and 'URLPath'"):
obj / URLPath()
# pylint: enable=expression-not-assigned
@pytest.mark.parametrize(
"base, other",
[
(URLPath("/news/sport"), "/news"),
(URLPath("/news/sport"), URLPath("/news")),
(URLPath("/news/sport"), pathlib.PurePosixPath("/news")),
(URLPath("news/sport"), "news"),
(URLPath("news/sport"), URLPath("news")),
(URLPath("news/sport"), pathlib.PurePosixPath("news")),
]
)
def test_relative_to(self, base: URLPath, other):
assert base.relative_to(other) == URLPath("sport")
assert isinstance(base.relative_to(other), URLPath)
class _TestURL(ABC):
@property
@abstractmethod
def _class(self) -> Type:
pass
@pytest.mark.parametrize(
"url, scheme, netloc, path",
[
(
"https://www.bbc.co.uk/programmes/b006qtlx/episodes/player",
"https",
"www.bbc.co.uk",
URLPath("/programmes/b006qtlx/episodes/player"),
),
(
"www.bbc.co.uk/programmes/b006qtlx/episodes/player",
'',
"www.bbc.co.uk",
URLPath("/programmes/b006qtlx/episodes/player"),
),
(
"/programmes/b006qtlx/episodes/player",
'',
'',
URLPath("/programmes/b006qtlx/episodes/player"),
),
(
"//www.bbc.co.uk/programmes/b006qtlx/episodes/player",
'',
"www.bbc.co.uk",
URLPath("/programmes/b006qtlx/episodes/player"),
),
]
)
def test_creation(self, url, scheme, netloc, path):
url = self._class(url)
assert url.scheme == scheme
assert url.netloc == netloc
assert url.path == path
@pytest.mark.parametrize(
"url",
[
"https://www.bbc.co.uk/programmes/b006qtlx/episodes/player",
"www.bbc.co.uk/programmes/b006qtlx/episodes/player",
"www.bbc.co.uk",
"/programmes/b006qtlx/episodes/player",
"programmes/b006qtlx/episodes/player",
"https://127.0.0.1/programmes/b006qtlx/episodes/player",
"ftp://127.0.0.1/programmes/b006qtlx/episodes/player",
]
)
def test_str(self, url):
assert str(self._class(url)) == url
def test_division(self):
value = self._class("https://www.bbc.co.uk/programmes/b006qtlx/episodes") / "player"
assert value == self._class("https://www.bbc.co.uk/programmes/b006qtlx/episodes/player")
assert isinstance(value, self._class)
value = self._class("/programmes/b006qtlx/episodes") / "player"
assert value == self._class("/programmes/b006qtlx/episodes/player")
assert isinstance(value, self._class)
value = self._class("/programmes/b006qtlx/episodes") / "/news"
assert value == self._class("/news")
assert isinstance(value, self._class)
value = self._class("www.bbc.co.uk/news")
assert self._class("www.bbc.co.uk") / "news" == value
assert isinstance(value, self._class)
value = self._class("/news")
assert self._class() / "news" == value
assert isinstance(value, self._class)
def test_division_pathlike(self):
value = self._class("https://www.bbc.co.uk/programmes/b006qtlx/episodes") / pathlib.PurePosixPath("player")
assert value == self._class("https://www.bbc.co.uk/programmes/b006qtlx/episodes/player")
assert isinstance(value, self._class)
value = self._class("https://www.bbc.co.uk/programmes/b006qtlx/episodes") / URLPath("player")
assert value == self._class("https://www.bbc.co.uk/programmes/b006qtlx/episodes/player")
assert isinstance(value, self._class)
value = self._class("https://www.bbc.co.uk/programmes/b006qtlx/episodes") / URL("player")
assert value == self._class("https://www.bbc.co.uk/programmes/b006qtlx/episodes/player")
assert isinstance(value, self._class)
value = self._class("https://www.bbc.co.uk/programmes/b006qtlx/episodes") / URL("/news")
assert value == self._class("https://www.bbc.co.uk/news")
assert isinstance(value, self._class)
value = self._class("https://www.bbc.co.uk/programmes/b006qtlx/episodes") / MyPathLike()
assert value == self._class("https://www.bbc.co.uk/python")
assert isinstance(value, self._class)
value = self._class("/programmes/b006qtlx/episodes") / pathlib.PurePosixPath("player")
assert value == self._class("/programmes/b006qtlx/episodes/player")
assert isinstance(value, self._class)
value = self._class("/programmes/b006qtlx/episodes") / URLPath("player")
assert value == self._class("/programmes/b006qtlx/episodes/player")
assert isinstance(value, self._class)
value = self._class("www.bbc.co.uk/news")
assert self._class("www.bbc.co.uk") / pathlib.PurePosixPath("news") == value
assert isinstance(value, self._class)
value = self._class("www.bbc.co.uk/news")
assert self._class("www.bbc.co.uk") / URLPath("news") == value
assert isinstance(value, self._class)
value = self._class("/news")
assert self._class() / pathlib.PurePosixPath("news") == value
assert isinstance(value, self._class)
value = self._class("/news")
assert self._class() / URLPath("news") == value
assert isinstance(value, self._class)
@count(100)
def test_division_number(self, count: int):
assert (self._class() / count).parts[-1] == str(count)
assert isinstance(self._class() / count, self._class)
with pytest.raises(TypeError, match=r"unsupported operand type\(s\) for /: '.*' and 'float'"):
self._class() / float(count) # pylint: disable=expression-not-assigned
@pytest.mark.parametrize("obj", [[], (), {}, set(), pytest.raises, ABC])
def test_division_errors(self, obj):
with pytest.raises(TypeError, match=r"unsupported operand type\(s\) for /: '.*' and .*"):
self._class() / obj # pylint: disable=expression-not-assigned
@pytest.mark.parametrize("obj", [1234, 12.34, "abcdefg", [], (), {}, set(), pytest.raises, ABC])
def test_rtruediv_typerror(self, obj):
with pytest.raises(TypeError, match=r"unsupported operand type\(s\) for /: .* and '.*'"):
obj / self._class() # pylint: disable=expression-not-assigned
def test_joinurl(self):
value = self._class("https://www.bbc.co.uk/programmes/b006qtlx/episodes").joinurl("player")
assert value == self._class("https://www.bbc.co.uk/programmes/b006qtlx/episodes/player")
value = self._class("/programmes/b006qtlx/episodes").joinurl("player")
assert value == self._class("/programmes/b006qtlx/episodes/player")
assert self._class("www.bbc.co.uk").joinurl("news") == self._class("www.bbc.co.uk/news")
assert self._class().joinurl("news") == self._class("/news")
assert self._class("www.bbc.co.uk").joinurl("news", "sport") == self._class("www.bbc.co.uk/news/sport")
expected = self._class("www.bbc.co.uk/news/sport?que=ry")
assert self._class("www.bbc.co.uk").joinurl("news#anchor", "sport?que=ry") == expected
expected = self._class("www.bbc.co.uk/news/sport#anchor")
assert self._class("www.bbc.co.uk").joinurl("news?que=ry", "sport#anchor") == expected
def test_empty_url_operations(self):
assert self._class().name == ''
assert self._class().suffix == ''
assert self._class().fqdn == ''
assert self._class().stem == ''
assert self._class().suffixes == []
assert self._class().port is None
@pytest.mark.parametrize(
"url, name",
[
("https://www.bbc.co.uk/programmes/b006qtlx/episodes", "episodes"),
("www.bbc.co.uk", ''),
("/programmes/b006qtlx/episodes", "episodes"),
]
)
def test_name(self, url, name):
assert self._class(url).name == name
@pytest.mark.parametrize(
"url, suffix",
[
("https://www.bbc.co.uk/programmes/b006qtlx/episodes", ''),
("www.bbc.co.uk", ''),
("/programmes/b006qtlx/episodes", ''),
("https://imgs.xkcd.com/comics/workflow.png", ".png"),
]
)
def test_suffix(self, url, suffix):
assert self._class(url).suffix == suffix
@pytest.mark.parametrize(
"url, suffixes",
[
("https://www.bbc.co.uk/programmes/b006qtlx/episodes", []),
("www.bbc.co.uk", []),
("/programmes/b006qtlx/episodes", []),
("https://imgs.xkcd.com/comics/workflow.png", [".png"]),
(
"https://github.com/domdfcoding/domdf_python_tools/releases/download/"
"v0.4.8/domdf_python_tools-0.4.8.tar.gz", [".4", ".8", ".tar", ".gz"]
),
]
)
def test_suffixes(self, url, suffixes):
assert self._class(url).suffixes == suffixes
@pytest.mark.parametrize(
"url, stem",
[
("https://www.bbc.co.uk/programmes/b006qtlx/episodes", "episodes"),
("www.bbc.co.uk", ''),
("/programmes/b006qtlx/episodes", "episodes"),
("https://imgs.xkcd.com/comics/workflow.png", "workflow"),
(
"https://github.com/domdfcoding/domdf_python_tools/releases/download/v0.4.8/domdf_python_tools-0.4.8.tar.gz",
"domdf_python_tools-0.4.8.tar"
),
]
)
def test_stem(self, url, stem):
assert self._class(url).stem == stem
def test_with_name_errors(self):
with pytest.raises(ValueError, match=r"URLPath\(''\) has an empty name"):
self._class("www.bbc.co.uk").with_name("bar")
with pytest.raises(ValueError, match=r"URLPath\(''\) has an empty name"):
self._class().with_name("bar")
@pytest.mark.parametrize(
"url, expected, name",
[(
"https://www.bbc.co.uk/programmes/b006qtlx/episodes",
"https://www.bbc.co.uk/programmes/b006qtlx/foo",
"foo"
),
(
"https://www.bbc.co.uk/programmes/b006qtlx/episodes?que=ry",
"https://www.bbc.co.uk/programmes/b006qtlx/foo",
"foo"
),
(
"https://www.bbc.co.uk/programmes/b006qtlx/episodes#fragment",
"https://www.bbc.co.uk/programmes/b006qtlx/foo",
"foo"
),
(
"https://www.bbc.co.uk/programmes/b006qtlx/episodes?que=ry#fragment",
"https://www.bbc.co.uk/programmes/b006qtlx/foo",
"foo"
), ("/programmes/b006qtlx/episodes", "/programmes/b006qtlx/foo", "foo"),
("https://imgs.xkcd.com/comics/workflow.png", "https://imgs.xkcd.com/comics/baz", "baz")]
)
def test_with_name(self, url: str, expected: str, name: str):
assert self._class(url).with_name(name) == self._class(expected)
@pytest.mark.parametrize(
"url, expected",
[
(
"https://www.bbc.co.uk/programmes/b006qtlx/episodes",
"https://www.bbc.co.uk/programmes/b006qtlx/foo",
),
(
"https://www.bbc.co.uk/programmes/b006qtlx/episodes?que=ry",
"https://www.bbc.co.uk/programmes/b006qtlx/foo?que=ry",
),
(
"https://www.bbc.co.uk/programmes/b006qtlx/episodes#fragment",
"https://www.bbc.co.uk/programmes/b006qtlx/foo#fragment",
),
(
"https://www.bbc.co.uk/programmes/b006qtlx/episodes?que=ry#fragment",
"https://www.bbc.co.uk/programmes/b006qtlx/foo?que=ry#fragment",
),
]
)
def test_with_name_inherit(self, url: str, expected: str):
assert self._class(url).with_name("foo", inherit=True) == self._class(expected)
@pytest.mark.parametrize(
"url, expected, suffix",
[(
"https://www.bbc.co.uk/programmes/b006qtlx/episodes",
"https://www.bbc.co.uk/programmes/b006qtlx/episodes.foo",
".foo"
),
(
"https://www.bbc.co.uk/programmes/b006qtlx/episodes?que=ry",
"https://www.bbc.co.uk/programmes/b006qtlx/episodes.foo",
".foo"
),
(
"https://www.bbc.co.uk/programmes/b006qtlx/episodes#fragment",
"https://www.bbc.co.uk/programmes/b006qtlx/episodes.foo",
".foo"
),
(
"https://www.bbc.co.uk/programmes/b006qtlx/episodes?que=ry#fragment",
"https://www.bbc.co.uk/programmes/b006qtlx/episodes.foo",
".foo"
), ("/programmes/b006qtlx/episodes", "/programmes/b006qtlx/episodes.foo", ".foo"),
("https://imgs.xkcd.com/comics/workflow.png", "https://imgs.xkcd.com/comics/workflow.baz", ".baz")]
)
def test_with_suffix(self, url: str, expected: str, suffix: str):
assert self._class(url).with_suffix(suffix) == self._class(expected)
@pytest.mark.parametrize(
"url, expected",
[
(
"https://www.bbc.co.uk/programmes/b006qtlx/episodes",
"https://www.bbc.co.uk/programmes/b006qtlx/episodes.foo",
),
(
"https://www.bbc.co.uk/programmes/b006qtlx/episodes?que=ry",
"https://www.bbc.co.uk/programmes/b006qtlx/episodes.foo?que=ry",
),
(
"https://www.bbc.co.uk/programmes/b006qtlx/episodes#fragment",
"https://www.bbc.co.uk/programmes/b006qtlx/episodes.foo#fragment",
),
(
"https://www.bbc.co.uk/programmes/b006qtlx/episodes?que=ry#fragment",
"https://www.bbc.co.uk/programmes/b006qtlx/episodes.foo?que=ry#fragment",
),
]
)
def test_with_suffix_inherit(self, url: str, expected: str):
assert self._class(url).with_suffix(".foo", inherit=True) == self._class(expected)
@pytest.mark.parametrize(
"url, parent",
[
(
"https://www.bbc.co.uk/programmes/b006qtlx/episodes",
"https://www.bbc.co.uk/programmes/b006qtlx"
),
("/programmes/b006qtlx/episodes", "/programmes/b006qtlx"),
("https://imgs.xkcd.com/comics/workflow.png", "https://imgs.xkcd.com/comics"),
]
)
def test_parent(self, url, parent):
assert self._class(url).parent == self._class(parent)
@pytest.mark.parametrize(
"url, fqdn",
[
("https://www.bbc.co.uk/programmes/b006qtlx/episodes", "www.bbc.co.uk"),
("www.bbc.co.uk", "www.bbc.co.uk"),
("/programmes/b006qtlx/episodes", ''),
("https://imgs.xkcd.com/comics/workflow.png", "imgs.xkcd.com"),
]
)
def test_fqdn(self, url, fqdn):
assert self._class(url).fqdn == fqdn
@pytest.mark.parametrize(
"url, subdomain, domain, suffix, ipv4",
[
("https://www.bbc.co.uk/programmes/b006qtlx/episodes", "www", "bbc", "co.uk", None),
("/programmes/b006qtlx/episodes", '', '', '', None),
("https://www.bbc.co.uk", "www", "bbc", "co.uk", None),
("ftp://127.0.0.1/download.zip", '', "127.0.0.1", '', IPv4Address("127.0.0.1")),
]
)
def test_domain(self, url, subdomain, domain, suffix, ipv4):
assert isinstance(self._class(url).domain, Domain)
assert self._class(url).domain.subdomain == subdomain
assert self._class(url).domain.domain == domain
assert self._class(url).domain.suffix == suffix
assert self._class(url).domain.ipv4 == ipv4
@pytest.mark.parametrize(
"url, port",
[
("https://www.bbc.co.uk/programmes/b006qtlx/episodes", None),
("https://www.bbc.co.uk:80/programmes/b006qtlx/episodes", 80),
("https://www.bbc.co.uk:8080/programmes/b006qtlx/episodes", 8080),
("https://www.bbc.co.uk:443/programmes/b006qtlx/episodes", 443),
("www.bbc.co.uk", None),
("www.bbc.co.uk:80", 80),
("www.bbc.co.uk:8080", 8080),
("www.bbc.co.uk:443", 443),
("/programmes/b006qtlx/episodes", None),
]
)
def test_port(self, url, port):
assert self._class(url).port == port
@pytest.mark.parametrize(
"url, expects",
[
("bbc.co.uk/news", "bbc.co.uk/news"),
("https://bbc.co.uk/news", "bbc.co.uk/news"),
("https://www.bbc.co.uk/news", "www.bbc.co.uk/news"),
]
)
def test_cast_to_pathlib(self, url, expects):
assert pathlib.Path(self._class(url)) == pathlib.Path(expects)
@pytest.mark.parametrize(
"url, expects",
[
("bbc.co.uk/news", "bbc.co.uk/news"),
("https://bbc.co.uk/news", "bbc.co.uk/news"),
("https://www.bbc.co.uk/news", "www.bbc.co.uk/news"),
]
)
def test_fspath(self, url, expects):
assert self._class(url).__fspath__() == expects
assert os.fspath(self._class(url)) == expects
def test_hash(self):
assert hash(self._class("bbc.co.uk")) == hash(self._class("bbc.co.uk"))
assert hash(self._class("bbc.co.uk/news")) != hash(self._class("bbc.co.uk"))
assert {self._class("bbc.co.uk"), hash(self._class("bbc.co.uk/news"))}
@pytest.mark.parametrize(
"url, parts",
[
(
"https://hub.docker.com/r/tobix/pywine/dockerfile",
("https", "hub", "docker", "com", 'r', "tobix", "pywine", "dockerfile")
),
]
)
def test_parts(self, url, parts):
assert self._class(url).parts == parts
def test_parents(self):
assert self._class("https://hub.docker.com/r/tobix/pywine/dockerfile").parents == (
self._class("https://hub.docker.com/r/tobix/pywine"),
self._class("https://hub.docker.com/r/tobix"),
self._class("https://hub.docker.com/r"),
self._class("https://hub.docker.com/"),
)
def test_notimplemented_eq(self):
assert URL() != 7
assert URL() != 3.14142
assert URL() != 'a'
assert URL() != [7, 'a', 3.14142]
assert URL() != (7, 'a', 3.14142)
assert URL() != {7, 'a', 3.14142}
assert URL() != {"int": 7, "str": 'a', "float": 3.14142}
def test_from_url(self):
url = URL("bbc.co.uk")
assert self._class(url) == url
def test_with_query(self):
url = self._class("https://api.github.com/user/domdfcoding/repos?page=2&per_page=50")
assert url.query == {"page": ['2'], "per_page": ["50"]}
url = self._class("https://api.github.com/user/domdfcoding/repos?name=bob")
assert url.query == {"name": ["bob"]}
url = self._class("https://api.github.com/user/domdfcoding/repos")
assert url.query == {}
url = self._class("https://api.github.com?foo=bar")
assert url.query == {"foo": ["bar"]}
assert (url / "users").query == {}
def test_with_fragment(self):
url = self._class("https://api.github.com/user/domdfcoding/repos#footer")
assert url.fragment == "footer"
url = self._class("https://api.github.com/user/domdfcoding/repos")
assert url.fragment is None
url = self._class("https://api.github.com#footer")
assert url.fragment == "footer"
assert (url / "users").fragment is None
def test_relative_to(self):
expected = URLPath("domdfcoding")
assert self._class("https://github.com/domdfcoding").relative_to(URL("https://github.com")) == expected
assert self._class("https://github.com/domdfcoding").relative_to(
RequestsURL("https://github.com")
) == expected
assert self._class("https://github.com/domdfcoding").relative_to(
SlumberURL("https://github.com")
) == expected
expected = URLPath("football")
assert self._class("https://www.bbc.co.uk:443/news/sport/football").relative_to("/news/sport") == expected
assert self._class("https://www.bbc.co.uk:443/news/sport/football").relative_to(
URLPath("/news/sport")
) == expected
with pytest.raises(ValueError, match="'URL.relative_to' cannot be used with relative URLPath objects"):
self._class("https://www.bbc.co.uk:443/news/sport/football").relative_to(URLPath("news/sport"))
with pytest.raises(ValueError, match=".* does not start with .*"):
self._class("https://github.com/domdfcoding").relative_to(URL("https://bbc.co.uk/news"))
with pytest.raises(ValueError, match=".* does not start with .*"):
self._class("https://www.bbc.co.uk:443/news/sport").relative_to(URL("https://bbc.co.uk/news"))
# Perhaps not quite what was intended
match = r".*URL\('https://bbc.co.uk/news/sport/football(/)?'\) does not start with .*URL\('news/sport'\)"
with pytest.raises(ValueError, match=match):
self._class("https://bbc.co.uk/news/sport/football").relative_to("news/sport")
the_url = self._class("https://github.com/domdfcoding")
assert the_url.path == URLPath("/domdfcoding")
the_url.path = URLPath("domdfcoding")
assert the_url.path == URLPath("domdfcoding")
assert the_url.relative_to(URL("https://github.com")) == URLPath("domdfcoding")
# Should be case insensitive (NOT case folded) per RFC 4343
expected = URLPath("domdfcoding")
url = self._class("https://github.com/domdfcoding")
assert url.relative_to(self._class("https://GitHub.COM")) == expected
def test_ordering(self):
# f comes before t
football = self._class("https://bbc.co.uk:443/news/sport/football")
tennis = self._class("https://bbc.co.uk:443/news/sport/tennis")
assert football < tennis
assert football <= tennis
assert tennis > football
assert tennis >= football
assert sorted([tennis, football]) == [football, tennis]
# port number is sorted before path
tennis = self._class("https://bbc.co.uk:80/news/sport/tennis")
assert tennis < self._class("https://bbc.co.uk:443/news/sport/football")
assert tennis <= self._class("https://bbc.co.uk:443/news/sport/football")
assert football > tennis
assert football >= tennis
# scheme is sorted before path
tennis = self._class("http://bbc.co.uk/news/sport/tennis")
assert tennis < self._class("https://bbc.co.uk/news/sport/football")
assert tennis <= self._class("https://bbc.co.uk/news/sport/football")
assert self._class("https://bbc.co.uk/news/sport/football") > tennis
assert self._class("https://bbc.co.uk/news/sport/football") >= tennis
# Empty subdomain comes first
tennis = self._class("https://bbc.co.uk/news/sport/tennis")
assert tennis < self._class("https://news.bbc.co.uk/sport/tennis")
assert tennis <= self._class("https://news.bbc.co.uk/sport/tennis")
assert self._class("https://news.bbc.co.uk/sport/tennis") > tennis
assert self._class("https://news.bbc.co.uk/sport/tennis") >= tennis
@pytest.mark.parametrize("other_class", [URL, SlumberURL, RequestsURL, TrailingRequestsURL])
def test_ordering_other_classes(self, other_class):
# f comes before t
football = "https://bbc.co.uk:443/news/sport/football"
tennis = "https://bbc.co.uk:443/news/sport/tennis"
assert self._class(football) < other_class(tennis)
assert self._class(football) <= other_class(tennis)
assert self._class(tennis) > other_class(football)
assert self._class(tennis) >= other_class(football)
assert sorted([self._class(tennis), other_class(football)]) == [self._class(football), self._class(tennis)]
# port number is sorted before path
tennis = "https://bbc.co.uk:80/news/sport/tennis"
assert self._class(tennis) < other_class(football)
assert self._class(tennis) <= other_class(football)
assert self._class(football) > other_class(tennis)
assert self._class(football) >= other_class(tennis)
# scheme is sorted before path
tennis = "http://bbc.co.uk/news/sport/tennis"
assert self._class(tennis) < other_class("https://bbc.co.uk/news/sport/football")
assert self._class(tennis) <= other_class("https://bbc.co.uk/news/sport/football")
assert self._class("https://bbc.co.uk/news/sport/football") > other_class(tennis)
assert self._class("https://bbc.co.uk/news/sport/football") >= other_class(tennis)
# Empty subdomain comes first
tennis = "https://bbc.co.uk/news/sport/tennis"
assert self._class(tennis) < other_class("https://news.bbc.co.uk/sport/tennis")
assert self._class(tennis) <= other_class("https://news.bbc.co.uk/sport/tennis")
assert self._class("https://news.bbc.co.uk/sport/tennis") > other_class(tennis)
assert self._class("https://news.bbc.co.uk/sport/tennis") >= other_class(tennis)
class TestURL(_TestURL):
_class = URL
@pytest.mark.parametrize(
"url, expects",
[
(
URL("https://www.bbc.co.uk/programmes/b006qtlx/episodes/player"),
"URL('https://www.bbc.co.uk/programmes/b006qtlx/episodes/player')"
),
(
URL("www.bbc.co.uk/programmes/b006qtlx/episodes/player"),
"URL('www.bbc.co.uk/programmes/b006qtlx/episodes/player')"
),
(URL("www.bbc.co.uk"), "URL('www.bbc.co.uk')"),
(URL("/programmes/b006qtlx/episodes/player"), "URL('/programmes/b006qtlx/episodes/player')"),
(URL("programmes/b006qtlx/episodes/player"), "URL('programmes/b006qtlx/episodes/player')"),
(
URL("https://127.0.0.1/programmes/b006qtlx/episodes/player"),
"URL('https://127.0.0.1/programmes/b006qtlx/episodes/player')"
),
(
URL("ftp://127.0.0.1/programmes/b006qtlx/episodes/player"),
"URL('ftp://127.0.0.1/programmes/b006qtlx/episodes/player')"
),
]
)
def test_repr(self, url, expects):
assert repr(url) == expects
def test_isinstance(self):
assert isinstance(URL(), URL)
assert isinstance(URL(), os.PathLike)
def test_equality(self):
assert URL() == URL()
assert URL("bbc.co.uk") == URL("bbc.co.uk")
assert URL("https://bbc.co.uk") == URL("https://bbc.co.uk")
assert URL("bbc.co.uk/news") == URL("bbc.co.uk/news")
assert URL("bbc.co.uk") != URL("bbc.co.uk/news")
assert URL("bbc.co.uk") != URL("http://bbc.co.uk/news")
assert URL("bbc.co.uk") != URL("http://bbc.co.uk")
def test_strict_equality(self):
assert URL().strict_compare(URL())
assert URL("bbc.co.uk").strict_compare(URL("bbc.co.uk"))
assert URL("bbc.co.uk#fragment").strict_compare(URL("bbc.co.uk#fragment"))
assert URL("bbc.co.uk?que=ry").strict_compare(URL("bbc.co.uk?que=ry"))
assert URL("bbc.co.uk?que=ry#fragment").strict_compare(URL("bbc.co.uk?que=ry#fragment"))
assert URL("https://bbc.co.uk").strict_compare(URL("https://bbc.co.uk"))
assert URL("https://bbc.co.uk#fragment").strict_compare(URL("https://bbc.co.uk#fragment"))
assert URL("https://bbc.co.uk?que=ry").strict_compare(URL("https://bbc.co.uk?que=ry"))
assert URL("https://bbc.co.uk?que=ry#fragment").strict_compare(URL("https://bbc.co.uk?que=ry#fragment"))
assert URL("bbc.co.uk/news").strict_compare(URL("bbc.co.uk/news"))
assert URL("bbc.co.uk/news#fragment").strict_compare(URL("bbc.co.uk/news#fragment"))
assert URL("bbc.co.uk/news?que=ry").strict_compare(URL("bbc.co.uk/news?que=ry"))
assert URL("bbc.co.uk/news?que=ry#fragment").strict_compare(URL("bbc.co.uk/news?que=ry#fragment"))
assert not URL("bbc.co.uk").strict_compare(URL("bbc.co.uk/news"))
assert not URL("bbc.co.uk#fragment").strict_compare(URL("bbc.co.uk/news"))
assert not URL("bbc.co.uk#fragment").strict_compare(URL("bbc.co.uk"))
assert not URL("bbc.co.uk?que=ry").strict_compare(URL("bbc.co.uk/news"))
assert not URL("bbc.co.uk?que=ry").strict_compare(URL("bbc.co.uk"))
assert not URL("bbc.co.uk?que=ry").strict_compare(URL("bbc.co.uk/news#fragment"))
assert not URL("bbc.co.uk?que=ry").strict_compare(URL("bbc.co.uk#fragment"))
assert not URL("bbc.co.uk").strict_compare(URL("http://bbc.co.uk/news"))
assert not URL("bbc.co.uk").strict_compare(URL("http://bbc.co.uk"))
class TestSlumberURL(_TestURL):
_class = SlumberURL
def test_isinstance(self):
assert isinstance(SlumberURL(), SlumberURL)
assert isinstance(SlumberURL(), URL)
assert isinstance(SlumberURL(), os.PathLike)
base = SlumberURL("https://jsonplaceholder.typicode.com")
def test_get(self):
assert self.base / "todos" / '1' == URL("https://jsonplaceholder.typicode.com/todos/1")
assert (self.base / "todos" / '1').get() == {
"userId": 1,
"id": 1,
"title": "delectus aut autem",
"completed": False,
}
assert isinstance((self.base / "todos").get(userID=1), list)
def test_head(self):
assert self.base / "todos" / '1' == URL("https://jsonplaceholder.typicode.com/todos/1")
headers = (self.base / "todos" / '1').head()
assert "Date" in headers
assert headers["Content-Type"] == "application/json; charset=utf-8"
assert headers["Server"] == "cloudflare"
# TODO: On conda brotli is used -- is the required package installed there?
assert headers["Content-Encoding"] in {"gzip", "br"}
def test_options(self):
options = SlumberURL("https://readthedocs.org").options()
assert options == "GET, HEAD, OPTIONS"
def test_post(self):
assert self.base / "posts" == URL("https://jsonplaceholder.typicode.com/posts")
expected = {"body": "bar", "userId": 1, "id": 101, "title": "foo"}
assert (self.base / "posts").post({"title": "foo", "body": "bar", "userId": 1}) == expected
def test_put(self):
assert self.base / "posts" / '1' == URL("https://jsonplaceholder.typicode.com/posts/1")
expected = {"body": "bar", "userId": 1, "id": 1, "title": "foo"}
assert (self.base / "posts" / '1').put({"title": "foo", "body": "bar", "userId": 1}) == expected
def test_patch(self):
body = dedent(
"""\
quia et suscipit
suscipit recusandae consequuntur expedita et cum
reprehenderit molestiae ut ut quas totam
nostrum rerum est autem sunt rem eveniet architecto"""
)
expected = {"body": body, "userId": 1, "id": 1, "title": "foo"}
assert (self.base / "posts" / '1').patch({"title": "foo"}) == expected
def test_delete(self):
assert (self.base / "posts" / '1').delete()
def test_equality(self):
assert SlumberURL() == SlumberURL()
assert URL() == SlumberURL()
assert SlumberURL("bbc.co.uk") == SlumberURL("bbc.co.uk")
assert URL("bbc.co.uk") == SlumberURL("bbc.co.uk")
assert SlumberURL("https://bbc.co.uk") == SlumberURL("https://bbc.co.uk")
assert URL("https://bbc.co.uk") == SlumberURL("https://bbc.co.uk")
assert SlumberURL("bbc.co.uk/news") == SlumberURL("bbc.co.uk/news")
assert URL("bbc.co.uk/news") == SlumberURL("bbc.co.uk/news")
assert SlumberURL("bbc.co.uk") != SlumberURL("bbc.co.uk/news")
assert SlumberURL("bbc.co.uk") != SlumberURL("http://bbc.co.uk/news")
assert SlumberURL("bbc.co.uk") != SlumberURL("http://bbc.co.uk")
def test_division__store(self):
sess = requests.Session()
l_url = SlumberURL(
"http://bbc.co.uk",
format="XML",
auth=("username", "password"),
append_slash=False,
session=sess,
)
l_url.timeout = 42
l_url.cert = "cert"
l_url.proxies = "proxies" # type: ignore[assignment]
l_url.allow_redirects = False
l_url.verify = "verify"
new_url = l_url / "news"
assert new_url._store == l_url._store
assert new_url.session is sess is l_url.session is l_url._store["session"]
assert new_url.session.auth == l_url.session.auth == ("username", "password")
assert new_url._store["format"] == l_url._store["format"] == "XML"
assert new_url.timeout == 42
assert new_url.cert == "cert"
assert new_url.proxies == "proxies"
assert new_url.allow_redirects is False
assert new_url.verify == "verify"
@not_pypy("Method never called")
def test_garbage_collection(self, capsys):
# Deleting a child should not close the session while a reference to it is still held
class Sess(requests.Session):
def close(self):
print("Closing")
super().close()
u = self._class("https://github.com")
u.session = Sess()
u1 = u / "domdfcoding"
print(u1 / "apeye")
del u1
assert capsys.readouterr().out == "https://github.com/domdfcoding/apeye\n"
del u
assert capsys.readouterr().out == "Closing\n"
the_session = Sess()
u3 = self._class("https://github.com")
u3.session = the_session
u4 = u3 / "domdfcoding"
print(u4 / "apeye")
del u4
assert capsys.readouterr().out == "https://github.com/domdfcoding/apeye\n"
del u3
assert capsys.readouterr().out == ''
the_session.close()
assert capsys.readouterr().out == "Closing\n"
class TestRequestsURL(_TestURL):
_class = RequestsURL
def test_isinstance(self):
assert isinstance(RequestsURL(), RequestsURL)
assert isinstance(RequestsURL(), URL)
assert isinstance(RequestsURL(), os.PathLike)
base = RequestsURL("https://raw.githubusercontent.com")
@pytest.mark.parametrize(
"url, expected",
[
("https://github.com/domdfcoding/PyMassSpec", "https://github.com/PyMassSpec/PyMassSpec"),
("http://pypi.io/p/domdf_python_tools", "https://pypi.org/project/domdf-python-tools"),
]
)
def test_resolve(self, url: str, expected: str):
assert str(RequestsURL(url).resolve()) == expected
assert str(RequestsURL(url).resolve(timeout=10)) == expected
def test_get(self):
target_url = self.base / "domdfcoding" / "domdf_python_tools" / "v2.9.1" / "LICENSE"
assert target_url == URL("https://raw.githubusercontent.com/domdfcoding/domdf_python_tools/v2.9.1/LICENSE")
assert target_url.get().text.splitlines()[:11] == [
" GNU LESSER GENERAL PUBLIC LICENSE",
" Version 3, 29 June 2007",
'',
" Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>",
" Everyone is permitted to copy and distribute verbatim copies",
" of this license document, but changing it is not allowed.",
'',
'',
" This version of the GNU Lesser General Public License incorporates",
"the terms and conditions of version 3 of the GNU General Public",
"License, supplemented by the additional permissions listed below.",
]
def test_get_default_params(self, httpserver: pytest_httpserver.pytest_plugin.PluginHTTPServer):
class QM(QueryMatcher):
def get_comparing_values(self, request_query_string: bytes) -> tuple:
return '', ''
def match(self, request_query_string: bytes) -> bool:
return True
def handler(request: werkzeug.Request):
headers = {"Content-Type": "application/json"}
body = json.dumps(parse_qs(request.query_string.decode("UTF-8")))
return werkzeug.Response(body, 200, headers, None, None)
httpserver.expect_request("/query", method="GET", query_string=QM()).respond_with_handler(handler)
url = RequestsURL(httpserver.url_for("/query?foo=bar&fizz=buzz"))
assert url.get().json() == {"foo": ["bar"], "fizz": ["buzz"]}
url = RequestsURL(httpserver.url_for("/query"))
assert url.get(params={"bdfl": "Guido"}).json() == {"bdfl": ["Guido"]}
def test_requests_integration(self, httpserver: pytest_httpserver.pytest_plugin.PluginHTTPServer):
# We only need to test the wrapper; the actual implementations are tested by requests themselves.
httpserver.expect_request("/testing_get", method="GET").respond_with_json("GET request succeeded")
assert RequestsURL(httpserver.url_for("/testing_get")).get().json() == "GET request succeeded"
def setup_response(method):
route = f"/testing_{method.lower()}"
data = f"This is a {method} request"
response = f"{method} request succeeded"
expect_request = httpserver.expect_request(route, method=method, data=data)
expect_request.respond_with_json(response)
return httpserver.url_for(route), data, response
route, data, response = setup_response("POST")
assert RequestsURL(route).post(data=data).json() == response
route, data, response = setup_response("PUT")
assert RequestsURL(route).put(data=data).json() == response
route, data, response = setup_response("PATCH")
assert RequestsURL(route).patch(data=data).json() == response
route, data, response = setup_response("OPTIONS")
assert RequestsURL(route).options(data=data).json() == response
method = "DELETE"
route = f"/testing_{method.lower()}"
data = f"This is a {method} request"
response = f"{method} failed successfully"
expect_request = httpserver.expect_request(route, method=method, data=data)
expect_request.respond_with_json(response)
assert RequestsURL(httpserver.url_for(route)).delete(data=data).json() == response
method = "HEAD"
route = f"/testing_{method.lower()}"
data = f"This is a {method} request"
test_string = "HEAD request succeeded"
httpserver.expect_request(route, method=method, data=data).respond_with_json(test_string)
headers = RequestsURL(httpserver.url_for(route)).head(data=data).headers
assert headers["Content-Type"] == "application/json"
assert headers["Content-Length"] == str(len(repr(test_string)))
assert headers["Server"].startswith("Werkzeug")
assert "Date" in headers
def test_equality(self):
assert RequestsURL() == RequestsURL()
assert URL() == RequestsURL()
assert RequestsURL("bbc.co.uk") == RequestsURL("bbc.co.uk")
assert URL("bbc.co.uk") == RequestsURL("bbc.co.uk")
assert RequestsURL("https://bbc.co.uk") == RequestsURL("https://bbc.co.uk")
assert URL("https://bbc.co.uk") == RequestsURL("https://bbc.co.uk")
assert RequestsURL("bbc.co.uk/news") == RequestsURL("bbc.co.uk/news")
assert URL("bbc.co.uk/news") == RequestsURL("bbc.co.uk/news")
assert RequestsURL("bbc.co.uk") != RequestsURL("bbc.co.uk/news")
assert RequestsURL("bbc.co.uk") != RequestsURL("http://bbc.co.uk/news")
assert RequestsURL("bbc.co.uk") != RequestsURL("http://bbc.co.uk")
def test_division_session(self):
sess = requests.Session()
l_url = RequestsURL("http://bbc.co.uk")
l_url.session = sess
new_url = l_url / "news"
assert new_url.session is sess
sess = requests.Session()
l_url = RequestsURL("http://bbc.co.uk")
new_url = l_url / "news"
assert new_url.session is not sess
@not_pypy("Method never called")
def test_garbage_collection(self, capsys):
# Deleting a child should not close the session while a reference to it is still held
class Sess(requests.Session):
def close(self):
print("Closing")
super().close()
u = RequestsURL("https://github.com")
u.session = Sess()
u1 = u / "domdfcoding"
print(u1 / "apeye")
del u1
assert capsys.readouterr().out == "https://github.com/domdfcoding/apeye\n"
del u
assert capsys.readouterr().out == "Closing\n"
the_session = Sess()
u3 = RequestsURL("https://github.com")
u3.session = the_session
u4 = u3 / "domdfcoding"
print(u4 / "apeye")
del u4
assert capsys.readouterr().out == "https://github.com/domdfcoding/apeye\n"
del u3
assert capsys.readouterr().out == ''
the_session.close()
assert capsys.readouterr().out == "Closing\n"
def test_subclass__eq__():
assert RequestsURL() == SlumberURL()
assert RequestsURL("bbc.co.uk") == SlumberURL("bbc.co.uk")
assert RequestsURL("https://bbc.co.uk") == SlumberURL("https://bbc.co.uk")
assert RequestsURL("bbc.co.uk/news") == SlumberURL("bbc.co.uk/news")
class TestTrailingRequestsURL(TestRequestsURL):
_class = TrailingRequestsURL
@pytest.mark.parametrize(
"url, expects",
[
(
"https://www.bbc.co.uk/programmes/b006qtlx/episodes/player/",
"https://www.bbc.co.uk/programmes/b006qtlx/episodes/player/"
),
(
"www.bbc.co.uk/programmes/b006qtlx/episodes/player/",
"www.bbc.co.uk/programmes/b006qtlx/episodes/player/"
),
("www.bbc.co.uk", "www.bbc.co.uk/"),
("/programmes/b006qtlx/episodes/player", "/programmes/b006qtlx/episodes/player/"),
("programmes/b006qtlx/episodes/player", "programmes/b006qtlx/episodes/player/"),
(
"https://127.0.0.1/programmes/b006qtlx/episodes/player",
"https://127.0.0.1/programmes/b006qtlx/episodes/player/"
),
(
"ftp://127.0.0.1/programmes/b006qtlx/episodes/player",
"ftp://127.0.0.1/programmes/b006qtlx/episodes/player/"
),
]
)
def test_str(self, url, expects):
assert str(self._class(url)) == expects
def test_base_domain_already_trailing(self):
assert str(TrailingRequestsURL("https://bbc.co.uk/")) == "https://bbc.co.uk/"
assert str(TrailingRequestsURL("https://bbc.co.uk//")) == "https://bbc.co.uk/"
assert str(TrailingRequestsURL("https://bbc.co.uk")) == "https://bbc.co.uk/"
def test_domain_class():
d = Domain("docs", "python", "org")
assert d.subdomain == "docs"
assert d.domain == "python"
assert d.suffix == "org"
assert d.fqdn == "docs.python.org"
assert d.registered_domain == "python.org"
assert d.ipv4 is None
assert repr(d) == "Domain(subdomain='docs', domain='python', suffix='org')"
iv4d = Domain(subdomain='', domain="127.0.0.1", suffix='')
assert iv4d.subdomain == ''
assert iv4d.domain == "127.0.0.1"
assert iv4d.suffix == ''
assert iv4d.fqdn == ''
assert iv4d.registered_domain == ''
assert iv4d.ipv4 == IPv4Address("127.0.0.1")
assert repr(iv4d) == "Domain(subdomain='', domain='127.0.0.1', suffix='')"
|