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
|
# -*- coding: utf-8 -*-
import sys, os
import pytest
from pypy.tool.pytest.objspace import gettestobjspace
from pypy.interpreter.gateway import interp2app
from rpython.tool.udir import udir
from rpython.rlib import rsocket
from rpython.rtyper.lltypesystem import lltype, rffi
def setup_module(mod):
mod.space = gettestobjspace(usemodules=['_socket', 'array', 'struct',
'unicodedata'])
global socket
import socket
mod.w_socket = space.appexec([], "(): import _socket as m; return m")
mod.path = udir.join('fd')
mod.path.write('fo')
def test_gethostname():
host = space.appexec([w_socket], "(_socket): return _socket.gethostname()")
assert space.unwrap(host) == socket.gethostname()
def test_gethostbyname():
for host in ["localhost", "127.0.0.1"]:
ip = space.appexec([w_socket, space.wrap(host)],
"(_socket, host): return _socket.gethostbyname(host)")
assert space.unwrap(ip) == socket.gethostbyname(host)
def test_gethostbyname_ex():
for host in ["localhost", "127.0.0.1"]:
ip = space.appexec([w_socket, space.wrap(host)],
"(_socket, host): return _socket.gethostbyname_ex(host)")
assert space.unwrap(ip) == socket.gethostbyname_ex(host)
def test_gethostbyaddr():
try:
socket.gethostbyaddr("::1")
except socket.herror:
ipv6 = False
else:
ipv6 = True
for host in ["localhost", "127.0.0.1", "::1"]:
if host == "::1" and not ipv6:
from pypy.interpreter.error import OperationError
with pytest.raises(OperationError):
space.appexec([w_socket, space.wrap(host)],
"(_socket, host): return _socket.gethostbyaddr(host)")
continue
ip = space.appexec([w_socket, space.wrap(host)],
"(_socket, host): return _socket.gethostbyaddr(host)")
assert space.unwrap(ip) == socket.gethostbyaddr(host)
def test_getservbyname():
name = "smtp"
# 2 args version
port = space.appexec([w_socket, space.wrap(name)],
"(_socket, name): return _socket.getservbyname(name, 'tcp')")
assert space.unwrap(port) == 25
# 1 arg version
if sys.version_info < (2, 4):
pytest.skip("getservbyname second argument is not optional before python 2.4")
port = space.appexec([w_socket, space.wrap(name)],
"(_socket, name): return _socket.getservbyname(name)")
assert space.unwrap(port) == 25
def test_getservbyport():
if sys.version_info < (2, 4):
pytest.skip("getservbyport does not exist before python 2.4")
port = 25
# 2 args version
name = space.appexec([w_socket, space.wrap(port)],
"(_socket, port): return _socket.getservbyport(port, 'tcp')")
assert space.unwrap(name) == "smtp"
name = space.appexec([w_socket, space.wrap(port)],
"""(_socket, port):
try:
return _socket.getservbyport(port, 42)
except TypeError:
return 'OK'
""")
assert space.unwrap(name) == 'OK'
# 1 arg version
name = space.appexec([w_socket, space.wrap(port)],
"(_socket, port): return _socket.getservbyport(port)")
assert space.unwrap(name) == "smtp"
def test_getprotobyname():
name = "tcp"
w_n = space.appexec([w_socket, space.wrap(name)],
"(_socket, name): return _socket.getprotobyname(name)")
assert space.unwrap(w_n) == socket.IPPROTO_TCP
def test_ntohs():
w_n = space.appexec([w_socket, space.wrap(125)],
"(_socket, x): return _socket.ntohs(x)")
assert space.unwrap(w_n) == socket.ntohs(125)
def test_ntohl():
w_n = space.appexec([w_socket, space.wrap(125)],
"(_socket, x): return _socket.ntohl(x)")
assert space.unwrap(w_n) == socket.ntohl(125)
w_n = space.appexec([w_socket, space.wrap(0x89abcdef)],
"(_socket, x): return _socket.ntohl(x)")
assert space.unwrap(w_n) in (0x89abcdef, 0xefcdab89)
space.raises_w(space.w_OverflowError, space.appexec,
[w_socket, space.wrap(1<<32)],
"(_socket, x): return _socket.ntohl(x)")
def test_htons():
w_n = space.appexec([w_socket, space.wrap(125)],
"(_socket, x): return _socket.htons(x)")
assert space.unwrap(w_n) == socket.htons(125)
def test_htonl():
w_n = space.appexec([w_socket, space.wrap(125)],
"(_socket, x): return _socket.htonl(x)")
assert space.unwrap(w_n) == socket.htonl(125)
w_n = space.appexec([w_socket, space.wrap(0x89abcdef)],
"(_socket, x): return _socket.htonl(x)")
assert space.unwrap(w_n) in (0x89abcdef, 0xefcdab89)
space.raises_w(space.w_OverflowError, space.appexec,
[w_socket, space.wrap(1<<32)],
"(_socket, x): return _socket.htonl(x)")
def test_aton_ntoa():
ip = '123.45.67.89'
packed = socket.inet_aton(ip)
w_p = space.appexec([w_socket, space.wrap(ip)],
"(_socket, ip): return _socket.inet_aton(ip)")
assert space.bytes_w(w_p) == packed
w_ip = space.appexec([w_socket, w_p],
"(_socket, p): return _socket.inet_ntoa(p)")
assert space.unicode_w(w_ip) == ip
def test_pton_ntop_ipv4():
if not hasattr(socket, 'inet_pton'):
pytest.skip('No socket.inet_pton on this platform')
tests = [
("123.45.67.89", "\x7b\x2d\x43\x59"),
("0.0.0.0", "\x00" * 4),
("255.255.255.255", "\xff" * 4),
]
for ip, packed in tests:
w_p = space.appexec([w_socket, space.wrap(ip)],
"(_socket, ip): return _socket.inet_pton(_socket.AF_INET, ip)")
assert space.unwrap(w_p) == packed
w_ip = space.appexec([w_socket, w_p],
"(_socket, p): return _socket.inet_ntop(_socket.AF_INET, p)")
assert space.unwrap(w_ip) == ip
def test_ntop_ipv6():
if not hasattr(socket, 'inet_pton'):
pytest.skip('No socket.inet_pton on this platform')
if not socket.has_ipv6:
pytest.skip("No IPv6 on this platform")
tests = [
("\x00" * 16, "::"),
("\x01" * 16, ":".join(["101"] * 8)),
("\x00\x00\x10\x10" * 4, None), #"::1010:" + ":".join(["0:1010"] * 3)),
("\x00" * 12 + "\x01\x02\x03\x04", "::1.2.3.4"),
("\x00" * 10 + "\xff\xff\x01\x02\x03\x04", "::ffff:1.2.3.4"),
]
for packed, ip in tests:
w_ip = space.appexec([w_socket, space.newbytes(packed)],
"(_socket, packed): return _socket.inet_ntop(_socket.AF_INET6, packed)")
if ip is not None: # else don't check for the precise representation
assert space.unwrap(w_ip) == ip
w_packed = space.appexec([w_socket, w_ip],
"(_socket, ip): return _socket.inet_pton(_socket.AF_INET6, ip)")
assert space.unwrap(w_packed) == packed
def test_pton_ipv6():
if not hasattr(socket, 'inet_pton'):
pytest.skip('No socket.inet_pton on this platform')
if not socket.has_ipv6:
pytest.skip("No IPv6 on this platform")
tests = [
("\x00" * 16, "::"),
("\x01" * 16, ":".join(["101"] * 8)),
("\x00\x01" + "\x00" * 12 + "\x00\x02", "1::2"),
("\x00" * 4 + "\x00\x01" * 6, "::1:1:1:1:1:1"),
("\x00\x01" * 6 + "\x00" * 4, "1:1:1:1:1:1::"),
("\xab\xcd\xef\00" + "\x00" * 12, "ABCD:EF00::"),
("\xab\xcd\xef\00" + "\x00" * 12, "abcd:ef00::"),
("\x00\x00\x10\x10" * 4, "::1010:" + ":".join(["0:1010"] * 3)),
("\x00" * 12 + "\x01\x02\x03\x04", "::1.2.3.4"),
("\x00" * 10 + "\xff\xff\x01\x02\x03\x04", "::ffff:1.2.3.4"),
]
for packed, ip in tests:
w_packed = space.appexec([w_socket, space.wrap(ip)],
"(_socket, ip): return _socket.inet_pton(_socket.AF_INET6, ip)")
assert space.unwrap(w_packed) == packed
def test_has_ipv6():
pytest.skip("has_ipv6 is always True on PyPy for now")
res = space.appexec([w_socket], "(_socket): return _socket.has_ipv6")
assert space.unwrap(res) == socket.has_ipv6
def test_getaddrinfo():
host = b"localhost"
port = 25
info = socket.getaddrinfo(host, port)
w_l = space.appexec([w_socket, space.newbytes(host), space.wrap(port)],
"(_socket, host, port): return _socket.getaddrinfo(host, port)")
assert space.unwrap(w_l) == info
w_l = space.appexec([w_socket, space.wrap(host), space.wrap(port)],
"(_socket, host, port): return _socket.getaddrinfo(host, port)")
assert space.unwrap(w_l) == info
w_l = space.appexec([w_socket, space.newbytes(host), space.wrap('smtp')],
"(_socket, host, port): return _socket.getaddrinfo(host, port)")
assert space.unwrap(w_l) == socket.getaddrinfo(host, 'smtp')
def test_unknown_addr_as_object():
from pypy.module._socket.interp_socket import addr_as_object
c_addr = lltype.malloc(rsocket._c.sockaddr, flavor='raw', track_allocation=False)
c_addr.c_sa_data[0] = 'c'
rffi.setintfield(c_addr, 'c_sa_family', 15)
# XXX what size to pass here? for the purpose of this test it has
# to be short enough so we have some data, 1 sounds good enough
# + sizeof USHORT
w_obj = addr_as_object(rsocket.Address(c_addr, 1 + 2), -1, space)
assert space.isinstance_w(w_obj, space.w_tuple)
assert space.int_w(space.getitem(w_obj, space.wrap(0))) == 15
assert space.str_w(space.getitem(w_obj, space.wrap(1))) == 'c'
def test_addr_raw_packet():
from pypy.module._socket.interp_socket import addr_as_object
if not hasattr(rsocket._c, 'sockaddr_ll'):
pytest.skip("posix specific test")
# HACK: To get the correct interface number of lo, which in most cases is 1,
# but can be anything (i.e. 39), we need to call the libc function
# if_nametoindex to get the correct index
import ctypes
libc = ctypes.CDLL(ctypes.util.find_library('c'))
ifnum = libc.if_nametoindex('lo')
c_addr_ll = lltype.malloc(rsocket._c.sockaddr_ll, flavor='raw')
addrlen = rffi.sizeof(rsocket._c.sockaddr_ll)
c_addr = rffi.cast(lltype.Ptr(rsocket._c.sockaddr), c_addr_ll)
rffi.setintfield(c_addr_ll, 'c_sll_ifindex', ifnum)
rffi.setintfield(c_addr_ll, 'c_sll_protocol', 8)
rffi.setintfield(c_addr_ll, 'c_sll_pkttype', 13)
rffi.setintfield(c_addr_ll, 'c_sll_hatype', 0)
rffi.setintfield(c_addr_ll, 'c_sll_halen', 3)
c_addr_ll.c_sll_addr[0] = 'a'
c_addr_ll.c_sll_addr[1] = 'b'
c_addr_ll.c_sll_addr[2] = 'c'
rffi.setintfield(c_addr, 'c_sa_family', socket.AF_PACKET)
# fd needs to be somehow valid
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
fd = s.fileno()
w_obj = addr_as_object(rsocket.make_address(c_addr, addrlen), fd, space)
lltype.free(c_addr_ll, flavor='raw')
assert space.is_true(space.eq(w_obj, space.newtuple([
space.newtext('lo'),
space.newint(socket.ntohs(8)),
space.newint(13),
space.newbool(False),
space.newbytes("abc"),
])))
def test_getnameinfo():
from pypy.module._socket.interp_socket import get_error
host = "127.0.0.1"
port = 25
info = socket.getnameinfo((host, port), 0)
w_l = space.appexec([w_socket, space.wrap(host), space.wrap(port)],
"(_socket, host, port): return _socket.getnameinfo((host, port), 0)")
assert space.unwrap(w_l) == info
sockaddr = space.newtuple([space.wrap('mail.python.org'), space.wrap(0)])
space.raises_w(get_error(space, 'error'), space.appexec,
[w_socket, sockaddr, space.wrap(0)],
"(_socket, sockaddr, flags): return _socket.getnameinfo(sockaddr, flags)")
if socket.has_ipv6:
sockaddr = space.newtuple([space.wrap('::1'), space.wrap(0),
space.wrap(0xffffffff)])
space.raises_w(space.w_OverflowError, space.appexec,
[w_socket, sockaddr, space.wrap(0)],
"(_socket, sockaddr, flags): return _socket.getnameinfo(sockaddr, flags)")
def test_timeout():
space.appexec([w_socket, space.wrap(25.4)],
"(_socket, timeout): _socket.setdefaulttimeout(timeout)")
w_t = space.appexec([w_socket],
"(_socket): return _socket.getdefaulttimeout()")
assert space.unwrap(w_t) == 25.4
space.appexec([w_socket, space.w_None],
"(_socket, timeout): _socket.setdefaulttimeout(timeout)")
w_t = space.appexec([w_socket],
"(_socket): return _socket.getdefaulttimeout()")
assert space.unwrap(w_t) is None
# XXX also need tests for other connection and timeout errors
class AppTestSocket:
spaceconfig = dict(usemodules=['_socket', '_weakref', 'struct', 'select',
'unicodedata'])
def setup_class(cls):
cls.space = space
cls.w_udir = space.wrap(str(udir))
def teardown_class(cls):
if not cls.runappdirect:
cls.space.sys.getmodule('_socket').shutdown(cls.space)
def test_module(self):
import _socket
assert _socket.socket.__name__ == 'socket'
assert _socket.socket.__module__ == '_socket'
def test_overflow_errors(self):
import _socket
raises(OverflowError, _socket.getservbyport, -1)
raises(OverflowError, _socket.getservbyport, 65536)
def test_ntoa_exception(self):
import _socket
raises(_socket.error, _socket.inet_ntoa, b"ab")
def test_aton_exceptions(self):
import _socket
tests = ["127.0.0.256", "127.0.0.255555555555555555", "127.2b.0.0",
"127.2.0.0.1", "127.2.0."]
for ip in tests:
raises(_socket.error, _socket.inet_aton, ip)
def test_ntop_exceptions(self):
import _socket
if not hasattr(_socket, 'inet_ntop'):
skip('No socket.inet_pton on this platform')
for family, packed, exception in \
[(_socket.AF_INET + _socket.AF_INET6, b"", _socket.error),
(_socket.AF_INET, b"a", ValueError),
(_socket.AF_INET6, b"a", ValueError),
(_socket.AF_INET, "aa\u2222a", TypeError)]:
raises(exception, _socket.inet_ntop, family, packed)
def test_pton_exceptions(self):
import _socket
if not hasattr(_socket, 'inet_pton'):
skip('No socket.inet_pton on this platform')
tests = [
(_socket.AF_INET + _socket.AF_INET6, ""),
(_socket.AF_INET, "127.0.0.256"),
(_socket.AF_INET, "127.0.0.255555555555555555"),
(_socket.AF_INET, "127.2b.0.0"),
(_socket.AF_INET, "127.2.0.0.1"),
(_socket.AF_INET, "127.2..0"),
(_socket.AF_INET6, "127.0.0.1"),
(_socket.AF_INET6, "1::2::3"),
(_socket.AF_INET6, "1:1:1:1:1:1:1:1:1"),
(_socket.AF_INET6, "1:1:1:1:1:1:1:1::"),
(_socket.AF_INET6, "1:1:1::1:1:1:1:1"),
(_socket.AF_INET6, "1::22222:1"),
(_socket.AF_INET6, "1::eg"),
]
for family, ip in tests:
raises(_socket.error, _socket.inet_pton, family, ip)
def test_newsocket_error(self):
import _socket
raises(_socket.error, _socket.socket, 10001, _socket.SOCK_STREAM, 0)
def test_socket_fileno(self):
import _socket
s = _socket.socket(_socket.AF_INET, _socket.SOCK_STREAM, 0)
assert s.fileno() > -1
assert isinstance(s.fileno(), int)
def test_socket_repr(self):
import _socket
s = _socket.socket(_socket.AF_INET, _socket.SOCK_STREAM)
try:
expected = ('<socket object, fd=%s, family=%s, type=%s, proto=%s>'
% (s.fileno(), s.family, s.type, s.proto))
assert repr(s) == expected
finally:
s.close()
expected = ('<socket object, fd=-1, family=%s, type=%s, proto=%s>'
% (s.family, s.type, s.proto))
assert repr(s) == expected
def test_socket_close(self):
import _socket, os
s = _socket.socket(_socket.AF_INET, _socket.SOCK_STREAM, 0)
fileno = s.fileno()
assert s.fileno() >= 0
s.close()
assert s.fileno() < 0
s.close()
if os.name != 'nt':
raises(OSError, os.close, fileno)
def test_socket_close_error(self):
import _socket, os
if os.name == 'nt':
skip("Windows sockets are not files")
s = _socket.socket(_socket.AF_INET, _socket.SOCK_STREAM, 0)
os.close(s.fileno())
s.close()
def test_socket_connect(self):
import _socket, os
s = _socket.socket(_socket.AF_INET, _socket.SOCK_STREAM, 0)
# it would be nice to have a test which works even if there is no
# network connection. However, this one is "good enough" for now. Skip
# it if there is no connection.
try:
s.connect(("www.python.org", 80))
except _socket.gaierror as ex:
skip("GAIError - probably no connection: %s" % str(ex.args))
name = s.getpeername() # Will raise socket.error if not connected
assert name[1] == 80
s.close()
def test_socket_connect_ex(self):
import _socket
s = _socket.socket(_socket.AF_INET, _socket.SOCK_STREAM, 0)
# The following might fail if the DNS redirects failed requests to a
# catch-all address (i.e. opendns).
# Make sure we get an app-level error, not an interp one.
raises(_socket.gaierror, s.connect_ex, ("wrong.invalid", 80))
s.close()
def test_socket_connect_typeerrors(self):
tests = [
"",
"80",
("80",),
("80", "80"),
(80, 80),
]
import _socket
s = _socket.socket(_socket.AF_INET, _socket.SOCK_STREAM, 0)
for args in tests:
raises((TypeError, ValueError), s.connect, args)
s.close()
def test_bigport(self):
import _socket
s = _socket.socket()
exc = raises(OverflowError, s.connect, ("localhost", -1))
assert "port must be 0-65535." in str(exc.value)
exc = raises(OverflowError, s.connect, ("localhost", 1000000))
assert "port must be 0-65535." in str(exc.value)
s = _socket.socket(_socket.AF_INET6)
exc = raises(OverflowError, s.connect, ("::1", 1234, 1048576))
assert "flowinfo must be 0-1048575." in str(exc.value)
def test_NtoH(self):
import sys
import _socket as socket
# This checks that htons etc. are their own inverse,
# when looking at the lower 16 or 32 bits. It also
# checks that we get OverflowErrors when calling with -1,
# or (for XtoXl()) with too large values. For XtoXs()
# large values are silently truncated instead, like CPython.
sizes = {socket.htonl: 32, socket.ntohl: 32,
socket.htons: 16, socket.ntohs: 16}
for func, size in sizes.items():
mask = (1 << size) - 1
for i in (0, 1, 0xffff, 0xffff0000, 2, 0x01234567, 0x76543210):
assert i & mask == func(func(i&mask)) & mask
swapped = func(mask)
assert swapped & mask == mask
raises(OverflowError, func, -1)
if size > 16: # else, values too large are ignored
raises(OverflowError, func, 2 ** size)
def test_newsocket(self):
import socket
s = socket.socket()
def test_subclass(self):
from _socket import socket
class MySock(socket):
blah = 123
s = MySock()
assert s.blah == 123
def test_getsetsockopt(self):
import _socket as socket
import struct
# A socket should start with reuse == 0
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
reuse = s.getsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR)
assert reuse == 0
#
raises(TypeError, s.setsockopt, socket.SOL_SOCKET,
socket.SO_REUSEADDR, 2 ** 31)
raises(TypeError, s.setsockopt, socket.SOL_SOCKET,
socket.SO_REUSEADDR, 2 ** 32 + 1)
assert s.getsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR) == 0
#
s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
reuse = s.getsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR)
assert reuse != 0
# String case
intsize = struct.calcsize('i')
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
reusestr = s.getsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR,
intsize)
(reuse,) = struct.unpack('i', reusestr)
assert reuse == 0
reusestr = struct.pack('i', 1)
s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, reusestr)
reusestr = s.getsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR,
intsize)
(reuse,) = struct.unpack('i', reusestr)
assert reuse != 0
def test_getsetsockopt_zero(self):
# related to issue #2561: when specifying the buffer size param:
# if 0 or None, should return the setted value,
# otherwise an empty buffer of the specified size
import _socket
s = _socket.socket()
assert s.getsockopt(_socket.IPPROTO_TCP, _socket.TCP_NODELAY, 0) == 0
ret = s.getsockopt(_socket.IPPROTO_TCP, _socket.TCP_NODELAY, 2)
if len(ret) == 1:
# win32 returns a byte-as-bool
assert ret == b'\x00'
else:
assert ret == b'\x00\x00'
s.setsockopt(_socket.IPPROTO_TCP, _socket.TCP_NODELAY, True)
assert s.getsockopt(_socket.IPPROTO_TCP, _socket.TCP_NODELAY, 0) == 1
s.setsockopt(_socket.IPPROTO_TCP, _socket.TCP_NODELAY, 1)
assert s.getsockopt(_socket.IPPROTO_TCP, _socket.TCP_NODELAY, 0) == 1
def test_getsockopt_bad_length(self):
import _socket
s = _socket.socket()
buf = s.getsockopt(_socket.IPPROTO_TCP, _socket.TCP_NODELAY, 1024)
if len(buf) == 1:
# win32 returns a byte-as-bool
assert buf == b'\x00'
else:
assert buf == b'\x00' * 4
raises(_socket.error, s.getsockopt,
_socket.IPPROTO_TCP, _socket.TCP_NODELAY, 1025)
raises(_socket.error, s.getsockopt,
_socket.IPPROTO_TCP, _socket.TCP_NODELAY, -1)
def test_socket_ioctl(self):
import _socket, sys
if sys.platform != 'win32':
skip("win32 only")
assert hasattr(_socket.socket, 'ioctl')
assert hasattr(_socket, 'SIO_RCVALL')
assert hasattr(_socket, 'RCVALL_ON')
assert hasattr(_socket, 'RCVALL_OFF')
assert hasattr(_socket, 'SIO_KEEPALIVE_VALS')
s = _socket.socket()
raises(ValueError, s.ioctl, -1, None)
s.ioctl(_socket.SIO_KEEPALIVE_VALS, (1, 100, 100))
def test_dup(self):
import _socket as socket, os
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.bind(('localhost', 0))
fd = socket.dup(s.fileno())
assert s.fileno() != fd
assert os.get_inheritable(s.fileno()) is False
assert os.get_inheritable(fd) is False
os.close(fd)
s.close()
def test_dup_error(self):
import _socket
raises(_socket.error, _socket.dup, 123456)
def test_recvmsg_issue2649(self):
import _socket as socket
listener = socket.socket(family=socket.AF_INET6, type=socket.SOCK_DGRAM)
listener.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
listener.bind(('::1', 1234))
s = socket.socket(family=socket.AF_INET6, type=socket.SOCK_DGRAM)
IPV6_RECVERR = 25
s.setsockopt(socket.IPPROTO_IPV6, IPV6_RECVERR, 1)
s.sendto(b'x', ('::1', 1234))
try:
queue = s.recvmsg(1024, 1024, socket.MSG_ERRQUEUE)
except BlockingIOError as e:
assert True
def test_buffer(self):
# Test that send/sendall/sendto accept a buffer as arg
import _socket, os
s = _socket.socket(_socket.AF_INET, _socket.SOCK_STREAM, 0)
# XXX temporarily we use python.org to test, will have more robust tests
# in the absence of a network connection later when more parts of the
# socket API are implemented. Currently skip the test if there is no
# connection.
try:
s.connect(("www.python.org", 80))
except _socket.gaierror as ex:
skip("GAIError - probably no connection: %s" % str(ex.args))
exc = raises(TypeError, s.send, None)
assert str(exc.value).startswith("a bytes-like object is required,")
assert s.send(memoryview(b'')) == 0
assert s.sendall(memoryview(b'')) is None
exc = raises(TypeError, s.send, '')
assert str(exc.value).startswith("a bytes-like object is required,")
raises(TypeError, s.sendall, '')
s.close()
s = _socket.socket(_socket.AF_INET, _socket.SOCK_DGRAM, 0)
s.sendto(memoryview(b''), ('localhost', 9)) # Send to discard port.
s.close()
def test_listen_default(self):
import _socket
_socket.socket().listen()
assert isinstance(_socket.SOMAXCONN, int)
def test_unix_socket_connect(self):
import _socket, os
if not hasattr(_socket, 'AF_UNIX'):
skip('AF_UNIX not supported.')
oldcwd = os.getcwd()
os.chdir(self.udir)
try:
for sockpath in ['app_test_unix_socket_connect',
b'b_app_test_unix_socket_connect',
bytearray(b'ba_app_test_unix_socket_connect')]:
serversock = _socket.socket(_socket.AF_UNIX)
serversock.bind(sockpath)
serversock.listen(1)
clientsock = _socket.socket(_socket.AF_UNIX)
clientsock.connect(sockpath)
fileno, addr = serversock._accept()
s = _socket.socket(fileno=fileno)
assert not addr
s.send(b'X')
data = clientsock.recv(100)
assert data == b'X'
clientsock.send(b'Y')
data = s.recv(100)
assert data == b'Y'
clientsock.close()
s.close()
finally:
os.chdir(oldcwd)
def test_automatic_shutdown(self):
# doesn't really test anything, but at least should not explode
# in close_all_sockets()
import _socket
self.foo = _socket.socket()
def test_subclass_init(self):
# Socket is not created in __new__, but in __init__.
import socket
class Socket_IPV6(socket.socket):
def __init__(self):
socket.socket.__init__(self, family=socket.AF_INET6)
assert Socket_IPV6().family == socket.AF_INET6
def test_subclass_noinit(self):
from _socket import socket
class MySock(socket):
def __init__(self, *args):
pass # don't call super
s = MySock()
assert s.type == 0
assert s.proto == 0
assert s.family == 0
assert s.fileno() < 0
raises(OSError, s.bind, ('localhost', 0))
def test_dealloc_warn(self):
import _socket
import gc
import warnings
s = _socket.socket(_socket.AF_INET, _socket.SOCK_STREAM)
r = repr(s)
gc.collect()
with warnings.catch_warnings(record=True) as w:
warnings.simplefilter('always')
s = None
gc.collect()
assert len(w) == 1, [str(warning) for warning in w]
assert r in str(w[0])
def test_invalid_fd(self):
import _socket
raises(ValueError, _socket.socket, fileno=-1)
def test_socket_non_inheritable(self):
import _socket, os
s1 = _socket.socket()
assert os.get_inheritable(s1.fileno()) is False
s1.close()
def test_socketpair_non_inheritable(self):
import _socket, os
if not hasattr(_socket, 'socketpair'):
skip("no socketpair")
s1, s2 = _socket.socketpair()
assert os.get_inheritable(s1.fileno()) is False
assert os.get_inheritable(s2.fileno()) is False
s1.close()
s2.close()
def test_hostname_unicode(self):
import _socket
domain = u"испытание.pythontest.net"
_socket.gethostbyname(domain)
_socket.gethostbyname_ex(domain)
_socket.getaddrinfo(domain, 0, _socket.AF_UNSPEC, _socket.SOCK_STREAM)
s = _socket.socket(_socket.AF_INET, _socket.SOCK_STREAM)
s.connect((domain, 80))
s.close()
raises(TypeError, s.connect, (domain + '\x00', 80))
class AppTestNetlink:
def setup_class(cls):
if not hasattr(os, 'getpid'):
pytest.skip("AF_NETLINK needs os.getpid()")
if cls.runappdirect:
import _socket
w_ok = hasattr(_socket, 'AF_NETLINK')
else:
w_ok = space.appexec([], "(): import _socket; " +
"return hasattr(_socket, 'AF_NETLINK')")
if not space.is_true(w_ok):
pytest.skip("no AF_NETLINK on this platform")
cls.space = space
def test_connect_to_kernel_netlink_routing_socket(self):
import _socket, os
s = _socket.socket(_socket.AF_NETLINK, _socket.SOCK_DGRAM,
_socket.NETLINK_ROUTE)
assert s.getsockname() == (0, 0)
s.bind((0, 0))
a, b = s.getsockname()
assert a == os.getpid()
assert b == 0
class AppTestPacket:
def setup_class(cls):
if not hasattr(os, 'getuid') or os.getuid() != 0:
pytest.skip("AF_PACKET needs to be root for testing")
if cls.runappdirect:
import _socket
w_ok = hasattr(_socket, 'AF_PACKET')
else:
w_ok = space.appexec([], "(): import _socket; " +
"return hasattr(_socket, 'AF_PACKET')")
if not space.is_true(w_ok):
pytest.skip("no AF_PACKET on this platform")
cls.space = space
def test_convert_between_tuple_and_sockaddr_ll(self):
import _socket
s = _socket.socket(_socket.AF_PACKET, _socket.SOCK_RAW)
assert s.getsockname() == ('', 0, 0, 0, b''), 's.getsockname %s' % str(s.getsockname())
s.bind(('lo', 123))
a, b, c, d, e = s.getsockname()
assert (a, b, c) == ('lo', 123, 0)
assert isinstance(d, int)
assert isinstance(e, bytes)
assert 0 <= len(e) <= 8
s.close()
class AppTestSocketTCP:
HOST = 'localhost'
spaceconfig = {'usemodules': ['_socket', 'array', 'select']}
def setup_method(self, method):
w_HOST = self.space.wrap(self.HOST)
self.w_serv = self.space.appexec([w_HOST],
'''(HOST):
import _socket
serv = _socket.socket(_socket.AF_INET, _socket.SOCK_STREAM)
serv.bind((HOST, 0))
serv.listen(1)
return serv
''')
def teardown_method(self, method):
if hasattr(self, 'w_serv'):
self.space.appexec([self.w_serv], '(serv): serv.close()')
self.w_serv = None
def test_timeout(self):
from _socket import timeout
def raise_timeout():
self.serv.settimeout(1.0)
self.serv._accept()
raises(timeout, raise_timeout)
def test_timeout_zero(self):
from _socket import error
def raise_error():
self.serv.settimeout(0.0)
foo = self.serv._accept()
raises(error, raise_error)
def test_recv_send_timeout(self):
from _socket import socket, timeout, SOL_SOCKET, SO_RCVBUF, SO_SNDBUF
cli = socket()
cli.settimeout(1.0)
cli.connect(self.serv.getsockname())
fileno, addr = self.serv._accept()
t = socket(fileno=fileno)
# test recv() timeout
t.send(b'*')
buf = cli.recv(100)
assert buf == b'*'
raises(timeout, cli.recv, 100)
# test that send() works
count = cli.send(b'!')
assert count == 1
buf = t.recv(1)
assert buf == b'!'
# test that sendall() works
count = cli.sendall(b'?')
assert count is None
buf = t.recv(1)
assert buf == b'?'
# speed up filling the buffers
t.setsockopt(SOL_SOCKET, SO_RCVBUF, 4096)
cli.setsockopt(SOL_SOCKET, SO_SNDBUF, 4096)
# test send() timeout
count = 0
try:
while 1:
count += cli.send(b'foobar' * 70)
assert count < 100000
except timeout:
pass
t.recv(count)
# test sendall() timeout
try:
while 1:
cli.sendall(b'foobar' * 70)
except timeout:
pass
# done
cli.close()
t.close()
def test_recv_into(self):
import socket
import array
MSG = b'dupa was here\n'
cli = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
cli.connect(self.serv.getsockname())
fileno, addr = self.serv._accept()
conn = socket.socket(fileno=fileno)
buf = memoryview(MSG)
conn.send(buf)
buf = array.array('b', b' ' * 1024)
nbytes = cli.recv_into(buf)
assert nbytes == len(MSG)
msg = buf.tobytes()[:len(MSG)]
assert msg == MSG
conn.send(MSG)
buf = bytearray(1024)
nbytes = cli.recv_into(memoryview(buf))
assert nbytes == len(MSG)
msg = buf[:len(MSG)]
assert msg == MSG
def test_recvfrom_into(self):
import socket
import array
MSG = b'dupa was here\n'
cli = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
cli.connect(self.serv.getsockname())
fileno, addr = self.serv._accept()
conn = socket.socket(fileno=fileno)
buf = memoryview(MSG)
conn.send(buf)
buf = array.array('b', b' ' * 1024)
nbytes, addr = cli.recvfrom_into(buf)
assert nbytes == len(MSG)
msg = buf.tobytes()[:len(MSG)]
assert msg == MSG
conn.send(MSG)
buf = bytearray(1024)
nbytes, addr = cli.recvfrom_into(memoryview(buf))
assert nbytes == len(MSG)
msg = buf[:len(MSG)]
assert msg == MSG
conn.send(MSG)
buf = bytearray(8)
exc = raises(ValueError, cli.recvfrom_into, buf, 1024)
assert str(exc.value) == "nbytes is greater than the length of the buffer"
def test_family(self):
import socket
cli = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
assert cli.family == socket.AF_INET
def test_accept_non_inheritable(self):
import _socket, os
cli = _socket.socket()
cli.connect(self.serv.getsockname())
fileno, addr = self.serv._accept()
assert os.get_inheritable(fileno) is False
os.close(fileno)
cli.close()
def test_recv_into_params(self):
import os
import _socket
cli = _socket.socket()
cli.connect(self.serv.getsockname())
fileno, addr = self.serv._accept()
os.write(fileno, b"abcdef")
#
m = memoryview(bytearray(5))
raises(ValueError, cli.recv_into, m, -1)
raises(ValueError, cli.recv_into, m, 6)
cli.recv_into(m,5)
assert m.tobytes() == b"abcde"
os.close(fileno)
cli.close()
def test_bytearray_name(self):
import _socket as socket
s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
s.bind(bytearray(b"\x00python\x00test\x00"))
assert s.getsockname() == b"\x00python\x00test\x00"
class AppTestErrno:
spaceconfig = {'usemodules': ['_socket', 'select']}
def test_errno(self):
from socket import socket, AF_INET, SOCK_STREAM, error
import errno
s = socket(AF_INET, SOCK_STREAM)
exc = raises(error, s.accept)
assert isinstance(exc.value, error)
assert isinstance(exc.value, IOError)
# error is EINVAL, or WSAEINVAL on Windows
assert exc.value.errno == getattr(errno, 'WSAEINVAL', errno.EINVAL)
assert isinstance(exc.value.strerror, str)
|