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
|
#!/usr/bin/env python3
'''
test_dugong.py - Unit tests for dugong.py - run with py.test
Copyright © 2014 Nikolaus Rath <Nikolaus.org>
This module may be distributed under the terms of the Python Software Foundation
License Version 2. The complete license text may be retrieved from
http://hg.python.org/cpython/file/65f2c92ed079/LICENSE.
'''
if __name__ == '__main__':
import pytest
import sys
# For profiling:
#import cProfile
#cProfile.run('pytest.main([%r] + sys.argv[1:])' % __file__,
# 'cProfile.dat')
#sys.exit()
sys.exit(pytest.main([__file__] + sys.argv[1:]))
from dugong import (HTTPConnection, BodyFollowing, CaseInsensitiveDict, _join,
ConnectionClosed)
import dugong
from http.server import BaseHTTPRequestHandler
from io import TextIOWrapper
from base64 import b64encode
import http.client
import itertools
import pytest
import time
import ssl
import re
import os
import html
import hashlib
import threading
import socketserver
from pytest import raises as assert_raises
# We want to test with a real certificate
SSL_TEST_HOST = 'www.google.com'
TEST_DIR = os.path.dirname(__file__)
class HTTPServer(socketserver.TCPServer):
# Extended to add SSL support
def get_request(self):
(sock, addr) = super().get_request()
if self.ssl_context:
sock = self.ssl_context.wrap_socket(sock, server_side=True)
return (sock, addr)
class HTTPServerThread(threading.Thread):
def __init__(self, use_ssl=False):
super().__init__()
self.host = 'localhost'
self.httpd = HTTPServer((self.host, 0), MockRequestHandler)
self.port = self.httpd.socket.getsockname()[1]
self.use_ssl = use_ssl
if use_ssl:
ssl_context = ssl.SSLContext(ssl.PROTOCOL_SSLv23)
ssl_context.options |= ssl.OP_NO_SSLv2
ssl_context.verify_mode = ssl.CERT_NONE
ssl_context.load_cert_chain(os.path.join(TEST_DIR, 'server.crt'),
os.path.join(TEST_DIR, 'server.key'))
self.httpd.ssl_context = ssl_context
else:
self.httpd.ssl_context = None
def run(self):
self.httpd.serve_forever()
def shutdown(self):
self.httpd.shutdown()
self.httpd.server_close()
def pytest_generate_tests(metafunc):
if not 'http_server' in metafunc.fixturenames:
return
if hasattr(metafunc, 'definition'):
if metafunc.definition.get_closest_marker('no_ssl'):
params = ('plain',)
else:
params = ('plain', 'ssl')
else:
# pytest < 3.6
if getattr(metafunc.function, 'no_ssl', False):
params = ('plain',)
else:
params = ('plain', 'ssl')
metafunc.parametrize("http_server", params,
indirect=True, scope='module')
@pytest.fixture()
def http_server(request):
httpd = HTTPServerThread(use_ssl=(request.param == 'ssl'))
httpd.start()
request.addfinalizer(httpd.shutdown)
return httpd
@pytest.fixture()
def conn(request, http_server):
if http_server.use_ssl:
ssl_context = ssl.SSLContext(ssl.PROTOCOL_SSLv23)
ssl_context.options |= ssl.OP_NO_SSLv2
ssl_context.verify_mode = ssl.CERT_REQUIRED
ssl_context.load_verify_locations(cafile=os.path.join(TEST_DIR, 'ca.crt'))
else:
ssl_context = None
conn = HTTPConnection(http_server.host, port=http_server.port,
ssl_context=ssl_context)
request.addfinalizer(conn.disconnect)
return conn
@pytest.fixture(scope='module')
def random_fh(request):
fh = open('/dev/urandom', 'rb')
request.addfinalizer(fh.close)
return fh
def check_http_connection():
'''Skip test if we can't connect to ssl test server'''
ssl_context = ssl.SSLContext(ssl.PROTOCOL_SSLv23)
ssl_context.options |= ssl.OP_NO_SSLv2
ssl_context.verify_mode = ssl.CERT_REQUIRED
ssl_context.set_default_verify_paths()
try:
conn = http.client.HTTPSConnection(SSL_TEST_HOST, context=ssl_context)
conn.request('GET', '/')
resp = conn.getresponse()
assert resp.status in (200, 301, 302)
except:
pytest.skip('%s not reachable but required for testing' % SSL_TEST_HOST)
finally:
conn.close()
def test_connect_ssl():
check_http_connection()
ssl_context = ssl.SSLContext(ssl.PROTOCOL_SSLv23)
ssl_context.options |= ssl.OP_NO_SSLv2
ssl_context.verify_mode = ssl.CERT_REQUIRED
ssl_context.set_default_verify_paths()
conn = HTTPConnection(SSL_TEST_HOST, ssl_context=ssl_context)
conn.send_request('GET', '/')
resp = conn.read_response()
assert resp.status in (200, 301, 302)
assert resp.path == '/'
conn.discard()
conn.disconnect()
def test_invalid_ssl():
check_http_connection()
# Don't load certificates
context = ssl.SSLContext(ssl.PROTOCOL_SSLv23)
context.options |= ssl.OP_NO_SSLv2
context.verify_mode = ssl.CERT_REQUIRED
conn = HTTPConnection(SSL_TEST_HOST, ssl_context=context)
with pytest.raises(ssl.SSLError):
conn.send_request('GET', '/')
conn.disconnect()
def test_dns_one(monkeypatch):
monkeypatch.setattr(dugong, 'DNS_TEST_HOSTNAMES',
(('localhost', 80),))
with pytest.raises(dugong.HostnameNotResolvable):
conn = HTTPConnection('foobar.invalid')
conn.connect()
def test_dns_two(monkeypatch):
monkeypatch.setattr(dugong, 'DNS_TEST_HOSTNAMES',
(('grumpf.invalid', 80),))
with pytest.raises(dugong.DNSUnavailable):
conn = HTTPConnection('foobar.invalid')
conn.connect()
@pytest.mark.parametrize('test_port', (None, 8080))
@pytest.mark.no_ssl
def test_http_proxy(http_server, monkeypatch, test_port):
test_host = 'www.foobarz.invalid'
test_path = '/someurl?barf'
get_path = None
def do_GET(self):
nonlocal get_path
get_path = self.path
self.send_response(200)
self.send_header("Content-Type", 'application/octet-stream')
self.send_header("Content-Length", '0')
self.end_headers()
monkeypatch.setattr(MockRequestHandler, 'do_GET', do_GET)
conn = HTTPConnection(test_host, test_port,
proxy=(http_server.host, http_server.port))
try:
conn.send_request('GET', test_path)
resp = conn.read_response()
assert resp.status == 200
conn.discard()
finally:
conn.disconnect()
if test_port is None:
exp_path = 'http://%s%s' % (test_host, test_path)
else:
exp_path = 'http://%s:%d%s' % (test_host, test_port, test_path)
assert get_path == exp_path
class FakeSSLSocket:
def __init__(self, socket):
self.socket = socket
def getpeercert(self):
return None
def __getattr__(self, name):
return getattr(self.socket, name)
class FakeSSLContext:
def wrap_socket(self, socket, server_hostname):
return FakeSSLSocket(socket)
def __bool__(self):
return True
@pytest.mark.parametrize('test_port', (None, 8080))
@pytest.mark.no_ssl
def test_connect_proxy(http_server, monkeypatch, test_port):
test_host = 'www.foobarz.invalid'
test_path = '/someurl?barf'
connect_path = None
def do_CONNECT(self):
# Pretend we're the remote server too
nonlocal connect_path
connect_path = self.path
self.send_response(200)
self.end_headers()
self.close_connection = 0
monkeypatch.setattr(MockRequestHandler, 'do_CONNECT',
do_CONNECT, raising=False)
get_path = None
def do_GET(self):
nonlocal get_path
get_path = self.path
self.send_response(200)
self.send_header("Content-Type", 'application/octet-stream')
self.send_header("Content-Length", '0')
self.end_headers()
monkeypatch.setattr(MockRequestHandler, 'do_GET', do_GET)
# We don't *actually* want to establish SSL, that'd be
# to complex for our mock server
monkeypatch.setattr('ssl.match_hostname', lambda x,y: True)
conn = HTTPConnection(test_host, test_port,
proxy=(http_server.host, http_server.port),
ssl_context=FakeSSLContext())
try:
conn.send_request('GET', test_path)
resp = conn.read_response()
assert resp.status == 200
conn.discard()
finally:
conn.disconnect()
if test_port is None:
test_port = 443
exp_path = '%s:%d' % (test_host, test_port)
assert connect_path == exp_path
assert get_path == test_path
def get_chunked_GET_handler(path, chunks, delay=None):
'''Return GET handler for *path* sending *chunks* of data'''
def do_GET(self):
if self.path != path:
self.send_error(500, 'Assertion failure: %s != %s'
% (self.path, path))
return
self.send_response(200)
self.send_header("Content-Type", 'application/octet-stream')
self.send_header("Transfer-Encoding", 'chunked')
self.end_headers()
for (i, chunk_size) in enumerate(chunks):
if i % 3 == 0 and delay:
time.sleep(delay*1e-3)
self.wfile.write(('%x\r\n' % chunk_size).encode('us-ascii'))
if i % 3 == 1 and delay:
self.wfile.write(DUMMY_DATA[:chunk_size//2])
time.sleep(delay*1e-3)
self.wfile.write(DUMMY_DATA[chunk_size//2:chunk_size])
else:
self.wfile.write(DUMMY_DATA[:chunk_size])
if i % 3 == 2 and delay:
time.sleep(delay*1e-3)
self.wfile.write(b'\r\n')
self.wfile.flush()
self.wfile.write(b'0\r\n\r\n')
return do_GET
def test_get_pipeline(conn):
# We assume that internal buffers are big enough to hold
# a few requests
paths = [ '/send_120_bytes' for _ in range(3) ]
# Send requests
for path in paths:
crt = conn.co_send_request('GET', path)
for io_req in crt:
# If this fails, then internal buffers are too small
assert io_req.poll(10)
# Read responses
for path in paths:
resp = conn.read_response()
assert resp.status == 200
assert resp.path == path
assert conn.readall() == DUMMY_DATA[:120]
def test_ssl_info(conn):
conn.get_ssl_cipher()
conn.get_ssl_peercert()
def test_blocking_send(conn, random_fh, monkeypatch):
# Send requests until we block because all TCP buffers are full
out_len = 102400
in_len = 8192
path = '/buo?com'
def do_GET(self):
self.rfile.read(in_len)
self.send_response(200)
self.send_header("Content-Type", 'application/octet-stream')
self.send_header("Content-Length", str(out_len))
self.end_headers()
self.wfile.write(random_fh.read(out_len))
monkeypatch.setattr(MockRequestHandler, 'do_GET', do_GET)
for count in itertools.count():
crt = conn.co_send_request('GET', path, body=random_fh.read(in_len))
flag = False
for io_req in crt:
if not io_req.poll(1):
flag = True
break
if flag:
break
if count > 1000000:
pytest.fail("no blocking even after %d requests!?" % count)
# Read responses
for i in range(count):
resp = conn.read_response()
assert resp.status == 200
conn.discard()
# Now we should be able to complete the request
assert io_req.poll(5)
with pytest.raises(StopIteration):
next(crt)
resp = conn.read_response()
assert resp.status == 200
conn.discard()
def test_blocking_read(conn, monkeypatch):
path = '/foo/wurfl'
chunks = [120] * 10
delay = 10
while True:
monkeypatch.setattr(MockRequestHandler, 'do_GET',
get_chunked_GET_handler(path, chunks, delay))
conn.send_request('GET', path)
resp = conn.read_response()
assert resp.status == 200
interrupted = 0
parts = []
while True:
crt = conn.co_read(100)
try:
while True:
io_req = next(crt)
interrupted += 1
assert io_req.poll(5)
except StopIteration as exc:
buf = exc.value
if not buf:
break
parts.append(buf)
assert not conn.response_pending()
assert _join(parts) == b''.join(DUMMY_DATA[:x] for x in chunks)
if interrupted >= 8:
break
elif delay > 5000:
pytest.fail('no blocking read even with %f sec sleep' % delay)
delay *= 2
def test_discard(conn, monkeypatch):
data_len = 512
path = '/send_%d_bytes' % data_len
conn.send_request('GET', path)
resp = conn.read_response()
assert resp.status == 200
assert resp.path == path
assert resp.length == data_len
conn.discard()
assert not conn.response_pending()
def test_discard_chunked(conn, monkeypatch):
path = '/foo/wurfl'
chunks = [512, 312, 837, 361]
monkeypatch.setattr(MockRequestHandler, 'do_GET',
get_chunked_GET_handler(path, chunks))
conn.send_request('GET', path)
resp = conn.read_response()
assert resp.status == 200
assert resp.path == path
assert resp.length is None
conn.discard()
assert not conn.response_pending()
def test_read_text(conn):
conn.send_request('GET', '/send_%d_bytes' % len(DUMMY_DATA))
conn.read_response()
fh = TextIOWrapper(conn)
assert fh.read() == DUMMY_DATA.decode('utf8')
assert not conn.response_pending()
def test_read_text2(conn):
conn.send_request('GET', '/send_%d_bytes' % len(DUMMY_DATA))
conn.read_response()
fh = TextIOWrapper(conn)
# This used to fail because TextIOWrapper can't deal with bytearrays
fh.read(42)
def test_read_text3(conn):
conn.send_request('GET', '/send_%d_bytes' % len(DUMMY_DATA))
conn.read_response()
fh = TextIOWrapper(conn)
# This used to fail because TextIOWrapper tries to read from
# the underlying fh even after getting ''
while True:
if not fh.read(77):
break
assert not conn.response_pending()
def test_read_identity(conn):
conn.send_request('GET', '/send_512_bytes')
resp = conn.read_response()
assert resp.status == 200
assert resp.path == '/send_512_bytes'
assert resp.length == 512
assert conn.readall() == DUMMY_DATA[:512]
assert not conn.response_pending()
def test_conn_close_1(conn, monkeypatch):
# Regular read
data_size = 500
conn._rbuf = dugong._Buffer(int(4/5*data_size))
def do_GET(self):
self.send_response(200)
self.send_header("Content-Type", 'application/octet-stream')
self.send_header("Connection", 'close')
self.end_headers()
self.wfile.write(DUMMY_DATA[:data_size])
self.rfile.close()
self.wfile.close()
monkeypatch.setattr(MockRequestHandler, 'do_GET', do_GET)
conn.send_request('GET', '/whatever')
resp = conn.read_response()
assert resp.status == 200
assert conn.readall() == DUMMY_DATA[:data_size]
with pytest.raises(ConnectionClosed):
conn.send_request('GET', '/whatever')
conn.read_response()
def test_conn_close_2(conn, monkeypatch):
# Readinto
data_size = 500
conn._rbuf = dugong._Buffer(int(4/5*data_size))
def do_GET(self):
self.send_response(200)
self.send_header("Content-Type", 'application/octet-stream')
self.send_header("Connection", 'close')
self.end_headers()
self.wfile.write(DUMMY_DATA[:data_size])
self.rfile.close()
self.wfile.close()
monkeypatch.setattr(MockRequestHandler, 'do_GET', do_GET)
conn.send_request('GET', '/whatever')
resp = conn.read_response()
assert resp.status == 200
buf = memoryview(bytearray(2*data_size))
got = conn.readinto(buf)
got += conn.readinto(buf[got:])
assert got == data_size
assert buf[:data_size] == DUMMY_DATA[:data_size]
assert conn.readinto(buf[got:]) == 0
with pytest.raises(ConnectionClosed):
conn.send_request('GET', '/whatever')
conn.read_response()
def test_conn_close_3(conn, monkeypatch):
# Server keeps reading
data_size = 500
conn._rbuf = dugong._Buffer(int(4/5*data_size))
def do_GET(self):
self.send_response(200)
self.send_header("Content-Type", 'application/octet-stream')
self.send_header("Connection", 'close')
self.end_headers()
self.wfile.write(DUMMY_DATA[:data_size])
self.wfile.close()
monkeypatch.setattr(MockRequestHandler, 'do_GET', do_GET)
conn.send_request('GET', '/whatever')
resp = conn.read_response()
assert resp.status == 200
assert conn.readall() == DUMMY_DATA[:data_size]
conn.send_request('GET', '/whatever')
assert_raises(ConnectionClosed, conn.read_response)
def test_conn_close_4(conn, monkeypatch):
# Content-Length should take precedence
data_size = 500
conn._rbuf = dugong._Buffer(int(4/5*data_size))
def do_GET(self):
self.send_response(200)
self.send_header("Content-Type", 'application/octet-stream')
self.send_header("Content-Length", str(data_size))
self.send_header("Connection", 'close')
self.end_headers()
self.wfile.write(DUMMY_DATA[:data_size+10])
self.wfile.close()
monkeypatch.setattr(MockRequestHandler, 'do_GET', do_GET)
conn.send_request('GET', '/whatever')
resp = conn.read_response()
assert resp.status == 200
assert conn.readall() == DUMMY_DATA[:data_size]
def test_conn_close_5(conn, monkeypatch):
# Pipelining
data_size = 500
conn._rbuf = dugong._Buffer(int(4/5*data_size))
def do_GET(self):
self.send_response(200)
self.send_header("Content-Type", 'application/octet-stream')
self.send_header("Content-Length", str(data_size))
self.send_header("Connection", 'close')
self.end_headers()
self.wfile.write(DUMMY_DATA[:data_size])
self.wfile.close()
self.rfile.close()
monkeypatch.setattr(MockRequestHandler, 'do_GET', do_GET)
conn.send_request('GET', '/whatever_one')
conn.send_request('GET', '/whatever_two')
resp = conn.read_response()
assert resp.status == 200
assert conn.readall() == DUMMY_DATA[:data_size]
assert_raises(dugong.ConnectionClosed, conn.read_response)
@pytest.mark.no_ssl
def test_exhaust_buffer(conn):
conn._rbuf = dugong._Buffer(600)
conn.send_request('GET', '/send_512_bytes')
conn.read_response()
# Test the case where the readbuffer is truncated and
# returned, instead of copied
conn._rbuf.compact()
for io_req in conn._co_fill_buffer(1):
io_req.poll()
assert conn._rbuf.b == 0
assert conn._rbuf.e > 0
buf = conn.read(600)
assert len(conn._rbuf.d) == 600
assert buf == DUMMY_DATA[:len(buf)]
assert conn.readall() == DUMMY_DATA[len(buf):512]
@pytest.mark.no_ssl
def test_full_buffer(conn):
conn._rbuf = dugong._Buffer(100)
conn.send_request('GET', '/send_512_bytes')
conn.read_response()
buf = conn.read(101)
pos = len(buf)
assert buf == DUMMY_DATA[:pos]
# Make buffer empty, but without capacity for more
assert conn._rbuf.e == 0
conn._rbuf.e = len(conn._rbuf.d)
conn._rbuf.b = conn._rbuf.e
assert conn.readall() == DUMMY_DATA[pos:512]
def test_readinto_identity(conn):
conn.send_request('GET', '/send_512_bytes')
resp = conn.read_response()
assert resp.status == 200
assert resp.path == '/send_512_bytes'
assert resp.length == 512
parts = []
while True:
buf = bytearray(600)
len_ = conn.readinto(buf)
if not len_:
break
parts.append(buf[:len_])
assert _join(parts) == DUMMY_DATA[:512]
assert not conn.response_pending()
def test_read_chunked(conn, monkeypatch):
path = '/foo/wurfl'
chunks = [300, 283, 377]
monkeypatch.setattr(MockRequestHandler, 'do_GET',
get_chunked_GET_handler(path, chunks))
conn.send_request('GET', path)
resp = conn.read_response()
assert resp.status == 200
assert resp.path == path
assert resp.length is None
assert conn.readall() == b''.join(DUMMY_DATA[:x] for x in chunks)
assert not conn.response_pending()
def test_read_chunked2(conn, monkeypatch):
path = '/foo/wurfl'
chunks = [5] * 10
monkeypatch.setattr(MockRequestHandler, 'do_GET',
get_chunked_GET_handler(path, chunks))
conn.send_request('GET', path)
resp = conn.read_response()
assert resp.status == 200
assert resp.length is None
assert resp.path == path
assert conn.readall() == b''.join(DUMMY_DATA[:x] for x in chunks)
assert not conn.response_pending()
def test_readinto_chunked(conn, monkeypatch):
path = '/foo/wurfl'
chunks = [300, 317, 283]
monkeypatch.setattr(MockRequestHandler, 'do_GET',
get_chunked_GET_handler(path, chunks))
conn.send_request('GET', path)
resp = conn.read_response()
assert resp.status == 200
assert resp.length is None
assert resp.path == path
parts = []
while True:
buf = bytearray(600)
len_ = conn.readinto(buf)
if not len_:
break
parts.append(buf[:len_])
assert _join(parts) == b''.join(DUMMY_DATA[:x] for x in chunks)
assert not conn.response_pending()
def test_double_read(conn):
conn.send_request('GET', '/send_10_bytes')
resp = conn.read_response()
assert resp.status == 200
assert resp.length == 10
assert resp.path == '/send_10_bytes'
with pytest.raises(dugong.StateError):
resp = conn.read_response()
def test_read_raw(conn, monkeypatch):
path = '/ooops'
def do_GET(self):
assert self.path == path
self.send_response(200)
self.send_header("Content-Type", 'application/octet-stream')
self.end_headers()
self.wfile.write(b'body data')
self.wfile.close()
monkeypatch.setattr(MockRequestHandler, 'do_GET', do_GET)
conn.send_request('GET', path)
resp = conn.read_response()
assert resp.status == 200
with pytest.raises(dugong.UnsupportedResponse):
conn.readall()
assert conn.read_raw(512) == b'body data'
assert conn.read_raw(512) == b''
def test_abort_read(conn, monkeypatch):
path = '/foo/wurfl'
chunks = [300, 317, 283]
monkeypatch.setattr(MockRequestHandler, 'do_GET',
get_chunked_GET_handler(path, chunks))
conn.send_request('GET', path)
resp = conn.read_response()
assert resp.status == 200
conn.read(200)
conn.disconnect()
assert_raises(dugong.ConnectionClosed, conn.read, 200)
def test_abort_co_read(conn, monkeypatch):
# We need to delay the write to ensure that we encounter a blocking read
path = '/foo/wurfl'
chunks = [300, 317, 283]
delay = 10
while True:
monkeypatch.setattr(MockRequestHandler, 'do_GET',
get_chunked_GET_handler(path, chunks, delay))
conn.send_request('GET', path)
resp = conn.read_response()
assert resp.status == 200
cofun = conn.co_read(450)
try:
next(cofun)
except StopIteration:
# Not good, need to wait longer
pass
else:
break
finally:
conn.disconnect()
if delay > 5000:
pytest.fail('no blocking read even with %f sec sleep' % delay)
delay *= 2
assert_raises(dugong.ConnectionClosed, next, cofun)
def test_abort_write(conn):
conn.send_request('PUT', '/allgood', body=BodyFollowing(42))
conn.write(b'fooo')
conn.disconnect()
assert_raises(dugong.ConnectionClosed, conn.write, b'baar')
def test_write_toomuch(conn):
conn.send_request('PUT', '/allgood', body=BodyFollowing(42))
with pytest.raises(dugong.ExcessBodyData):
conn.write(DUMMY_DATA[:43])
def test_write_toolittle(conn):
conn.send_request('PUT', '/allgood', body=BodyFollowing(42))
conn.write(DUMMY_DATA[:24])
with pytest.raises(dugong.StateError):
conn.send_request('GET', '/send_5_bytes')
def test_write_toolittle2(conn):
conn.send_request('PUT', '/allgood', body=BodyFollowing(42))
conn.write(DUMMY_DATA[:24])
with pytest.raises(dugong.StateError):
conn.read_response()
def test_write_toolittle3(conn):
conn.send_request('GET', '/send_10_bytes')
conn.send_request('PUT', '/allgood', body=BodyFollowing(42))
conn.write(DUMMY_DATA[:24])
resp = conn.read_response()
assert resp.status == 200
assert resp.path == '/send_10_bytes'
assert len(conn.readall()) == 10
with pytest.raises(dugong.StateError):
conn.read_response()
def test_put(conn):
data = DUMMY_DATA
conn.send_request('PUT', '/allgood', body=data)
resp = conn.read_response()
conn.discard()
assert resp.status == 204
assert resp.length == 0
assert resp.reason == 'MD5 matched'
headers = CaseInsensitiveDict()
headers['Content-MD5'] = 'nUzaJEag3tOdobQVU/39GA=='
conn.send_request('PUT', '/allgood', body=data, headers=headers)
resp = conn.read_response()
conn.discard()
assert resp.status == 400
assert resp.reason.startswith('MD5 mismatch')
def test_put_separate(conn):
data = DUMMY_DATA
conn.send_request('PUT', '/allgood', body=BodyFollowing(len(data)))
conn.write(data)
resp = conn.read_response()
conn.discard()
assert resp.status == 204
assert resp.length == 0
assert resp.reason == 'Ok, but no MD5'
headers = CaseInsensitiveDict()
headers['Content-MD5'] = b64encode(hashlib.md5(data).digest()).decode('ascii')
conn.send_request('PUT', '/allgood', body=BodyFollowing(len(data)),
headers=headers)
conn.write(data)
resp = conn.read_response()
conn.discard()
assert resp.status == 204
assert resp.length == 0
assert resp.reason == 'MD5 matched'
headers['Content-MD5'] = 'nUzaJEag3tOdobQVU/39GA=='
conn.send_request('PUT', '/allgood', body=BodyFollowing(len(data)),
headers=headers)
conn.write(data)
resp = conn.read_response()
conn.discard()
assert resp.status == 400
assert resp.reason.startswith('MD5 mismatch')
def test_100cont(conn, monkeypatch):
path = '/check_this_out'
def handle_expect_100(self):
if self.path != path:
self.send_error(500, 'Assertion error, %s != %s'
% (self.path, path))
else:
self.send_error(403)
monkeypatch.setattr(MockRequestHandler, 'handle_expect_100',
handle_expect_100)
conn.send_request('PUT', path, body=BodyFollowing(256),
expect100=True)
resp = conn.read_response()
assert resp.status == 403
conn.discard()
def handle_expect_100(self):
if self.path != path:
self.send_error(500, 'Assertion error, %s != %s'
% (self.path, path))
return
self.send_response_only(100)
self.end_headers()
return True
monkeypatch.setattr(MockRequestHandler, 'handle_expect_100',
handle_expect_100)
conn.send_request('PUT', path, body=BodyFollowing(256), expect100=True)
resp = conn.read_response()
assert resp.status == 100
assert resp.length == 0
conn.write(DUMMY_DATA[:256])
resp = conn.read_response()
assert resp.status == 204
assert resp.length == 0
def test_100cont_2(conn, monkeypatch):
def handle_expect_100(self):
self.send_error(403)
monkeypatch.setattr(MockRequestHandler, 'handle_expect_100',
handle_expect_100)
conn.send_request('PUT', '/fail_with_403', body=BodyFollowing(256),
expect100=True)
with pytest.raises(dugong.StateError):
conn.send_request('PUT', '/fail_with_403', body=BodyFollowing(256), expect100=True)
conn.read_response()
conn.readall()
def test_100cont_3(conn, monkeypatch):
def handle_expect_100(self):
self.send_error(403)
monkeypatch.setattr(MockRequestHandler, 'handle_expect_100',
handle_expect_100)
conn.send_request('PUT', '/fail_with_403', body=BodyFollowing(256), expect100=True)
with pytest.raises(dugong.StateError):
conn.write(b'barf!')
conn.read_response()
conn.readall()
def test_aborted_write1(conn, monkeypatch, random_fh):
BUFSIZE = 64*1024
# monkeypatch request handler
def do_PUT(self):
# Read half the data, then generate error and
# close connection
self.rfile.read(BUFSIZE)
self.send_error(code=401, message='Please stop!')
self.close_connection = True
monkeypatch.setattr(MockRequestHandler, 'do_PUT', do_PUT)
# Send request
conn.send_request('PUT', '/big_object', body=BodyFollowing(BUFSIZE*50),
expect100=True)
resp = conn.read_response()
assert resp.status == 100
assert resp.length == 0
# Try to write data
with pytest.raises(ConnectionClosed):
for _ in range(50):
conn.write(random_fh.read(BUFSIZE))
# Nevertheless, try to read response
resp = conn.read_response()
assert resp.status == 401
assert resp.reason == 'Please stop!'
def test_aborted_write2(conn, monkeypatch, random_fh):
BUFSIZE = 64*1024
# monkeypatch request handler
def do_PUT(self):
# Read half the data, then silently close connection
self.rfile.read(BUFSIZE)
self.close_connection = True
monkeypatch.setattr(MockRequestHandler, 'do_PUT', do_PUT)
# Send request
conn.send_request('PUT', '/big_object', body=BodyFollowing(BUFSIZE*50),
expect100=True)
resp = conn.read_response()
assert resp.status == 100
assert resp.length == 0
# Try to write data
with pytest.raises(ConnectionClosed):
for _ in range(50):
conn.write(random_fh.read(BUFSIZE))
# Nevertheless, try to read response
assert_raises(ConnectionClosed, conn.read_response)
def test_read_toomuch(conn):
conn.send_request('GET', '/send_10_bytes')
conn.send_request('GET', '/send_8_bytes')
resp = conn.read_response()
assert resp.status == 200
assert resp.path == '/send_10_bytes'
assert conn.readall() == DUMMY_DATA[:10]
assert conn.read(8) == b''
def test_read_toolittle(conn):
conn.send_request('GET', '/send_10_bytes')
resp = conn.read_response()
assert resp.status == 200
assert resp.path == '/send_10_bytes'
buf = conn.read(8)
assert buf == DUMMY_DATA[:len(buf)]
with pytest.raises(dugong.StateError):
resp = conn.read_response()
def test_empty_response(conn):
conn.send_request('HEAD', '/send_512_bytes')
resp = conn.read_response()
assert resp.status == 200
assert resp.path == '/send_512_bytes'
assert resp.length == 0
# Check that we can go to the next response without
# reading anything
assert not conn.response_pending()
conn.send_request('GET', '/send_512_bytes')
resp = conn.read_response()
assert resp.status == 200
assert resp.path == '/send_512_bytes'
assert resp.length == 512
assert conn.readall() == DUMMY_DATA[:512]
assert not conn.response_pending()
def test_head(conn, monkeypatch):
conn.send_request('HEAD', '/send_10_bytes')
resp = conn.read_response()
assert resp.status == 200
assert len(conn.readall()) == 0
def do_HEAD(self):
self.send_error(317)
monkeypatch.setattr(MockRequestHandler, 'do_HEAD', do_HEAD)
conn.send_request('HEAD', '/fail_with_317')
resp = conn.read_response()
assert resp.status == 317
assert len(conn.readall()) == 0
@pytest.fixture(params=(63,64,65,100,99,103,500,511,512,513))
def buffer_size(request):
return request.param
def test_smallbuffer(conn, buffer_size):
conn._rbuf = dugong._Buffer(buffer_size)
conn.send_request('GET', '/send_512_bytes')
resp = conn.read_response()
assert resp.status == 200
assert resp.path == '/send_512_bytes'
assert resp.length == 512
assert conn.readall() == DUMMY_DATA[:512]
assert not conn.response_pending()
def test_mutable_read(conn):
# Read data and modify it, to make sure that this doesn't
# affect the buffer
conn._rbuf = dugong._Buffer(129)
conn.send_request('GET', '/send_512_bytes')
conn.read_response()
# Assert that buffer is full, but does not start at beginning
assert conn._rbuf.b > 0
# Need to avoid conn.read(), because it converts to bytes
buf = dugong.eval_coroutine(conn.co_read(150))
pos = len(buf)
assert buf == DUMMY_DATA[:pos]
memoryview(buf)[:10] = b'\0' * 10
# Assert that buffer is empty
assert conn._rbuf.b == 0
assert conn._rbuf.e == 0
buf = dugong.eval_coroutine(conn.co_read(150))
assert buf == DUMMY_DATA[pos:pos+len(buf)]
memoryview(buf)[:10] = b'\0' * 10
pos += len(buf)
assert conn.readall() == DUMMY_DATA[pos:512]
assert not conn.response_pending()
def test_recv_timeout(conn, monkeypatch):
conn.timeout = 1
def do_GET(self):
self.send_response(200)
self.send_header("Content-Type", 'application/octet-stream')
self.send_header("Content-Length", '50')
self.end_headers()
self.wfile.write(b'x' * 25)
self.wfile.flush()
monkeypatch.setattr(MockRequestHandler, 'do_GET', do_GET)
conn.send_request('GET', '/send_something')
resp = conn.read_response()
assert resp.status == 200
assert conn.read(50) == b'x' * 25
assert_raises(dugong.ConnectionTimedOut, conn.read, 50)
def test_send_timeout(conn, monkeypatch, random_fh):
conn.timeout = 1
def do_PUT(self):
# Read just a tiny bit
self.rfile.read(256)
# We need to sleep, or the rest of the incoming data will
# be parsed as the next request.
time.sleep(2*conn.timeout)
monkeypatch.setattr(MockRequestHandler, 'do_PUT', do_PUT)
# We don't know how much data can be buffered, so we
# claim to send a lot and do so in a loop.
len_ = 1024**3
conn.send_request('PUT', '/recv_something', body=BodyFollowing(len_))
with pytest.raises(dugong.ConnectionTimedOut):
while len_ > 0:
conn.write(random_fh.read(min(len_, 16*1024)))
DUMMY_DATA = ','.join(str(x) for x in range(10000)).encode()
class MockRequestHandler(BaseHTTPRequestHandler):
server_version = "MockHTTP"
protocol_version = 'HTTP/1.1'
def log_message(self, format, *args):
pass
def handle(self):
# Ignore exceptions resulting from the client closing
# the connection.
try:
return super().handle()
except ValueError as exc:
if exc.args == ('I/O operation on closed file.',):
pass
else:
raise
# Linux generates BrokenPipeError, FreeBSD uses ConnectionResetError
except (BrokenPipeError, ConnectionResetError):
pass
def do_GET(self):
len_ = int(self.headers['Content-Length'])
if len_:
self.rfile.read(len_)
hit = re.match(r'^/send_([0-9]+)_bytes', self.path)
if hit:
len_ = int(hit.group(1))
self.do_HEAD()
self.wfile.write(DUMMY_DATA[:len_])
return
self.send_error(500)
def do_PUT(self):
encoding = self.headers['Content-Encoding']
if encoding and encoding != 'identity':
self.send_error(415)
return
len_ = int(self.headers['Content-Length'])
data = self.rfile.read(len_)
if 'Content-MD5' in self.headers:
md5 = b64encode(hashlib.md5(data).digest()).decode('ascii')
if md5 != self.headers['Content-MD5']:
self.send_error(400, 'MD5 mismatch: %s vs %s'
% (md5, self.headers['Content-MD5']))
return
self.send_response(204, 'MD5 matched')
else:
self.send_response(204, 'Ok, but no MD5')
self.send_header('Content-Length', '0')
self.end_headers()
def do_HEAD(self):
hit = re.match(r'^/send_([0-9]+)_bytes', self.path)
if hit:
len_ = int(hit.group(1))
self.send_response(200)
self.send_header("Content-Type", 'application/octet-stream')
self.send_header("Content-Length", str(len_))
self.end_headers()
return
# No idea
self.send_error(500)
def send_error(self, code, message=None):
# Overwritten to not close connection on errors and provide
# content-length
try:
shortmsg, longmsg = self.responses[code]
except KeyError:
shortmsg, longmsg = '???', '???'
if message is None:
message = shortmsg
explain = longmsg
self.log_error("code %d, message %s", code, message)
# HTML encode to prevent Cross Site Scripting attacks (see bug #1100201)
content = (self.error_message_format % {
'code': code,
'message': html.escape(message, quote=False),
'explain': explain
}).encode('utf-8', 'replace')
self.send_response(code, message)
self.send_header("Content-Type", self.error_content_type)
self.send_header("Content-Length", str(len(content)))
self.end_headers()
if self.command != 'HEAD' and code >= 200 and code not in (204, 304):
self.wfile.write(content)
|