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
|
# -*- coding: iso-8859-1 -*-
import codecs
import pytest
import sys
def test_stdin_exists(space):
space.sys.get('stdin')
space.sys.get('__stdin__')
def test_stdout_exists(space):
space.sys.get('stdout')
space.sys.get('__stdout__')
def test_stdout_flush_at_shutdown(space):
w_sys = space.sys
w_read = space.appexec([], """():
import sys
from io import BytesIO, TextIOWrapper
class BadWrite(BytesIO):
def write(self, data):
raise IOError
buf = BytesIO()
def read():
buf.seek(0)
return buf.read()
sys.stdout = TextIOWrapper(BadWrite())
sys.stderr = TextIOWrapper(buf)
return read""")
try:
space.call_method(w_sys.get('stdout'), 'write', space.wrap('x'))
# called at shtudown
w_sys.flush_std_files(space)
msg = space.bytes_w(space.call_function(w_read))
assert 'Exception ignored in:' in msg and '\nOSError' in msg
finally:
space.setattr(w_sys, space.wrap('stdout'), w_sys.get('__stdout__'))
space.setattr(w_sys, space.wrap('stderr'), w_sys.get('__stderr__'))
def test_stdio_missing_at_shutdown(space):
w_sys = space.sys
try:
space.delattr(w_sys, space.wrap('stdout'))
space.delattr(w_sys, space.wrap('stderr'))
# called at shtudown
w_sys.flush_std_files(space)
finally:
space.setattr(w_sys, space.wrap('stdout'), w_sys.get('__stdout__'))
space.setattr(w_sys, space.wrap('stderr'), w_sys.get('__stderr__'))
class AppTestAppSysTests:
spaceconfig = {
"usemodules": ["thread"],
}
def setup_class(cls):
cls.w_appdirect = cls.space.wrap(cls.runappdirect)
def test_sys_in_modules(self):
import sys
modules = sys.modules
assert 'sys' in modules, ( "An entry for sys "
"is not in sys.modules.")
sys2 = sys.modules['sys']
assert sys is sys2, "import sys is not sys.modules[sys]."
def test_builtin_in_modules(self):
import sys
modules = sys.modules
assert 'builtins' in modules, ( "An entry for builtins "
"is not in sys.modules.")
import builtins
builtin2 = sys.modules['builtins']
assert builtins is builtin2, ( "import builtins "
"is not sys.modules[builtins].")
def test_builtin_module_names(self):
import sys
names = sys.builtin_module_names
assert 'sys' in names, (
"sys is not listed as a builtin module.")
assert 'builtins' in names, (
"builtins is not listed as a builtin module.")
assert 'exceptions' not in names, (
"exceptions module shouldn't exist")
def test_sys_exc_info(self):
try:
raise Exception
except Exception as exc:
e = exc
import sys
exc_type,exc_val,tb = sys.exc_info()
try:
raise Exception # 6 lines below the previous one
except Exception as exc:
e2 = exc
exc_type2,exc_val2,tb2 = sys.exc_info()
assert exc_type ==Exception
assert exc_val ==e
assert exc_type2 ==Exception
assert exc_val2 ==e2
assert tb2.tb_lineno - tb.tb_lineno == 6
def test_exc_info_normalization(self):
import sys
try:
1/0
except ZeroDivisionError:
etype, val, tb = sys.exc_info()
assert isinstance(val, etype)
else:
raise AssertionError("ZeroDivisionError not caught")
def test_io(self):
import sys, io
assert isinstance(sys.__stdout__, io.IOBase)
assert isinstance(sys.__stderr__, io.IOBase)
assert isinstance(sys.__stdin__, io.IOBase)
assert sys.__stderr__.errors == 'backslashreplace'
#assert sys.__stdin__.name == "<stdin>"
#assert sys.__stdout__.name == "<stdout>"
#assert sys.__stderr__.name == "<stderr>"
if self.appdirect and not isinstance(sys.stdin, io.IOBase):
return
assert isinstance(sys.stdout, io.IOBase)
assert isinstance(sys.stderr, io.IOBase)
assert isinstance(sys.stdin, io.IOBase)
assert sys.stderr.errors == 'backslashreplace'
def test_getfilesystemencoding(self):
import sys
enc = sys.getfilesystemencoding()
# always utf-8
assert enc == "utf-8"
def test_float_info(self):
import sys
fi = sys.float_info
assert isinstance(fi.epsilon, float)
assert isinstance(fi.dig, int)
assert isinstance(fi.mant_dig, int)
assert isinstance(fi.max, float)
assert isinstance(fi.max_exp, int)
assert isinstance(fi.max_10_exp, int)
assert isinstance(fi.min, float)
assert isinstance(fi.min_exp, int)
assert isinstance(fi.min_10_exp, int)
assert isinstance(fi.radix, int)
assert isinstance(fi.rounds, int)
def test_int_info(self):
import sys
li = sys.int_info
assert isinstance(li.bits_per_digit, int)
assert isinstance(li.sizeof_digit, int)
def test_sys_exit(self):
import sys
exc = raises(SystemExit, sys.exit)
assert exc.value.code is None
exc = raises(SystemExit, sys.exit, 0)
assert exc.value.code == 0
exc = raises(SystemExit, sys.exit, 1)
assert exc.value.code == 1
exc = raises(SystemExit, sys.exit, (1, 2, 3))
assert exc.value.code == (1, 2, 3)
def test_hash_info(self):
import sys
li = sys.hash_info
assert isinstance(li.width, int)
assert isinstance(li.modulus, int)
assert isinstance(li.inf, int)
assert isinstance(li.nan, int)
assert isinstance(li.imag, int)
assert isinstance(li.algorithm, str)
assert str(li).startswith('sys.hash_info(')
def test_sys_flags(self):
import sys
# sanity check
assert sys.flags.optimize is not None
# make sure the flags are read-only
exc = raises(AttributeError, 'sys.flags.optimize = 3')
assert 'readonly' in str(exc.value)
raises(AttributeError, 'sys.flags.not_a_sys_flag = 2')
def test_sys_flags_warn_default_encoding(self):
import sys
sys.flags.warn_default_encoding # check it exists
def test_sys_exit(self):
import sys
exc = raises(SystemExit, sys.exit)
assert exc.value.code is None
exc = raises(SystemExit, sys.exit, 0)
assert exc.value.code == 0
exc = raises(SystemExit, sys.exit, 1)
assert exc.value.code == 1
exc = raises(SystemExit, sys.exit, (1, 2, 3))
assert exc.value.code == (1, 2, 3)
def test_sys_thread_info(self):
import sys
info = sys.thread_info
assert isinstance(info.name, str)
assert isinstance(info.lock, (str, type(None)))
assert isinstance(info.version, (str, type(None)))
def test_sys_flags_dev_mode_is_bool(self):
import sys
assert type(sys.flags.dev_mode) is bool
def test_multiarch(self):
import sys
multiarch = ''
try:
multiarch = sys.implementation._multiarch
except AttributeError:
assert sys.platform in ('win32',)
else:
assert 'linux' in multiarch or 'darwin' in multiarch
def test_audit(self):
import sys
sys.audit("os.chdir", "bla", 1, 2, 12) # does not crash
@pytest.mark.skipif(sys.platform=="win32", reason="platlibdir is posix only")
def test_platlibdir(self):
if self.appdirect:
skip("only relevant for untranslated tests")
import sys
assert sys.platlibdir == "lib" # default
@pytest.mark.skipif(sys.platform=="win32", reason="platlibdir is posix only")
class AppTestPlatlibdirNotDefault:
spaceconfig = {
"platlibdir": "lib64"
}
def setup_class(cls):
cls.w_appdirect = cls.space.wrap(cls.runappdirect)
def test_platlibdir(self):
if self.appdirect:
skip("only relevant for untranslated tests")
import sys
assert sys.platlibdir == "lib64"
class AppTestSysModulePortedFromCPython:
spaceconfig = {
"usemodules": ["struct"],
}
def setup_class(cls):
cls.w_appdirect = cls.space.wrap(cls.runappdirect)
def test_original_displayhook(self):
import sys, _io, builtins
savestdout = sys.stdout
out = _io.StringIO()
sys.stdout = out
dh = sys.__displayhook__
raises(TypeError, dh)
if hasattr(builtins, "_"):
del builtins._
dh(None)
assert out.getvalue() == ""
assert not hasattr(builtins, "_")
dh("hello")
assert out.getvalue() == "'hello'\n"
assert builtins._ == "hello"
del sys.stdout
raises(RuntimeError, dh, 42)
sys.stdout = savestdout
def test_original_displayhook_unencodable(self):
import sys, _io
out = _io.BytesIO()
savestdout = sys.stdout
sys.stdout = _io.TextIOWrapper(out, encoding='ascii')
sys.__displayhook__("a=\xe9 b=\uDC80 c=\U00010000 d=\U0010FFFF")
assert (out.getvalue() ==
b"'a=\\xe9 b=\\udc80 c=\\U00010000 d=\\U0010ffff'")
sys.stdout = savestdout
def test_lost_displayhook(self):
import sys
olddisplayhook = sys.displayhook
del sys.displayhook
code = compile("42", "<string>", "single")
raises(RuntimeError, eval, code)
sys.displayhook = olddisplayhook
def test_custom_displayhook(self):
import sys
olddisplayhook = sys.displayhook
def baddisplayhook(obj):
raise ValueError
sys.displayhook = baddisplayhook
code = compile("42", "<string>", "single")
raises(ValueError, eval, code)
sys.displayhook = olddisplayhook
def test_original_excepthook(self):
import sys, _io
savestderr = sys.stderr
err = _io.StringIO()
sys.stderr = err
eh = sys.__excepthook__
raises(TypeError, eh)
try:
raise ValueError(42)
except ValueError as exc:
eh(*sys.exc_info())
assert err.getvalue().endswith("ValueError: 42\n")
eh(1, '1', 1)
expected = ("TypeError: print_exception(): Exception expected for "
"value, str found")
assert expected in err.getvalue()
sys.stderr = savestderr
def test_excepthook_failsafe_path(self):
import traceback
original_print_exception = traceback.print_exception
import sys, _io
savestderr = sys.stderr
err = _io.StringIO()
sys.stderr = err
try:
traceback.print_exception = "foo"
eh = sys.__excepthook__
try:
raise ValueError(42)
except ValueError as exc:
eh(*sys.exc_info())
finally:
traceback.print_exception = original_print_exception
sys.stderr = savestderr
assert "ValueError: 42\n" in err.getvalue()
def test_original_excepthook_pypy_encoding(self):
import sys
if '__pypy__' not in sys.builtin_module_names:
skip("only on PyPy")
savestderr = sys.stderr
class MyStringIO(object):
def __init__(self):
self.output = []
def write(self, s):
assert isinstance(s, str)
self.output.append(s)
def getvalue(self):
return ''.join(self.output)
for input in ("\u013a", "\u1111"):
err = MyStringIO()
err.encoding = 'iso-8859-2'
sys.stderr = err
eh = sys.__excepthook__
try:
raise ValueError(input)
except ValueError as exc:
eh(*sys.exc_info())
sys.stderr = savestderr
print(ascii(err.getvalue()))
assert err.getvalue().endswith("ValueError: %s\n" % input)
def test_excepthook_flushes_stdout(self): r"""
import sys, io
savestdout = sys.stdout
out = io.StringIO()
sys.stdout = out
eh = sys.__excepthook__
try:
raise ValueError(42)
except ValueError as exc:
print("hello") # with end-of-line
eh(*sys.exc_info())
try:
raise ValueError(42)
except ValueError as exc:
print(123, 456, end="") # no end-of-line here
eh(*sys.exc_info())
sys.stdout = savestdout
assert out.getvalue() == 'hello\n123 456' # no final \n added in 3.x
"""
def test_tracebacklimit_excepthook(self):
import sys
savestderr = sys.stderr
assert not hasattr(sys, "tracebacklimit")
eh = sys.__excepthook__
def f1():
f2()
def f2():
f3()
def f3():
raise ValueError(42)
def get_error_with_tracebacklimit(limit):
import io
sys.tracebacklimit = limit
sys.stderr = err = io.StringIO()
try:
f1()
except ValueError:
eh(*sys.exc_info())
return err.getvalue()
# should be removed by the limit
msg = get_error_with_tracebacklimit(2)
assert "f1" not in msg
assert "f2" in msg
assert "f3" in msg
msg = get_error_with_tracebacklimit(0)
assert "Traceback (most recent call last):" not in msg
assert "ValueError" in msg
msg = get_error_with_tracebacklimit(-1)
assert "Traceback (most recent call last):" not in msg
assert "ValueError" in msg
sys.stderr = savestderr
del sys.tracebacklimit
# FIXME: testing the code for a lost or replaced excepthook in
# Python/pythonrun.c::PyErr_PrintEx() is tricky.
def test_exit(self):
import sys
raises(TypeError, sys.exit, 42, 42)
# call without argument
try:
sys.exit(0)
except SystemExit as exc:
assert exc.code == 0
except:
raise AssertionError("wrong exception")
else:
raise AssertionError("no exception")
# call with tuple argument with one entry
# entry will be unpacked
try:
sys.exit(42)
except SystemExit as exc:
assert exc.code == 42
except:
raise AssertionError("wrong exception")
else:
raise AssertionError("no exception")
# call with integer argument
try:
sys.exit((42,))
except SystemExit as exc:
assert exc.code == 42
except:
raise AssertionError("wrong exception")
else:
raise AssertionError("no exception")
# call with string argument
try:
sys.exit("exit")
except SystemExit as exc:
assert exc.code == "exit"
except:
raise AssertionError("wrong exception")
else:
raise AssertionError("no exception")
# call with tuple argument with two entries
try:
sys.exit((17, 23))
except SystemExit as exc:
assert exc.code == (17, 23)
except:
raise AssertionError("wrong exception")
else:
raise AssertionError("no exception")
def test_getdefaultencoding(self):
import sys
raises(TypeError, sys.getdefaultencoding, 42)
# can't check more than the type, as the user might have changed it
assert isinstance(sys.getdefaultencoding(), str)
# testing sys.settrace() is done in test_trace.py
# testing sys.setprofile() is done in test_profile.py
def test_setcheckinterval(self):
import sys
raises(TypeError, sys.setcheckinterval)
orig = sys.getcheckinterval()
for n in 0, 100, 120, orig: # orig last to restore starting state
sys.setcheckinterval(n)
assert sys.getcheckinterval() == n
def test_setswitchinterval(self):
import sys
raises(TypeError, sys.setswitchinterval)
orig = sys.getswitchinterval()
for n in 1e-6, 0.1, orig: # orig last to restore starting state
sys.setswitchinterval(n)
assert sys.getswitchinterval() == n
raises(ValueError, sys.setswitchinterval, 0.0)
def test_recursionlimit(self):
import sys
raises(TypeError, sys.getrecursionlimit, 42)
oldlimit = sys.getrecursionlimit()
raises(TypeError, sys.setrecursionlimit)
raises(ValueError, sys.setrecursionlimit, -42)
sys.setrecursionlimit(10000)
assert sys.getrecursionlimit() == 10000
sys.setrecursionlimit(oldlimit)
raises(OverflowError, sys.setrecursionlimit, 1<<31)
def test_recursionlimit_toolow(self):
import sys
def callatlevel(l):
if l > 0:
callatlevel(l - 1)
else:
sys.setrecursionlimit(1)
with raises(RecursionError):
callatlevel(500)
def test_getwindowsversion(self):
import sys
if hasattr(sys, "getwindowsversion"):
v = sys.getwindowsversion()
if '__pypy__' in sys.builtin_module_names:
assert isinstance(v, tuple)
assert len(v) == 5
assert isinstance(v[0], int)
assert isinstance(v[1], int)
assert isinstance(v[2], int)
assert isinstance(v[3], int)
assert isinstance(v[4], str)
assert v[0] == v.major
assert v[1] == v.minor
assert v[2] == v.build
assert v[3] == v.platform
assert v[4] == v.service_pack
assert isinstance(v.service_pack_minor, int)
assert isinstance(v.service_pack_major, int)
assert isinstance(v.suite_mask, int)
assert isinstance(v.product_type, int)
# This is how platform.py calls it. Make sure tuple still has 5
# elements
maj, min, buildno, plat, csd = sys.getwindowsversion()
def test_winver(self):
import sys
if hasattr(sys, "winver"):
assert sys.winver == sys.version[:4]
def test_dllhandle(self):
import sys
assert hasattr(sys, 'dllhandle') == (sys.platform == 'win32')
def test_dlopenflags(self):
import sys
if not hasattr(sys, "getdlopenflags"):
skip('{gs}etdlopenflags is not implemented on this platform')
raises(TypeError, sys.getdlopenflags, 42)
oldflags = sys.getdlopenflags()
raises(TypeError, sys.setdlopenflags)
sys.setdlopenflags(oldflags+1)
assert sys.getdlopenflags() == oldflags+1
sys.setdlopenflags(oldflags)
def test_refcount(self):
import sys
if not hasattr(sys, "getrefcount"):
skip('Reference counting is not implemented.')
raises(TypeError, sys.getrefcount)
c = sys.getrefcount(None)
n = None
assert sys.getrefcount(None) == c+1
del n
assert sys.getrefcount(None) == c
if hasattr(sys, "gettotalrefcount"):
assert isinstance(sys.gettotalrefcount(), int)
def test_getframe(self):
import sys
raises(TypeError, sys._getframe, 42, 42)
raises(ValueError, sys._getframe, 2000000000)
assert sys._getframe().f_code.co_name == 'test_getframe'
#assert (
# TestSysModule.test_getframe.im_func.func_code \
# is sys._getframe().f_code
#)
def test_getframe_in_returned_func(self):
import sys
def f():
return g()
def g():
return sys._getframe(0)
frame = f()
assert frame.f_code.co_name == 'g'
assert frame.f_back.f_code.co_name == 'f'
assert frame.f_back.f_back.f_code.co_name == 'test_getframe_in_returned_func'
def test_attributes(self):
import sys
assert sys.__name__ == 'sys'
assert isinstance(sys.modules, dict)
assert isinstance(sys.path, list)
assert isinstance(sys.api_version, int)
assert isinstance(sys.argv, list)
assert sys.byteorder in ("little", "big")
assert isinstance(sys.builtin_module_names, tuple)
assert isinstance(sys.copyright, str)
#assert isinstance(sys.exec_prefix, str) -- not present!
#assert isinstance(sys.executable, str)
assert isinstance(sys.hexversion, int)
assert isinstance(sys.maxsize, int)
assert isinstance(sys.maxunicode, int)
assert isinstance(sys.platform, str)
#assert isinstance(sys.prefix, str) -- not present!
assert isinstance(sys.version, str)
assert isinstance(sys.warnoptions, list)
vi = sys.version_info
if '__pypy__' in sys.builtin_module_names:
assert isinstance(vi, tuple)
assert len(vi) == 5
assert isinstance(vi[0], int)
assert isinstance(vi[1], int)
assert isinstance(vi[2], int)
assert vi[3] in ("alpha", "beta", "candidate", "final")
assert isinstance(vi[4], int)
assert isinstance(sys._framework, str)
def test_implementation(self):
import sys
assert sys.implementation.name == 'pypy'
# This test applies to all implementations equally.
levels = {'alpha': 0xA, 'beta': 0xB, 'candidate': 0xC, 'final': 0xF}
assert sys.implementation.version
assert sys.implementation.hexversion
assert sys.implementation.cache_tag
version = sys.implementation.version
assert version[:2] == (version.major, version.minor)
hexversion = (version.major << 24 | version.minor << 16 |
version.micro << 8 | levels[version.releaselevel] << 4 |
version.serial << 0)
assert sys.implementation.hexversion == hexversion
# PEP 421 requires that .name be lower case.
assert sys.implementation.name == sys.implementation.name.lower()
ns1 = type(sys.implementation)(x=1, y=2, w=3)
assert repr(ns1) == "namespace(w=3, x=1, y=2)"
def test_simplenamespace(self):
import sys
SimpleNamespace = type(sys.implementation)
ns = SimpleNamespace(x=1, y=2, w=3)
#
ns.z = 4
assert ns.__dict__ == dict(x=1, y=2, w=3, z=4)
#
raises(AttributeError, "del ns.spam")
del ns.y
#
assert ns == SimpleNamespace(z=4, x=1, w=3)
assert (ns != SimpleNamespace(z=4, x=1, w=3)) is False
assert (ns == SimpleNamespace(z=4, x=2, w=3)) is False
assert ns != SimpleNamespace(z=4, x=2, w=3)
#
class Foo(SimpleNamespace):
pass
assert ns == Foo(z=4, x=1, w=3)
assert (ns != Foo(z=4, x=1, w=3)) is False
assert (ns == Foo(z=4, x=2, w=3)) is False
assert ns != Foo(z=4, x=2, w=3)
#
class Other:
def __init__(self, x, z, w):
self.x = x
self.z = z
self.w = w
assert (ns == Other(z=4, x=1, w=3)) is False
assert ns != Other(z=4, x=1, w=3)
assert (Foo(z=4, x=1, w=3) == Other(z=4, x=1, w=3)) is False
assert Foo(z=4, x=1, w=3) != Other(z=4, x=1, w=3)
#
class Fake:
__class__ = SimpleNamespace
assert isinstance(Fake(), SimpleNamespace)
assert not issubclass(Fake, SimpleNamespace)
assert (Fake() == SimpleNamespace()) is False
assert SimpleNamespace() != Fake()
def test_pickle_simplenamespace(self):
import pickle, sys
SimpleNamespace = type(sys.implementation)
ns = SimpleNamespace(x=1, y=2, w=3)
copy = pickle.loads(pickle.dumps(ns))
assert copy == ns
def test_reload_doesnt_override_sys_executable(self):
import sys
from imp import reload
if not hasattr(sys, 'executable'): # if not translated
sys.executable = 'from_test_sysmodule'
previous = sys.executable
reload(sys)
assert sys.executable == previous
def test_settrace(self):
import sys
counts = []
def trace(x, y, z):
counts.append(None)
def x():
pass
sys.settrace(trace)
try:
x()
assert sys.gettrace() is trace
finally:
sys.settrace(None)
assert len(counts) == 1
def test_pypy_attributes(self):
import sys
if '__pypy__' not in sys.builtin_module_names:
skip("only on PyPy")
assert isinstance(sys.pypy_objspaceclass, str)
vi = sys.pypy_version_info
assert isinstance(vi, tuple)
assert len(vi) == 5
assert isinstance(vi[0], int)
assert isinstance(vi[1], int)
assert isinstance(vi[2], int)
assert vi[3] in ("alpha", "beta", "candidate", "dev", "final")
assert isinstance(vi[4], int)
def test_allattributes(self):
import sys
sys.__dict__ # check that we don't crash initializing any attribute
def test_float_repr_style(self):
import sys
# If this ever actually becomes a compilation option this test should
# be changed.
assert sys.float_repr_style == "short"
def test_is_finalizing(self):
import sys
assert not sys.is_finalizing()
# xxx should also test when it is True, but maybe not worth the effort
def test_asyncgen_hooks(self):
import sys
old = sys.get_asyncgen_hooks()
assert old.firstiter is None
assert old.finalizer is None
firstiter = lambda *a: None
sys.set_asyncgen_hooks(firstiter=firstiter)
hooks = sys.get_asyncgen_hooks()
assert hooks.firstiter is firstiter
assert hooks[0] is firstiter
assert hooks.finalizer is None
assert hooks[1] is None
finalizer = lambda *a: None
sys.set_asyncgen_hooks(finalizer=finalizer)
hooks = sys.get_asyncgen_hooks()
assert hooks.firstiter is firstiter
assert hooks[0] is firstiter
assert hooks.finalizer is finalizer
assert hooks[1] is finalizer
sys.set_asyncgen_hooks(*old)
cur = sys.get_asyncgen_hooks()
assert cur.firstiter is None
assert cur.finalizer is None
def test_coroutine_origin_tracking_depth(self):
import sys
depth = sys.get_coroutine_origin_tracking_depth()
assert depth == 0
try:
sys.set_coroutine_origin_tracking_depth(6)
depth = sys.get_coroutine_origin_tracking_depth()
assert depth == 6
with raises(ValueError):
sys.set_coroutine_origin_tracking_depth(-5)
finally:
sys.set_coroutine_origin_tracking_depth(0)
class AppTestSysSettracePortedFromCpython(object):
def test_sys_settrace(self):
import sys
class Tracer:
def __init__(self):
self.events = []
def trace(self, frame, event, arg):
self.events.append((frame.f_lineno, event))
return self.trace
def traceWithGenexp(self, frame, event, arg):
(o for o in [1])
self.events.append((frame.f_lineno, event))
return self.trace
def compare_events(line_offset, events, expected_events):
events = [(l - line_offset, e) for (l, e) in events]
assert events == expected_events
def run_test2(func):
tracer = Tracer()
func(tracer.trace)
sys.settrace(None)
compare_events(func.__code__.co_firstlineno,
tracer.events, func.events)
def _settrace_and_return(tracefunc):
sys.settrace(tracefunc)
sys._getframe().f_back.f_trace = tracefunc
def settrace_and_return(tracefunc):
_settrace_and_return(tracefunc)
def _settrace_and_raise(tracefunc):
sys.settrace(tracefunc)
sys._getframe().f_back.f_trace = tracefunc
raise RuntimeError
def settrace_and_raise(tracefunc):
try:
_settrace_and_raise(tracefunc)
except RuntimeError as exc:
pass
settrace_and_raise.events = [(2, 'exception'),
(3, 'line'),
(4, 'line'),
(4, 'return')]
settrace_and_return.events = [(1, 'return')]
run_test2(settrace_and_return)
run_test2(settrace_and_raise)
class AppTestCurrentFramesWithThread:
def test_current_frames(self):
import sys
import _thread
if sys.platform == 'darwin':
skip('test can hang on macos')
# XXX workaround for now: to prevent deadlocks, call
# sys._current_frames() once before starting threads.
# This is an issue in non-translated versions only.
sys._current_frames()
thread_id = _thread.get_ident()
def other_thread():
#print("thread started")
lock2.release()
lock1.acquire()
lock1 = _thread.allocate_lock()
lock2 = _thread.allocate_lock()
lock1.acquire()
lock2.acquire()
_thread.start_new_thread(other_thread, ())
def f():
lock2.acquire()
return sys._current_frames()
frames = f()
lock1.release()
thisframe = frames.pop(thread_id)
assert thisframe.f_code.co_name in ('f', '?')
assert len(frames) == 1
_, other_frame = frames.popitem()
assert other_frame.f_code.co_name in ('other_thread', '?')
def test_current_exceptions(self):
import sys
import _thread
# XXX workaround for now: to prevent deadlocks, call
# sys._current_frames() once before starting threads.
# This is an issue in non-translated versions only.
sys._current_frames()
thread_id = _thread.get_ident()
def other_thread():
#print("thread started")
lock2.release()
try:
raise ValueError("oops")
except ValueError:
lock1.acquire()
lock1 = _thread.allocate_lock()
lock2 = _thread.allocate_lock()
lock1.acquire()
lock2.acquire()
_thread.start_new_thread(other_thread, ())
def f():
lock2.acquire()
return sys._current_exceptions()
exc = f()
lock1.release()
thisexc = exc.pop(thread_id)
assert thisexc == (None, None, None)
assert len(exc) == 1
key, values = exc.popitem()
exc_type, exc_value, exc_tb = values
assert str(exc_value) == "oops"
def test_intern(self):
from sys import intern
raises(TypeError, intern)
raises(TypeError, intern, 1)
class S(str):
pass
raises(TypeError, intern, S("hello"))
s = "never interned before"
s2 = intern(s)
assert s == s2
s3 = s.swapcase()
assert s3 != s2
s4 = s3.swapcase()
assert intern(s4) is s2
s5 = "\ud800"
# previously failed
assert intern(s5) == s5
class AppTestSysExcInfoDirect:
def setup_method(self, meth):
self.checking = not self.runappdirect
if self.checking:
self.seen = []
from pypy.module.sys import vm
def exc_info_with_tb(*args):
self.seen.append("n") # not optimized
return self.old[0](*args)
def exc_info_without_tb(*args):
self.seen.append("y") # optimized
return self.old[1](*args)
self.old = [vm.exc_info_with_tb, vm.exc_info_without_tb]
vm.exc_info_with_tb = exc_info_with_tb
vm.exc_info_without_tb = exc_info_without_tb
#
from rpython.rlib import jit
self.old2 = [jit.we_are_jitted]
jit.we_are_jitted = lambda: True
def teardown_method(self, meth):
if self.checking:
from pypy.module.sys import vm
from rpython.rlib import jit
vm.exc_info_with_tb = self.old[0]
vm.exc_info_without_tb = self.old[1]
jit.we_are_jitted = self.old2[0]
#
assert ''.join(self.seen) == meth.expected
def test_returns_none(self):
import sys
assert sys.exc_info() == (None, None, None)
assert sys.exc_info()[0] is None
assert sys.exc_info()[1] is None
assert sys.exc_info()[2] is None
assert sys.exc_info()[:2] == (None, None)
assert sys.exc_info()[:3] == (None, None, None)
assert sys.exc_info()[0:2] == (None, None)
assert sys.exc_info()[2:4] == (None,)
test_returns_none.expected = 'nnnnnnnn'
def test_returns_subscr(self):
import sys
e = KeyError("boom")
try:
raise e
except:
assert sys.exc_info()[0] is KeyError # y
assert sys.exc_info()[1] is e # y
assert sys.exc_info()[2] is not None # n
assert sys.exc_info()[-3] is KeyError # y
assert sys.exc_info()[-2] is e # y
assert sys.exc_info()[-1] is not None # n
test_returns_subscr.expected = 'yynyyn'
def test_returns_slice_2(self):
import sys
e = KeyError("boom")
try:
raise e
except:
foo = sys.exc_info() # n
assert sys.exc_info()[:0] == () # y
assert sys.exc_info()[:1] == foo[:1] # y
assert sys.exc_info()[:2] == foo[:2] # y
assert sys.exc_info()[:3] == foo # n
assert sys.exc_info()[:4] == foo # n
assert sys.exc_info()[:-1] == foo[:2] # y
assert sys.exc_info()[:-2] == foo[:1] # y
assert sys.exc_info()[:-3] == () # y
test_returns_slice_2.expected = 'nyyynnyyy'
def test_returns_slice_3(self):
import sys
e = KeyError("boom")
try:
raise e
except:
foo = sys.exc_info() # n
assert sys.exc_info()[2:2] == () # y
assert sys.exc_info()[0:1] == foo[:1] # y
assert sys.exc_info()[1:2] == foo[1:2] # y
assert sys.exc_info()[0:3] == foo # n
assert sys.exc_info()[2:4] == foo[2:] # n
assert sys.exc_info()[0:-1] == foo[:2] # y
assert sys.exc_info()[0:-2] == foo[:1] # y
assert sys.exc_info()[5:-3] == () # y
test_returns_slice_3.expected = 'nyyynnyyy'
def test_strange_invocation(self):
import sys
e = KeyError("boom")
try:
raise e
except:
a = []; k = {}
assert sys.exc_info(*a)[:0] == ()
assert sys.exc_info(**k)[:0] == ()
test_strange_invocation.expected = 'nn'
def test_call_in_subfunction(self):
import sys
def g():
# new in PyPy3: this case is optimized as well, now that we
# don't need to search the frame chain. This can be
# regarded as an advantage of the PyPy3 sys_exc_info stored
# on the ExecutionContext: although it forces the exception
# itself more often, it forces frames less often.
return sys.exc_info()[1]
e = KeyError("boom")
try:
raise e
except:
assert g() is e
test_call_in_subfunction.expected = 'y'
|