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
|
# -*- coding: utf-8 -*-
"""
tests.routing
~~~~~~~~~~~~~
Routing tests.
:copyright: 2007 Pallets
:license: BSD-3-Clause
"""
import gc
import uuid
import pytest
from . import strict_eq
from werkzeug import routing as r
from werkzeug.datastructures import ImmutableDict
from werkzeug.datastructures import MultiDict
from werkzeug.test import create_environ
from werkzeug.wrappers import Response
def test_basic_routing():
map = r.Map(
[
r.Rule("/", endpoint="index"),
r.Rule("/foo", endpoint="foo"),
r.Rule("/bar/", endpoint="bar"),
r.Rule("/ws", endpoint="ws", websocket=True),
r.Rule("/", endpoint="indexws", websocket=True),
]
)
adapter = map.bind("example.org", "/")
assert adapter.match("/") == ("index", {})
assert adapter.match("/foo") == ("foo", {})
assert adapter.match("/bar/") == ("bar", {})
pytest.raises(r.RequestRedirect, lambda: adapter.match("/bar"))
pytest.raises(r.NotFound, lambda: adapter.match("/blub"))
adapter = map.bind("example.org", "/", url_scheme="ws")
assert adapter.match("/") == ("indexws", {})
adapter = map.bind("example.org", "/test")
with pytest.raises(r.RequestRedirect) as excinfo:
adapter.match("/bar")
assert excinfo.value.new_url == "http://example.org/test/bar/"
adapter = map.bind("example.org", "/")
with pytest.raises(r.RequestRedirect) as excinfo:
adapter.match("/bar")
assert excinfo.value.new_url == "http://example.org/bar/"
adapter = map.bind("example.org", "/")
with pytest.raises(r.RequestRedirect) as excinfo:
adapter.match("/bar", query_args={"aha": "muhaha"})
assert excinfo.value.new_url == "http://example.org/bar/?aha=muhaha"
adapter = map.bind("example.org", "/")
with pytest.raises(r.RequestRedirect) as excinfo:
adapter.match("/bar", query_args="aha=muhaha")
assert excinfo.value.new_url == "http://example.org/bar/?aha=muhaha"
adapter = map.bind_to_environ(create_environ("/bar?foo=bar", "http://example.org/"))
with pytest.raises(r.RequestRedirect) as excinfo:
adapter.match()
assert excinfo.value.new_url == "http://example.org/bar/?foo=bar"
adapter = map.bind("example.org", "/ws", url_scheme="wss")
assert adapter.match("/ws", websocket=True) == ("ws", {})
with pytest.raises(r.WebsocketMismatch):
adapter.match("/ws", websocket=False)
with pytest.raises(r.WebsocketMismatch):
adapter.match("/foo", websocket=True)
def test_merge_slashes_match():
url_map = r.Map(
[
r.Rule("/no/tail", endpoint="no_tail"),
r.Rule("/yes/tail/", endpoint="yes_tail"),
r.Rule("/with/<path:path>", endpoint="with_path"),
r.Rule("/no//merge", endpoint="no_merge", merge_slashes=False),
]
)
adapter = url_map.bind("localhost", "/")
with pytest.raises(r.RequestRedirect) as excinfo:
adapter.match("/no//tail")
assert excinfo.value.new_url.endswith("/no/tail")
with pytest.raises(r.RequestRedirect) as excinfo:
adapter.match("/yes//tail")
assert excinfo.value.new_url.endswith("/yes/tail/")
with pytest.raises(r.RequestRedirect) as excinfo:
adapter.match("/yes/tail//")
assert excinfo.value.new_url.endswith("/yes/tail/")
assert adapter.match("/no/tail")[0] == "no_tail"
assert adapter.match("/yes/tail/")[0] == "yes_tail"
_, rv = adapter.match("/with/http://example.com/")
assert rv["path"] == "http://example.com/"
_, rv = adapter.match("/with/x//y")
assert rv["path"] == "x//y"
assert adapter.match("/no//merge")[0] == "no_merge"
def test_merge_slashes_build():
url_map = r.Map(
[
r.Rule("/yes//merge", endpoint="yes_merge"),
r.Rule("/no//merge", endpoint="no_merge", merge_slashes=False),
]
)
adapter = url_map.bind("localhost", "/")
assert adapter.build("yes_merge") == "/yes/merge"
assert adapter.build("no_merge") == "/no//merge"
def test_strict_slashes_redirect():
map = r.Map(
[
r.Rule("/bar/", endpoint="get", methods=["GET"]),
r.Rule("/bar", endpoint="post", methods=["POST"]),
r.Rule("/foo/", endpoint="foo", methods=["POST"]),
]
)
adapter = map.bind("example.org", "/")
# Check if the actual routes works
assert adapter.match("/bar/", method="GET") == ("get", {})
assert adapter.match("/bar", method="POST") == ("post", {})
# Check if exceptions are correct
pytest.raises(r.RequestRedirect, adapter.match, "/bar", method="GET")
pytest.raises(r.MethodNotAllowed, adapter.match, "/bar/", method="POST")
with pytest.raises(r.RequestRedirect) as error_info:
adapter.match("/foo", method="POST")
assert error_info.value.code == 308
# Check differently defined order
map = r.Map(
[
r.Rule("/bar", endpoint="post", methods=["POST"]),
r.Rule("/bar/", endpoint="get", methods=["GET"]),
]
)
adapter = map.bind("example.org", "/")
# Check if the actual routes works
assert adapter.match("/bar/", method="GET") == ("get", {})
assert adapter.match("/bar", method="POST") == ("post", {})
# Check if exceptions are correct
pytest.raises(r.RequestRedirect, adapter.match, "/bar", method="GET")
pytest.raises(r.MethodNotAllowed, adapter.match, "/bar/", method="POST")
# Check what happens when only slash route is defined
map = r.Map([r.Rule("/bar/", endpoint="get", methods=["GET"])])
adapter = map.bind("example.org", "/")
# Check if the actual routes works
assert adapter.match("/bar/", method="GET") == ("get", {})
# Check if exceptions are correct
pytest.raises(r.RequestRedirect, adapter.match, "/bar", method="GET")
pytest.raises(r.MethodNotAllowed, adapter.match, "/bar/", method="POST")
pytest.raises(r.MethodNotAllowed, adapter.match, "/bar", method="POST")
def test_environ_defaults():
environ = create_environ("/foo")
strict_eq(environ["PATH_INFO"], "/foo")
m = r.Map([r.Rule("/foo", endpoint="foo"), r.Rule("/bar", endpoint="bar")])
a = m.bind_to_environ(environ)
strict_eq(a.match("/foo"), ("foo", {}))
strict_eq(a.match(), ("foo", {}))
strict_eq(a.match("/bar"), ("bar", {}))
pytest.raises(r.NotFound, a.match, "/bars")
def test_environ_nonascii_pathinfo():
environ = create_environ(u"/лошадь")
m = r.Map([r.Rule(u"/", endpoint="index"), r.Rule(u"/лошадь", endpoint="horse")])
a = m.bind_to_environ(environ)
strict_eq(a.match(u"/"), ("index", {}))
strict_eq(a.match(u"/лошадь"), ("horse", {}))
pytest.raises(r.NotFound, a.match, u"/барсук")
def test_basic_building():
map = r.Map(
[
r.Rule("/", endpoint="index"),
r.Rule("/foo", endpoint="foo"),
r.Rule("/bar/<baz>", endpoint="bar"),
r.Rule("/bar/<int:bazi>", endpoint="bari"),
r.Rule("/bar/<float:bazf>", endpoint="barf"),
r.Rule("/bar/<path:bazp>", endpoint="barp"),
r.Rule("/hehe", endpoint="blah", subdomain="blah"),
r.Rule("/ws", endpoint="ws", websocket=True),
]
)
adapter = map.bind("example.org", "/", subdomain="blah")
assert adapter.build("index", {}) == "http://example.org/"
assert adapter.build("foo", {}) == "http://example.org/foo"
assert adapter.build("bar", {"baz": "blub"}) == "http://example.org/bar/blub"
assert adapter.build("bari", {"bazi": 50}) == "http://example.org/bar/50"
assert adapter.build("barf", {"bazf": 0.815}) == "http://example.org/bar/0.815"
assert adapter.build("barp", {"bazp": "la/di"}) == "http://example.org/bar/la/di"
assert adapter.build("blah", {}) == "/hehe"
pytest.raises(r.BuildError, lambda: adapter.build("urks"))
adapter = map.bind("example.org", "/test", subdomain="blah")
assert adapter.build("index", {}) == "http://example.org/test/"
assert adapter.build("foo", {}) == "http://example.org/test/foo"
assert adapter.build("bar", {"baz": "blub"}) == "http://example.org/test/bar/blub"
assert adapter.build("bari", {"bazi": 50}) == "http://example.org/test/bar/50"
assert adapter.build("barf", {"bazf": 0.815}) == "http://example.org/test/bar/0.815"
assert (
adapter.build("barp", {"bazp": "la/di"}) == "http://example.org/test/bar/la/di"
)
assert adapter.build("blah", {}) == "/test/hehe"
adapter = map.bind("example.org")
assert adapter.build("foo", {}) == "/foo"
assert adapter.build("foo", {}, force_external=True) == "http://example.org/foo"
adapter = map.bind("example.org", url_scheme="")
assert adapter.build("foo", {}) == "/foo"
assert adapter.build("foo", {}, force_external=True) == "//example.org/foo"
adapter = map.bind("example.org", url_scheme="ws")
assert adapter.build("ws", {}) == "ws://example.org/ws"
assert adapter.build("foo", {}, force_external=True) == "http://example.org/foo"
assert adapter.build("foo", {}) == "/foo"
def test_long_build():
long_args = dict(("v%d" % x, x) for x in range(10000))
map = r.Map(
[
r.Rule(
"".join("/<%s>" % k for k in long_args.keys()),
endpoint="bleep",
build_only=True,
)
]
)
adapter = map.bind("localhost", "/")
url = adapter.build("bleep", long_args)
url += "/"
for v in long_args.values():
assert "/%d" % v in url
def test_defaults():
map = r.Map(
[
r.Rule("/foo/", defaults={"page": 1}, endpoint="foo"),
r.Rule("/foo/<int:page>", endpoint="foo"),
]
)
adapter = map.bind("example.org", "/")
assert adapter.match("/foo/") == ("foo", {"page": 1})
pytest.raises(r.RequestRedirect, lambda: adapter.match("/foo/1"))
assert adapter.match("/foo/2") == ("foo", {"page": 2})
assert adapter.build("foo", {}) == "/foo/"
assert adapter.build("foo", {"page": 1}) == "/foo/"
assert adapter.build("foo", {"page": 2}) == "/foo/2"
def test_negative():
map = r.Map(
[
r.Rule("/foos/<int(signed=True):page>", endpoint="foos"),
r.Rule("/bars/<float(signed=True):page>", endpoint="bars"),
r.Rule("/foo/<int:page>", endpoint="foo"),
r.Rule("/bar/<float:page>", endpoint="bar"),
]
)
adapter = map.bind("example.org", "/")
assert adapter.match("/foos/-2") == ("foos", {"page": -2})
assert adapter.match("/foos/-50") == ("foos", {"page": -50})
assert adapter.match("/bars/-2.0") == ("bars", {"page": -2.0})
assert adapter.match("/bars/-0.185") == ("bars", {"page": -0.185})
# Make sure signed values are rejected in unsigned mode
pytest.raises(r.NotFound, lambda: adapter.match("/foo/-2"))
pytest.raises(r.NotFound, lambda: adapter.match("/foo/-50"))
pytest.raises(r.NotFound, lambda: adapter.match("/bar/-0.185"))
pytest.raises(r.NotFound, lambda: adapter.match("/bar/-2.0"))
def test_greedy():
map = r.Map(
[
r.Rule("/foo", endpoint="foo"),
r.Rule("/<path:bar>", endpoint="bar"),
r.Rule("/<path:bar>/<path:blub>", endpoint="bar"),
]
)
adapter = map.bind("example.org", "/")
assert adapter.match("/foo") == ("foo", {})
assert adapter.match("/blub") == ("bar", {"bar": "blub"})
assert adapter.match("/he/he") == ("bar", {"bar": "he", "blub": "he"})
assert adapter.build("foo", {}) == "/foo"
assert adapter.build("bar", {"bar": "blub"}) == "/blub"
assert adapter.build("bar", {"bar": "blub", "blub": "bar"}) == "/blub/bar"
def test_path():
map = r.Map(
[
r.Rule("/", defaults={"name": "FrontPage"}, endpoint="page"),
r.Rule("/Special", endpoint="special"),
r.Rule("/<int:year>", endpoint="year"),
r.Rule("/<path:name>:foo", endpoint="foopage"),
r.Rule("/<path:name>:<path:name2>", endpoint="twopage"),
r.Rule("/<path:name>", endpoint="page"),
r.Rule("/<path:name>/edit", endpoint="editpage"),
r.Rule("/<path:name>/silly/<path:name2>", endpoint="sillypage"),
r.Rule("/<path:name>/silly/<path:name2>/edit", endpoint="editsillypage"),
r.Rule("/Talk:<path:name>", endpoint="talk"),
r.Rule("/User:<username>", endpoint="user"),
r.Rule("/User:<username>/<path:name>", endpoint="userpage"),
r.Rule(
"/User:<username>/comment/<int:id>-<int:replyId>",
endpoint="usercomment",
),
r.Rule("/Files/<path:file>", endpoint="files"),
r.Rule("/<admin>/<manage>/<things>", endpoint="admin"),
]
)
adapter = map.bind("example.org", "/")
assert adapter.match("/") == ("page", {"name": "FrontPage"})
pytest.raises(r.RequestRedirect, lambda: adapter.match("/FrontPage"))
assert adapter.match("/Special") == ("special", {})
assert adapter.match("/2007") == ("year", {"year": 2007})
assert adapter.match("/Some:foo") == ("foopage", {"name": "Some"})
assert adapter.match("/Some:bar") == ("twopage", {"name": "Some", "name2": "bar"})
assert adapter.match("/Some/Page") == ("page", {"name": "Some/Page"})
assert adapter.match("/Some/Page/edit") == ("editpage", {"name": "Some/Page"})
assert adapter.match("/Foo/silly/bar") == (
"sillypage",
{"name": "Foo", "name2": "bar"},
)
assert adapter.match("/Foo/silly/bar/edit") == (
"editsillypage",
{"name": "Foo", "name2": "bar"},
)
assert adapter.match("/Talk:Foo/Bar") == ("talk", {"name": "Foo/Bar"})
assert adapter.match("/User:thomas") == ("user", {"username": "thomas"})
assert adapter.match("/User:thomas/projects/werkzeug") == (
"userpage",
{"username": "thomas", "name": "projects/werkzeug"},
)
assert adapter.match("/User:thomas/comment/123-456") == (
"usercomment",
{"username": "thomas", "id": 123, "replyId": 456},
)
assert adapter.match("/Files/downloads/werkzeug/0.2.zip") == (
"files",
{"file": "downloads/werkzeug/0.2.zip"},
)
assert adapter.match("/Jerry/eats/cheese") == (
"admin",
{"admin": "Jerry", "manage": "eats", "things": "cheese"},
)
def test_dispatch():
env = create_environ("/")
map = r.Map([r.Rule("/", endpoint="root"), r.Rule("/foo/", endpoint="foo")])
adapter = map.bind_to_environ(env)
raise_this = None
def view_func(endpoint, values):
if raise_this is not None:
raise raise_this
return Response(repr((endpoint, values)))
def dispatch(path, quiet=False):
return Response.force_type(
adapter.dispatch(view_func, path, catch_http_exceptions=quiet), env
)
assert dispatch("/").data == b"('root', {})"
assert dispatch("/foo").status_code == 308
raise_this = r.NotFound()
pytest.raises(r.NotFound, lambda: dispatch("/bar"))
assert dispatch("/bar", True).status_code == 404
def test_http_host_before_server_name():
env = {
"HTTP_HOST": "wiki.example.com",
"SERVER_NAME": "web0.example.com",
"SERVER_PORT": "80",
"SCRIPT_NAME": "",
"PATH_INFO": "",
"REQUEST_METHOD": "GET",
"wsgi.url_scheme": "http",
}
map = r.Map([r.Rule("/", endpoint="index", subdomain="wiki")])
adapter = map.bind_to_environ(env, server_name="example.com")
assert adapter.match("/") == ("index", {})
assert adapter.build("index", force_external=True) == "http://wiki.example.com/"
assert adapter.build("index") == "/"
env["HTTP_HOST"] = "admin.example.com"
adapter = map.bind_to_environ(env, server_name="example.com")
assert adapter.build("index") == "http://wiki.example.com/"
def test_invalid_subdomain_warning():
env = create_environ("/foo")
env["SERVER_NAME"] = env["HTTP_HOST"] = "foo.example.com"
m = r.Map([r.Rule("/foo", endpoint="foo")])
with pytest.warns(UserWarning) as record:
a = m.bind_to_environ(env, server_name="bar.example.com")
assert a.subdomain == "<invalid>"
assert len(record) == 1
@pytest.mark.parametrize(
("base", "name"),
(("http://localhost", "localhost:80"), ("https://localhost", "localhost:443")),
)
def test_server_name_match_default_port(base, name):
environ = create_environ("/foo", base_url=base)
map = r.Map([r.Rule("/foo", endpoint="foo")])
adapter = map.bind_to_environ(environ, server_name=name)
assert adapter.match() == ("foo", {})
def test_adapter_url_parameter_sorting():
map = r.Map(
[r.Rule("/", endpoint="index")], sort_parameters=True, sort_key=lambda x: x[1]
)
adapter = map.bind("localhost", "/")
assert (
adapter.build("index", {"x": 20, "y": 10, "z": 30}, force_external=True)
== "http://localhost/?y=10&x=20&z=30"
)
def test_request_direct_charset_bug():
map = r.Map([r.Rule(u"/öäü/")])
adapter = map.bind("localhost", "/")
with pytest.raises(r.RequestRedirect) as excinfo:
adapter.match(u"/öäü")
assert excinfo.value.new_url == "http://localhost/%C3%B6%C3%A4%C3%BC/"
def test_request_redirect_default():
map = r.Map([r.Rule(u"/foo", defaults={"bar": 42}), r.Rule(u"/foo/<int:bar>")])
adapter = map.bind("localhost", "/")
with pytest.raises(r.RequestRedirect) as excinfo:
adapter.match(u"/foo/42")
assert excinfo.value.new_url == "http://localhost/foo"
def test_request_redirect_default_subdomain():
map = r.Map(
[
r.Rule(u"/foo", defaults={"bar": 42}, subdomain="test"),
r.Rule(u"/foo/<int:bar>", subdomain="other"),
]
)
adapter = map.bind("localhost", "/", subdomain="other")
with pytest.raises(r.RequestRedirect) as excinfo:
adapter.match(u"/foo/42")
assert excinfo.value.new_url == "http://test.localhost/foo"
def test_adapter_match_return_rule():
rule = r.Rule("/foo/", endpoint="foo")
map = r.Map([rule])
adapter = map.bind("localhost", "/")
assert adapter.match("/foo/", return_rule=True) == (rule, {})
def test_server_name_interpolation():
server_name = "example.invalid"
map = r.Map(
[r.Rule("/", endpoint="index"), r.Rule("/", endpoint="alt", subdomain="alt")]
)
env = create_environ("/", "http://%s/" % server_name)
adapter = map.bind_to_environ(env, server_name=server_name)
assert adapter.match() == ("index", {})
env = create_environ("/", "http://alt.%s/" % server_name)
adapter = map.bind_to_environ(env, server_name=server_name)
assert adapter.match() == ("alt", {})
env = create_environ("/", "http://%s/" % server_name)
with pytest.warns(UserWarning):
adapter = map.bind_to_environ(env, server_name="foo")
assert adapter.subdomain == "<invalid>"
def test_rule_emptying():
rule = r.Rule("/foo", {"meh": "muh"}, "x", ["POST"], False, "x", True, None)
rule2 = rule.empty()
assert rule.__dict__ == rule2.__dict__
rule.methods.add("GET")
assert rule.__dict__ != rule2.__dict__
rule.methods.discard("GET")
rule.defaults["meh"] = "aha"
assert rule.__dict__ != rule2.__dict__
def test_rule_unhashable():
rule = r.Rule("/foo", {"meh": "muh"}, "x", ["POST"], False, "x", True, None)
pytest.raises(TypeError, hash, rule)
def test_rule_templates():
testcase = r.RuleTemplate(
[
r.Submount(
"/test/$app",
[
r.Rule("/foo/", endpoint="handle_foo"),
r.Rule("/bar/", endpoint="handle_bar"),
r.Rule("/baz/", endpoint="handle_baz"),
],
),
r.EndpointPrefix(
"${app}",
[
r.Rule("/${app}-blah", endpoint="bar"),
r.Rule("/${app}-meh", endpoint="baz"),
],
),
r.Subdomain(
"$app",
[r.Rule("/blah", endpoint="x_bar"), r.Rule("/meh", endpoint="x_baz")],
),
]
)
url_map = r.Map(
[
testcase(app="test1"),
testcase(app="test2"),
testcase(app="test3"),
testcase(app="test4"),
]
)
out = sorted([(x.rule, x.subdomain, x.endpoint) for x in url_map.iter_rules()])
assert out == [
("/blah", "test1", "x_bar"),
("/blah", "test2", "x_bar"),
("/blah", "test3", "x_bar"),
("/blah", "test4", "x_bar"),
("/meh", "test1", "x_baz"),
("/meh", "test2", "x_baz"),
("/meh", "test3", "x_baz"),
("/meh", "test4", "x_baz"),
("/test/test1/bar/", "", "handle_bar"),
("/test/test1/baz/", "", "handle_baz"),
("/test/test1/foo/", "", "handle_foo"),
("/test/test2/bar/", "", "handle_bar"),
("/test/test2/baz/", "", "handle_baz"),
("/test/test2/foo/", "", "handle_foo"),
("/test/test3/bar/", "", "handle_bar"),
("/test/test3/baz/", "", "handle_baz"),
("/test/test3/foo/", "", "handle_foo"),
("/test/test4/bar/", "", "handle_bar"),
("/test/test4/baz/", "", "handle_baz"),
("/test/test4/foo/", "", "handle_foo"),
("/test1-blah", "", "test1bar"),
("/test1-meh", "", "test1baz"),
("/test2-blah", "", "test2bar"),
("/test2-meh", "", "test2baz"),
("/test3-blah", "", "test3bar"),
("/test3-meh", "", "test3baz"),
("/test4-blah", "", "test4bar"),
("/test4-meh", "", "test4baz"),
]
def test_non_string_parts():
m = r.Map([r.Rule("/<foo>", endpoint="foo")])
a = m.bind("example.com")
assert a.build("foo", {"foo": 42}) == "/42"
def test_complex_routing_rules():
m = r.Map(
[
r.Rule("/", endpoint="index"),
r.Rule("/<int:blub>", endpoint="an_int"),
r.Rule("/<blub>", endpoint="a_string"),
r.Rule("/foo/", endpoint="nested"),
r.Rule("/foobar/", endpoint="nestedbar"),
r.Rule("/foo/<path:testing>/", endpoint="nested_show"),
r.Rule("/foo/<path:testing>/edit", endpoint="nested_edit"),
r.Rule("/users/", endpoint="users", defaults={"page": 1}),
r.Rule("/users/page/<int:page>", endpoint="users"),
r.Rule("/foox", endpoint="foox"),
r.Rule("/<path:bar>/<path:blub>", endpoint="barx_path_path"),
]
)
a = m.bind("example.com")
assert a.match("/") == ("index", {})
assert a.match("/42") == ("an_int", {"blub": 42})
assert a.match("/blub") == ("a_string", {"blub": "blub"})
assert a.match("/foo/") == ("nested", {})
assert a.match("/foobar/") == ("nestedbar", {})
assert a.match("/foo/1/2/3/") == ("nested_show", {"testing": "1/2/3"})
assert a.match("/foo/1/2/3/edit") == ("nested_edit", {"testing": "1/2/3"})
assert a.match("/users/") == ("users", {"page": 1})
assert a.match("/users/page/2") == ("users", {"page": 2})
assert a.match("/foox") == ("foox", {})
assert a.match("/1/2/3") == ("barx_path_path", {"bar": "1", "blub": "2/3"})
assert a.build("index") == "/"
assert a.build("an_int", {"blub": 42}) == "/42"
assert a.build("a_string", {"blub": "test"}) == "/test"
assert a.build("nested") == "/foo/"
assert a.build("nestedbar") == "/foobar/"
assert a.build("nested_show", {"testing": "1/2/3"}) == "/foo/1/2/3/"
assert a.build("nested_edit", {"testing": "1/2/3"}) == "/foo/1/2/3/edit"
assert a.build("users", {"page": 1}) == "/users/"
assert a.build("users", {"page": 2}) == "/users/page/2"
assert a.build("foox") == "/foox"
assert a.build("barx_path_path", {"bar": "1", "blub": "2/3"}) == "/1/2/3"
def test_default_converters():
class MyMap(r.Map):
default_converters = r.Map.default_converters.copy()
default_converters["foo"] = r.UnicodeConverter
assert isinstance(r.Map.default_converters, ImmutableDict)
m = MyMap(
[
r.Rule("/a/<foo:a>", endpoint="a"),
r.Rule("/b/<foo:b>", endpoint="b"),
r.Rule("/c/<c>", endpoint="c"),
],
converters={"bar": r.UnicodeConverter},
)
a = m.bind("example.org", "/")
assert a.match("/a/1") == ("a", {"a": "1"})
assert a.match("/b/2") == ("b", {"b": "2"})
assert a.match("/c/3") == ("c", {"c": "3"})
assert "foo" not in r.Map.default_converters
def test_uuid_converter():
m = r.Map([r.Rule("/a/<uuid:a_uuid>", endpoint="a")])
a = m.bind("example.org", "/")
route, kwargs = a.match("/a/a8098c1a-f86e-11da-bd1a-00112444be1e")
assert type(kwargs["a_uuid"]) == uuid.UUID
def test_converter_with_tuples():
"""
Regression test for https://github.com/pallets/werkzeug/issues/709
"""
class TwoValueConverter(r.BaseConverter):
def __init__(self, *args, **kwargs):
super(TwoValueConverter, self).__init__(*args, **kwargs)
self.regex = r"(\w\w+)/(\w\w+)"
def to_python(self, two_values):
one, two = two_values.split("/")
return one, two
def to_url(self, values):
return "%s/%s" % (values[0], values[1])
map = r.Map(
[r.Rule("/<two:foo>/", endpoint="handler")],
converters={"two": TwoValueConverter},
)
a = map.bind("example.org", "/")
route, kwargs = a.match("/qwert/yuiop/")
assert kwargs["foo"] == ("qwert", "yuiop")
def test_anyconverter():
m = r.Map(
[
r.Rule("/<any(a1, a2):a>", endpoint="no_dot"),
r.Rule("/<any(a.1, a.2):a>", endpoint="yes_dot"),
]
)
a = m.bind("example.org", "/")
assert a.match("/a1") == ("no_dot", {"a": "a1"})
assert a.match("/a2") == ("no_dot", {"a": "a2"})
assert a.match("/a.1") == ("yes_dot", {"a": "a.1"})
assert a.match("/a.2") == ("yes_dot", {"a": "a.2"})
def test_build_append_unknown():
map = r.Map([r.Rule("/bar/<float:bazf>", endpoint="barf")])
adapter = map.bind("example.org", "/", subdomain="blah")
assert (
adapter.build("barf", {"bazf": 0.815, "bif": 1.0})
== "http://example.org/bar/0.815?bif=1.0"
)
assert (
adapter.build("barf", {"bazf": 0.815, "bif": 1.0}, append_unknown=False)
== "http://example.org/bar/0.815"
)
def test_build_append_multiple():
map = r.Map([r.Rule("/bar/<float:foo>", endpoint="endp")])
adapter = map.bind("example.org", "/", subdomain="subd")
params = {"foo": 0.815, "x": [1.0, 3.0], "y": 2.0}
a, b = adapter.build("endp", params).split("?")
assert a == "http://example.org/bar/0.815"
assert set(b.split("&")) == set("y=2.0&x=1.0&x=3.0".split("&"))
def test_build_append_multidict():
map = r.Map([r.Rule("/bar/<float:foo>", endpoint="endp")])
adapter = map.bind("example.org", "/", subdomain="subd")
params = MultiDict((("foo", 0.815), ("x", 1.0), ("x", 3.0), ("y", 2.0)))
a, b = adapter.build("endp", params).split("?")
assert a == "http://example.org/bar/0.815"
assert set(b.split("&")) == set("y=2.0&x=1.0&x=3.0".split("&"))
def test_build_drop_none():
map = r.Map([r.Rule("/flob/<flub>", endpoint="endp")])
adapter = map.bind("", "/")
params = {"flub": None, "flop": None}
with pytest.raises(r.BuildError):
x = adapter.build("endp", params)
assert not x
params = {"flub": "x", "flop": None}
url = adapter.build("endp", params)
assert "flop" not in url
def test_method_fallback():
map = r.Map(
[
r.Rule("/", endpoint="index", methods=["GET"]),
r.Rule("/<name>", endpoint="hello_name", methods=["GET"]),
r.Rule("/select", endpoint="hello_select", methods=["POST"]),
r.Rule("/search_get", endpoint="search", methods=["GET"]),
r.Rule("/search_post", endpoint="search", methods=["POST"]),
]
)
adapter = map.bind("example.com")
assert adapter.build("index") == "/"
assert adapter.build("index", method="GET") == "/"
assert adapter.build("hello_name", {"name": "foo"}) == "/foo"
assert adapter.build("hello_select") == "/select"
assert adapter.build("hello_select", method="POST") == "/select"
assert adapter.build("search") == "/search_get"
assert adapter.build("search", method="GET") == "/search_get"
assert adapter.build("search", method="POST") == "/search_post"
def test_implicit_head():
url_map = r.Map(
[
r.Rule("/get", methods=["GET"], endpoint="a"),
r.Rule("/post", methods=["POST"], endpoint="b"),
]
)
adapter = url_map.bind("example.org")
assert adapter.match("/get", method="HEAD") == ("a", {})
pytest.raises(r.MethodNotAllowed, adapter.match, "/post", method="HEAD")
def test_pass_str_as_router_methods():
with pytest.raises(TypeError):
r.Rule("/get", methods="GET")
def test_protocol_joining_bug():
m = r.Map([r.Rule("/<foo>", endpoint="x")])
a = m.bind("example.org")
assert a.build("x", {"foo": "x:y"}) == "/x:y"
assert a.build("x", {"foo": "x:y"}, force_external=True) == "http://example.org/x:y"
def test_allowed_methods_querying():
m = r.Map(
[r.Rule("/<foo>", methods=["GET", "HEAD"]), r.Rule("/foo", methods=["POST"])]
)
a = m.bind("example.org")
assert sorted(a.allowed_methods("/foo")) == ["GET", "HEAD", "POST"]
def test_external_building_with_port():
map = r.Map([r.Rule("/", endpoint="index")])
adapter = map.bind("example.org:5000", "/")
built_url = adapter.build("index", {}, force_external=True)
assert built_url == "http://example.org:5000/", built_url
def test_external_building_with_port_bind_to_environ():
map = r.Map([r.Rule("/", endpoint="index")])
adapter = map.bind_to_environ(
create_environ("/", "http://example.org:5000/"), server_name="example.org:5000"
)
built_url = adapter.build("index", {}, force_external=True)
assert built_url == "http://example.org:5000/", built_url
def test_external_building_with_port_bind_to_environ_wrong_servername():
map = r.Map([r.Rule("/", endpoint="index")])
environ = create_environ("/", "http://example.org:5000/")
with pytest.warns(UserWarning):
adapter = map.bind_to_environ(environ, server_name="example.org")
assert adapter.subdomain == "<invalid>"
def test_converter_parser():
args, kwargs = r.parse_converter_args(u"test, a=1, b=3.0")
assert args == ("test",)
assert kwargs == {"a": 1, "b": 3.0}
args, kwargs = r.parse_converter_args("")
assert not args and not kwargs
args, kwargs = r.parse_converter_args("a, b, c,")
assert args == ("a", "b", "c")
assert not kwargs
args, kwargs = r.parse_converter_args("True, False, None")
assert args == (True, False, None)
args, kwargs = r.parse_converter_args('"foo", u"bar"')
assert args == ("foo", "bar")
def test_alias_redirects():
m = r.Map(
[
r.Rule("/", endpoint="index"),
r.Rule("/index.html", endpoint="index", alias=True),
r.Rule("/users/", defaults={"page": 1}, endpoint="users"),
r.Rule(
"/users/index.html", defaults={"page": 1}, alias=True, endpoint="users"
),
r.Rule("/users/page/<int:page>", endpoint="users"),
r.Rule("/users/page-<int:page>.html", alias=True, endpoint="users"),
]
)
a = m.bind("example.com")
def ensure_redirect(path, new_url, args=None):
with pytest.raises(r.RequestRedirect) as excinfo:
a.match(path, query_args=args)
assert excinfo.value.new_url == "http://example.com" + new_url
ensure_redirect("/index.html", "/")
ensure_redirect("/users/index.html", "/users/")
ensure_redirect("/users/page-2.html", "/users/page/2")
ensure_redirect("/users/page-1.html", "/users/")
ensure_redirect("/users/page-1.html", "/users/?foo=bar", {"foo": "bar"})
assert a.build("index") == "/"
assert a.build("users", {"page": 1}) == "/users/"
assert a.build("users", {"page": 2}) == "/users/page/2"
@pytest.mark.parametrize("prefix", ("", "/aaa"))
def test_double_defaults(prefix):
m = r.Map(
[
r.Rule(prefix + "/", defaults={"foo": 1, "bar": False}, endpoint="x"),
r.Rule(prefix + "/<int:foo>", defaults={"bar": False}, endpoint="x"),
r.Rule(prefix + "/bar/", defaults={"foo": 1, "bar": True}, endpoint="x"),
r.Rule(prefix + "/bar/<int:foo>", defaults={"bar": True}, endpoint="x"),
]
)
a = m.bind("example.com")
assert a.match(prefix + "/") == ("x", {"foo": 1, "bar": False})
assert a.match(prefix + "/2") == ("x", {"foo": 2, "bar": False})
assert a.match(prefix + "/bar/") == ("x", {"foo": 1, "bar": True})
assert a.match(prefix + "/bar/2") == ("x", {"foo": 2, "bar": True})
assert a.build("x", {"foo": 1, "bar": False}) == prefix + "/"
assert a.build("x", {"foo": 2, "bar": False}) == prefix + "/2"
assert a.build("x", {"bar": False}) == prefix + "/"
assert a.build("x", {"foo": 1, "bar": True}) == prefix + "/bar/"
assert a.build("x", {"foo": 2, "bar": True}) == prefix + "/bar/2"
assert a.build("x", {"bar": True}) == prefix + "/bar/"
def test_building_bytes():
m = r.Map(
[
r.Rule("/<a>", endpoint="a"),
r.Rule("/<b>", defaults={"b": b"\x01\x02\x03"}, endpoint="b"),
]
)
a = m.bind("example.org", "/")
assert a.build("a", {"a": b"\x01\x02\x03"}) == "/%01%02%03"
assert a.build("b") == "/%01%02%03"
def test_host_matching():
m = r.Map(
[
r.Rule("/", endpoint="index", host="www.<domain>"),
r.Rule("/", endpoint="files", host="files.<domain>"),
r.Rule("/foo/", defaults={"page": 1}, host="www.<domain>", endpoint="x"),
r.Rule("/<int:page>", host="files.<domain>", endpoint="x"),
],
host_matching=True,
)
a = m.bind("www.example.com")
assert a.match("/") == ("index", {"domain": "example.com"})
assert a.match("/foo/") == ("x", {"domain": "example.com", "page": 1})
with pytest.raises(r.RequestRedirect) as excinfo:
a.match("/foo")
assert excinfo.value.new_url == "http://www.example.com/foo/"
a = m.bind("files.example.com")
assert a.match("/") == ("files", {"domain": "example.com"})
assert a.match("/2") == ("x", {"domain": "example.com", "page": 2})
with pytest.raises(r.RequestRedirect) as excinfo:
a.match("/1")
assert excinfo.value.new_url == "http://www.example.com/foo/"
def test_host_matching_building():
m = r.Map(
[
r.Rule("/", endpoint="index", host="www.domain.com"),
r.Rule("/", endpoint="foo", host="my.domain.com"),
],
host_matching=True,
)
www = m.bind("www.domain.com")
assert www.match("/") == ("index", {})
assert www.build("index") == "/"
assert www.build("foo") == "http://my.domain.com/"
my = m.bind("my.domain.com")
assert my.match("/") == ("foo", {})
assert my.build("foo") == "/"
assert my.build("index") == "http://www.domain.com/"
def test_server_name_casing():
m = r.Map([r.Rule("/", endpoint="index", subdomain="foo")])
env = create_environ()
env["SERVER_NAME"] = env["HTTP_HOST"] = "FOO.EXAMPLE.COM"
a = m.bind_to_environ(env, server_name="example.com")
assert a.match("/") == ("index", {})
env = create_environ()
env["SERVER_NAME"] = "127.0.0.1"
env["SERVER_PORT"] = "5000"
del env["HTTP_HOST"]
with pytest.warns(UserWarning):
a = m.bind_to_environ(env, server_name="example.com")
with pytest.raises(r.NotFound):
a.match()
def test_redirect_request_exception_code():
exc = r.RequestRedirect("http://www.google.com/")
exc.code = 307
env = create_environ()
strict_eq(exc.get_response(env).status_code, exc.code)
def test_redirect_path_quoting():
url_map = r.Map(
[
r.Rule("/<category>", defaults={"page": 1}, endpoint="category"),
r.Rule("/<category>/page/<int:page>", endpoint="category"),
]
)
adapter = url_map.bind("example.com")
with pytest.raises(r.RequestRedirect) as excinfo:
adapter.match("/foo bar/page/1")
response = excinfo.value.get_response({})
strict_eq(response.headers["location"], u"http://example.com/foo%20bar")
def test_unicode_rules():
m = r.Map(
[r.Rule(u"/войти/", endpoint="enter"), r.Rule(u"/foo+bar/", endpoint="foobar")]
)
a = m.bind(u"☃.example.com")
with pytest.raises(r.RequestRedirect) as excinfo:
a.match(u"/войти")
strict_eq(
excinfo.value.new_url,
"http://xn--n3h.example.com/%D0%B2%D0%BE%D0%B9%D1%82%D0%B8/",
)
endpoint, values = a.match(u"/войти/")
strict_eq(endpoint, "enter")
strict_eq(values, {})
with pytest.raises(r.RequestRedirect) as excinfo:
a.match(u"/foo+bar")
strict_eq(excinfo.value.new_url, "http://xn--n3h.example.com/foo+bar/")
endpoint, values = a.match(u"/foo+bar/")
strict_eq(endpoint, "foobar")
strict_eq(values, {})
url = a.build("enter", {}, force_external=True)
strict_eq(url, "http://xn--n3h.example.com/%D0%B2%D0%BE%D0%B9%D1%82%D0%B8/")
url = a.build("foobar", {}, force_external=True)
strict_eq(url, "http://xn--n3h.example.com/foo+bar/")
def test_empty_path_info():
m = r.Map([r.Rule("/", endpoint="index")])
b = m.bind("example.com", script_name="/approot")
with pytest.raises(r.RequestRedirect) as excinfo:
b.match("")
assert excinfo.value.new_url == "http://example.com/approot/"
a = m.bind("example.com")
with pytest.raises(r.RequestRedirect) as excinfo:
a.match("")
assert excinfo.value.new_url == "http://example.com/"
def test_both_bind_and_match_path_info_are_none():
m = r.Map([r.Rule(u"/", endpoint="index")])
ma = m.bind("example.org")
strict_eq(ma.match(), ("index", {}))
def test_map_repr():
m = r.Map([r.Rule(u"/wat", endpoint="enter"), r.Rule(u"/woop", endpoint="foobar")])
rv = repr(m)
strict_eq(rv, "Map([<Rule '/woop' -> foobar>, <Rule '/wat' -> enter>])")
def test_empty_subclass_rules_with_custom_kwargs():
class CustomRule(r.Rule):
def __init__(self, string=None, custom=None, *args, **kwargs):
self.custom = custom
super(CustomRule, self).__init__(string, *args, **kwargs)
rule1 = CustomRule(u"/foo", endpoint="bar")
try:
rule2 = rule1.empty()
assert rule1.rule == rule2.rule
except TypeError as e: # raised without fix in PR #675
raise e
def test_finding_closest_match_by_endpoint():
m = r.Map(
[
r.Rule(u"/foo/", endpoint="users.here"),
r.Rule(u"/wat/", endpoint="admin.users"),
r.Rule(u"/woop", endpoint="foo.users"),
]
)
adapter = m.bind("example.com")
assert (
r.BuildError("admin.user", None, None, adapter).suggested.endpoint
== "admin.users"
)
def test_finding_closest_match_by_values():
rule_id = r.Rule(u"/user/id/<id>/", endpoint="users")
rule_slug = r.Rule(u"/user/<slug>/", endpoint="users")
rule_random = r.Rule(u"/user/emails/<email>/", endpoint="users")
m = r.Map([rule_id, rule_slug, rule_random])
adapter = m.bind("example.com")
assert r.BuildError("x", {"slug": ""}, None, adapter).suggested == rule_slug
def test_finding_closest_match_by_method():
post = r.Rule(u"/post/", endpoint="foobar", methods=["POST"])
get = r.Rule(u"/get/", endpoint="foobar", methods=["GET"])
put = r.Rule(u"/put/", endpoint="foobar", methods=["PUT"])
m = r.Map([post, get, put])
adapter = m.bind("example.com")
assert r.BuildError("invalid", {}, "POST", adapter).suggested == post
assert r.BuildError("invalid", {}, "GET", adapter).suggested == get
assert r.BuildError("invalid", {}, "PUT", adapter).suggested == put
def test_finding_closest_match_when_none_exist():
m = r.Map([])
assert not r.BuildError("invalid", {}, None, m.bind("test.com")).suggested
def test_error_message_without_suggested_rule():
m = r.Map([r.Rule(u"/foo/", endpoint="world", methods=["GET"])])
adapter = m.bind("example.com")
with pytest.raises(r.BuildError) as excinfo:
adapter.build("urks")
assert str(excinfo.value).startswith("Could not build url for endpoint 'urks'.")
with pytest.raises(r.BuildError) as excinfo:
adapter.build("world", method="POST")
assert str(excinfo.value).startswith(
"Could not build url for endpoint 'world' ('POST')."
)
with pytest.raises(r.BuildError) as excinfo:
adapter.build("urks", values={"user_id": 5})
assert str(excinfo.value).startswith(
"Could not build url for endpoint 'urks' with values ['user_id']."
)
def test_error_message_suggestion():
m = r.Map([r.Rule(u"/foo/<id>/", endpoint="world", methods=["GET"])])
adapter = m.bind("example.com")
with pytest.raises(r.BuildError) as excinfo:
adapter.build("helloworld")
assert "Did you mean 'world' instead?" in str(excinfo.value)
with pytest.raises(r.BuildError) as excinfo:
adapter.build("world")
assert "Did you forget to specify values ['id']?" in str(excinfo.value)
assert "Did you mean to use methods" not in str(excinfo.value)
with pytest.raises(r.BuildError) as excinfo:
adapter.build("world", {"id": 2}, method="POST")
assert "Did you mean to use methods ['GET', 'HEAD']?" in str(excinfo.value)
def test_no_memory_leak_from_Rule_builder():
"""See #1520"""
# generate a bunch of objects that *should* get collected
for _ in range(100):
r.Map([r.Rule("/a/<string:b>")])
# ensure that the garbage collection has had a chance to collect cyclic
# objects
for _ in range(5):
gc.collect()
# assert they got collected!
count = sum(1 for obj in gc.get_objects() if isinstance(obj, r.Rule))
assert count == 0
def test_build_url_with_arg_self():
map = r.Map([r.Rule("/foo/<string:self>", endpoint="foo")])
adapter = map.bind("example.org", "/", subdomain="blah")
ret = adapter.build("foo", {"self": "bar"})
assert ret == "http://example.org/foo/bar"
def test_build_url_with_arg_keyword():
map = r.Map([r.Rule("/foo/<string:class>", endpoint="foo")])
adapter = map.bind("example.org", "/", subdomain="blah")
ret = adapter.build("foo", {"class": "bar"})
assert ret == "http://example.org/foo/bar"
def test_build_url_same_endpoint_multiple_hosts():
m = r.Map(
[
r.Rule("/", endpoint="index", host="alpha.example.com"),
r.Rule("/", endpoint="index", host="beta.example.com"),
r.Rule("/", endpoint="gamma", host="gamma.example.com"),
],
host_matching=True,
)
alpha = m.bind("alpha.example.com")
assert alpha.build("index") == "/"
assert alpha.build("gamma") == "http://gamma.example.com/"
alpha_case = m.bind("AlPhA.ExAmPlE.CoM")
assert alpha_case.build("index") == "/"
assert alpha_case.build("gamma") == "http://gamma.example.com/"
beta = m.bind("beta.example.com")
assert beta.build("index") == "/"
beta_case = m.bind("BeTa.ExAmPlE.CoM")
assert beta_case.build("index") == "/"
def test_rule_websocket_methods():
with pytest.raises(ValueError):
r.Rule("/ws", endpoint="ws", websocket=True, methods=["post"])
with pytest.raises(ValueError):
r.Rule(
"/ws",
endpoint="ws",
websocket=True,
methods=["get", "head", "options", "post"],
)
r.Rule("/ws", endpoint="ws", websocket=True, methods=["get", "head", "options"])
|