1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399
|
# -*- coding: utf-8 -*-
import pytest
from pypy.objspace.std.test.test_dictmultiobject import FakeSpace, W_DictObject
from pypy.objspace.std.mapdict import *
class Config:
class objspace:
class std:
methodcachesizeexp = 11
withmethodcachecounter = False
space = FakeSpace()
space.config = Config
class Class(object):
def __init__(self, hasdict=True):
self.hasdict = hasdict
if hasdict:
self.terminator = DictTerminator(space, self)
else:
self.terminator = NoDictTerminator(space, self)
def instantiate(self, sp=None):
if sp is None:
sp = space
if self.hasdict:
result = Object()
else:
result = ObjectWithoutDict()
result.user_setup(sp, self)
return result
class ObjectWithoutDict(ObjectWithoutDict):
class typedef:
hasdict = False
class Object(Object):
class typedef:
hasdict = False
def test_plain_attribute():
w_cls = "class"
aa = PlainAttribute("b", DICT,
PlainAttribute("a", DICT,
Terminator(space, w_cls)))
assert aa.space is space
assert aa.terminator.w_cls is w_cls
assert aa.get_terminator() is aa.terminator
obj = Object()
obj.map, obj.storage = aa, [10, 20]
assert obj.getdictvalue(space, "a") == 10
assert obj.getdictvalue(space, "b") == 20
assert obj.getdictvalue(space, "c") is None
obj = Object()
obj.map, obj.storage = aa, [30, 40]
obj.setdictvalue(space, "a", 50)
assert obj.storage == [50, 40]
assert obj.getdictvalue(space, "a") == 50
obj.setdictvalue(space, "b", 60)
assert obj.storage == [50, 60]
assert obj.getdictvalue(space, "b") == 60
assert aa.length() == 2
assert aa.get_terminator() is aa.back.back
def test_huge_chain():
current = Terminator(space, "cls")
for i in range(20000):
current = PlainAttribute(str(i), DICT, current)
assert current.find_map_attr("0", DICT).storageindex == 0
def test_search():
aa = PlainAttribute("b", DICT, PlainAttribute("a", DICT, Terminator(None, None)))
assert aa.search(DICT) is aa
assert aa.search(SLOTS_STARTING_FROM) is None
assert aa.search(SPECIAL) is None
bb = PlainAttribute("C", SPECIAL, PlainAttribute("A", SLOTS_STARTING_FROM, aa))
assert bb.search(DICT) is aa
assert bb.search(SLOTS_STARTING_FROM) is bb.back
assert bb.search(SPECIAL) is bb
def test_add_attribute():
cls = Class()
obj = cls.instantiate()
obj.setdictvalue(space, "a", 10)
assert obj.storage == [10]
assert obj.getdictvalue(space, "a") == 10
assert obj.getdictvalue(space, "b") is None
assert obj.getdictvalue(space, "c") is None
obj.setdictvalue(space, "a", 20)
assert obj.getdictvalue(space, "a") == 20
assert obj.getdictvalue(space, "b") is None
assert obj.getdictvalue(space, "c") is None
obj.setdictvalue(space, "b", 30)
assert obj.storage == [20, 30]
assert obj.getdictvalue(space, "a") == 20
assert obj.getdictvalue(space, "b") == 30
assert obj.getdictvalue(space, "c") is None
obj.setdictvalue(space, "b", 40)
assert obj.getdictvalue(space, "a") == 20
assert obj.getdictvalue(space, "b") == 40
assert obj.getdictvalue(space, "c") is None
obj2 = cls.instantiate()
obj2.setdictvalue(space, "a", 50)
obj2.setdictvalue(space, "b", 60)
assert obj2.getdictvalue(space, "a") == 50
assert obj2.getdictvalue(space, "b") == 60
assert obj2.map is obj.map
def test_add_attribute_limit():
for numslots in [0, 10, 100]:
cls = Class()
obj = cls.instantiate()
for i in range(numslots):
obj.setslotvalue(i, i) # some extra slots too, sometimes
# test that eventually attributes are really just stored in a dictionary
for i in range(1000):
obj.setdictvalue(space, str(i), i)
# moved to dict (which is the remaining non-slot item)
assert len(obj.storage) == 1 + numslots
assert isinstance(obj.getdict(space).dstrategy, UnicodeDictStrategy)
for i in range(1000):
assert obj.getdictvalue(space, str(i)) == i
for i in range(numslots):
assert obj.getslotvalue(i) == i # check extra slots
# this doesn't happen with slots
cls = Class()
obj = cls.instantiate()
for i in range(1000):
obj.setslotvalue(i, i)
assert len(obj.storage) == 1000
for i in range(1000):
assert obj.getslotvalue(i) == i
def test_insert_different_orders():
cls = Class()
obj = cls.instantiate()
obj.setdictvalue(space, "a", 10)
obj.setdictvalue(space, "b", 20)
obj2 = cls.instantiate()
obj2.setdictvalue(space, "b", 30)
obj2.setdictvalue(space, "a", 40)
assert obj.map is obj2.map
def test_insert_different_orders_2():
cls = Class()
obj = cls.instantiate()
obj2 = cls.instantiate()
obj.setdictvalue(space, "a", 10)
obj2.setdictvalue(space, "b", 20)
obj2.setdictvalue(space, "a", 30)
obj.setdictvalue(space, "b", 40)
assert obj.map is obj2.map
def test_insert_different_orders_3():
cls = Class()
obj = cls.instantiate()
obj2 = cls.instantiate()
obj3 = cls.instantiate()
obj4 = cls.instantiate()
obj5 = cls.instantiate()
obj6 = cls.instantiate()
obj.setdictvalue(space, "a", 10)
obj.setdictvalue(space, "b", 20)
obj.setdictvalue(space, "c", 30)
obj2.setdictvalue(space, "a", 30)
obj2.setdictvalue(space, "c", 40)
obj2.setdictvalue(space, "b", 50)
obj3.setdictvalue(space, "c", 30)
obj3.setdictvalue(space, "a", 40)
obj3.setdictvalue(space, "b", 50)
obj4.setdictvalue(space, "c", 30)
obj4.setdictvalue(space, "b", 40)
obj4.setdictvalue(space, "a", 50)
obj5.setdictvalue(space, "b", 30)
obj5.setdictvalue(space, "a", 40)
obj5.setdictvalue(space, "c", 50)
obj6.setdictvalue(space, "b", 30)
obj6.setdictvalue(space, "c", 40)
obj6.setdictvalue(space, "a", 50)
assert obj.map is obj2.map
assert obj.map is obj3.map
assert obj.map is obj4.map
assert obj.map is obj5.map
assert obj.map is obj6.map
def test_insert_different_orders_4():
cls = Class()
obj = cls.instantiate()
obj2 = cls.instantiate()
obj.setdictvalue(space, "a", 10)
obj.setdictvalue(space, "b", 20)
obj.setdictvalue(space, "c", 30)
obj.setdictvalue(space, "d", 40)
obj2.setdictvalue(space, "d", 50)
obj2.setdictvalue(space, "c", 50)
obj2.setdictvalue(space, "b", 50)
obj2.setdictvalue(space, "a", 50)
assert obj.map is obj2.map
def test_insert_different_orders_5():
cls = Class()
obj = cls.instantiate()
obj2 = cls.instantiate()
obj.setdictvalue(space, "a", 10)
obj.setdictvalue(space, "b", 20)
obj.setdictvalue(space, "c", 30)
obj.setdictvalue(space, "d", 40)
obj2.setdictvalue(space, "d", 50)
obj2.setdictvalue(space, "c", 50)
obj2.setdictvalue(space, "b", 50)
obj2.setdictvalue(space, "a", 50)
obj3 = cls.instantiate()
obj3.setdictvalue(space, "d", 50)
obj3.setdictvalue(space, "c", 50)
obj3.setdictvalue(space, "b", 50)
obj3.setdictvalue(space, "a", 50)
assert obj.map is obj3.map
def test_bug_stack_overflow_insert_attributes():
cls = Class()
obj = cls.instantiate()
for i in range(1000):
obj.setdictvalue(space, str(i), i)
def test_insert_different_orders_perm():
from itertools import permutations
cls = Class()
seen_maps = {}
for preexisting in ['', 'x', 'xy']:
for i, attributes in enumerate(permutations("abcdef")):
obj = cls.instantiate()
for i, attr in enumerate(preexisting):
obj.setdictvalue(space, attr, i*1000)
key = preexisting
for j, attr in enumerate(attributes):
obj.setdictvalue(space, attr, i*10+j)
key = "".join(sorted(key+attr))
if key in seen_maps:
assert obj.map is seen_maps[key]
else:
seen_maps[key] = obj.map
print len(seen_maps)
def test_bug_infinite_loop():
cls = Class()
obj = cls.instantiate()
obj.setdictvalue(space, "e", 1)
obj2 = cls.instantiate()
obj2.setdictvalue(space, "f", 2)
obj3 = cls.instantiate()
obj3.setdictvalue(space, "a", 3)
obj3.setdictvalue(space, "e", 4)
obj3.setdictvalue(space, "f", 5)
def test_attr_immutability(monkeypatch):
cls = Class()
obj = cls.instantiate()
obj.setdictvalue(space, "a", 10)
obj.setdictvalue(space, "b", 20)
obj.setdictvalue(space, "b", 30)
assert obj.storage == [10, 30]
assert obj.map.ever_mutated == True
assert obj.map.back.ever_mutated == False
indices = []
def _pure_mapdict_read_storage(obj, storageindex):
assert storageindex == 0
indices.append(storageindex)
return obj._mapdict_read_storage(storageindex)
obj.map._pure_mapdict_read_storage = _pure_mapdict_read_storage
monkeypatch.setattr(jit, "isconstant", lambda c: True)
assert obj.getdictvalue(space, "a") == 10
assert obj.getdictvalue(space, "b") == 30
assert obj.getdictvalue(space, "a") == 10
assert indices == [0, 0]
obj2 = cls.instantiate()
obj2.setdictvalue(space, "a", 15)
obj2.setdictvalue(space, "b", 25)
assert obj2.map is obj.map
assert obj2.map.ever_mutated == True
assert obj2.map.back.ever_mutated == False
# mutating obj2 changes the map
obj2.setdictvalue(space, "a", 50)
assert obj2.map.back.ever_mutated == True
assert obj2.map is obj.map
def test_attr_immutability_delete():
cls = Class()
obj = cls.instantiate()
obj.setdictvalue(space, "a", 10)
map1 = obj.map
obj.deldictvalue(space, "a")
obj.setdictvalue(space, "a", 20)
assert obj.map.ever_mutated == True
assert obj.map is map1
def test_delete():
for i, dattr in enumerate(["a", "b", "c"]):
c = Class()
obj = c.instantiate()
obj.setdictvalue(space, "a", 50)
obj.setdictvalue(space, "b", 60)
obj.setdictvalue(space, "c", 70)
assert obj.storage == [50, 60, 70]
res = obj.deldictvalue(space, dattr)
assert res
s = [50, 60, 70]
del s[i]
assert obj.storage == s
obj = c.instantiate()
obj.setdictvalue(space, "a", 50)
obj.setdictvalue(space, "b", 60)
obj.setdictvalue(space, "c", 70)
assert not obj.deldictvalue(space, "d")
def test_class():
c = Class()
obj = c.instantiate()
assert obj.getclass(space) is c
obj.setdictvalue(space, "a", 50)
assert obj.getclass(space) is c
obj.setdictvalue(space, "b", 60)
assert obj.getclass(space) is c
obj.setdictvalue(space, "c", 70)
assert obj.getclass(space) is c
c2 = Class()
obj.setclass(space, c2)
assert obj.getclass(space) is c2
assert obj.storage == [50, 60, 70]
def test_special():
from pypy.module._weakref.interp__weakref import WeakrefLifeline
lifeline1 = WeakrefLifeline(space)
lifeline2 = WeakrefLifeline(space)
c = Class()
obj = c.instantiate()
assert obj.getweakref() is None
obj.setdictvalue(space, "a", 50)
obj.setdictvalue(space, "b", 60)
obj.setdictvalue(space, "c", 70)
obj.setweakref(space, lifeline1)
assert obj.getdictvalue(space, "a") == 50
assert obj.getdictvalue(space, "b") == 60
assert obj.getdictvalue(space, "c") == 70
assert obj.storage == [50, 60, 70, lifeline1]
assert obj.getweakref() is lifeline1
obj2 = c.instantiate()
obj2.setdictvalue(space, "a", 150)
obj2.setdictvalue(space, "b", 160)
obj2.setdictvalue(space, "c", 170)
obj2.setweakref(space, lifeline2)
assert obj2.storage == [150, 160, 170, lifeline2]
assert obj2.getweakref() is lifeline2
assert obj2.map is obj.map
assert obj.getdictvalue(space, "weakref") is None
obj.setdictvalue(space, "weakref", 41)
assert obj.getweakref() is lifeline1
assert obj.getdictvalue(space, "weakref") == 41
lifeline1 = WeakrefLifeline(space)
obj = c.instantiate()
assert obj.getweakref() is None
obj.setweakref(space, lifeline1)
obj.delweakref()
def test_slots():
cls = Class()
obj = cls.instantiate()
a = 0
b = 1
c = 2
obj.setslotvalue(a, 50)
obj.setslotvalue(b, 60)
obj.setslotvalue(c, 70)
assert obj.getslotvalue(a) == 50
assert obj.getslotvalue(b) == 60
assert obj.getslotvalue(c) == 70
assert obj.storage == [50, 60, 70]
obj.setdictvalue(space, "a", 5)
obj.setdictvalue(space, "b", 6)
obj.setdictvalue(space, "c", 7)
assert obj.getdictvalue(space, "a") == 5
assert obj.getdictvalue(space, "b") == 6
assert obj.getdictvalue(space, "c") == 7
assert obj.getslotvalue(a) == 50
assert obj.getslotvalue(b) == 60
assert obj.getslotvalue(c) == 70
assert obj.storage == [50, 60, 70, 5, 6, 7]
obj2 = cls.instantiate()
obj2.setslotvalue(a, 501)
obj2.setslotvalue(b, 601)
obj2.setslotvalue(c, 701)
obj2.setdictvalue(space, "a", 51)
obj2.setdictvalue(space, "b", 61)
obj2.setdictvalue(space, "c", 71)
assert obj2.storage == [501, 601, 701, 51, 61, 71]
assert obj.map is obj2.map
assert obj2.getslotvalue(b) == 601
assert obj2.delslotvalue(b)
assert obj2.getslotvalue(b) is None
assert obj2.storage == [501, 701, 51, 61, 71]
assert not obj2.delslotvalue(b)
def test_slots_no_dict():
cls = Class(hasdict=False)
obj = cls.instantiate()
a = 0
b = 1
obj.setslotvalue(a, 50)
obj.setslotvalue(b, 60)
assert obj.getslotvalue(a) == 50
assert obj.getslotvalue(b) == 60
assert obj.storage == [50, 60]
assert not obj.setdictvalue(space, "a", 70)
assert obj.getdict(space) is None
assert obj.getdictvalue(space, "a") is None
def test_getdict():
cls = Class()
obj = cls.instantiate()
obj.setdictvalue(space, "a", 51)
obj.setdictvalue(space, "b", 61)
obj.setdictvalue(space, "c", 71)
assert obj.getdict(space) is obj.getdict(space)
assert obj.getdict(space).length() == 3
def test_materialize_r_dict():
cls = Class()
obj = cls.instantiate()
a = 0
b = 1
c = 2
obj.setslotvalue(a, 50)
obj.setslotvalue(b, 60)
obj.setslotvalue(c, 70)
obj.setdictvalue(space, "a", 5)
obj.setdictvalue(space, "b", 6)
obj.setdictvalue(space, "c", 7)
assert obj.storage == [50, 60, 70, 5, 6, 7]
class FakeDict(W_DictObject):
def __init__(self, d):
self.dstorage = d
class strategy:
def unerase(self, x):
return d
strategy = strategy()
d = {}
w_d = FakeDict(d)
flag = obj.map.write(obj, "dict", SPECIAL, w_d)
assert flag
materialize_r_dict(space, obj, d)
assert d == {"a": 5, "b": 6, "c": 7}
assert obj.storage == [50, 60, 70, w_d]
def test_size_prediction():
for i in range(10):
c = Class()
assert c.terminator.size_estimate() == 0
for j in range(1000):
obj = c.instantiate()
for a in "abcdefghij"[:i]:
obj.setdictvalue(space, a, 50)
assert c.terminator.size_estimate() == i
for i in range(1, 10):
c = Class()
assert c.terminator.size_estimate() == 0
for j in range(1000):
obj = c.instantiate()
for a in "abcdefghij"[:i]:
obj.setdictvalue(space, a, 50)
obj = c.instantiate()
for a in "klmnopqars":
obj.setdictvalue(space, a, 50)
assert c.terminator.size_estimate() in [(i + 10) // 2, (i + 11) // 2]
# ___________________________________________________________
# dict tests
from pypy.objspace.std.test.test_dictmultiobject import BaseTestRDictImplementation, BaseTestDevolvedDictImplementation
def get_impl(self):
cls = Class()
w_obj = cls.instantiate(self.fakespace)
return w_obj.getdict(self.fakespace)
class TestMapDictImplementation(BaseTestRDictImplementation):
StrategyClass = MapDictStrategy
get_impl = get_impl
def test_setdefault_fast(self):
# mapdict can't pass this, which is fine
pass
class TestDevolvedMapDictImplementation(BaseTestDevolvedDictImplementation):
get_impl = get_impl
StrategyClass = MapDictStrategy
def test_setdefault_fast(self):
# mapdict can't pass this, which is fine
pass
# ___________________________________________________________
# tests that check the obj interface after the dict has devolved
def devolve_dict(space, obj):
w_d = obj.getdict(space)
w_d.get_strategy().switch_to_object_strategy(w_d)
def test_get_setdictvalue_after_devolve():
cls = Class()
obj = cls.instantiate()
a = 0
b = 1
c = 2
obj.setslotvalue(a, 50)
obj.setslotvalue(b, 60)
obj.setslotvalue(c, 70)
obj.setdictvalue(space, "a", 5)
obj.setdictvalue(space, "b", 6)
obj.setdictvalue(space, "c", 7)
obj.setdictvalue(space, "weakref", 42)
devolve_dict(space, obj)
assert obj.getdictvalue(space, "a") == 5
assert obj.getdictvalue(space, "b") == 6
assert obj.getdictvalue(space, "c") == 7
assert obj.getslotvalue(a) == 50
assert obj.getslotvalue(b) == 60
assert obj.getslotvalue(c) == 70
assert obj.getdictvalue(space, "weakref") == 42
assert obj.getweakref() is None
obj.setslotvalue(a, 501)
obj.setslotvalue(b, 601)
obj.setslotvalue(c, 701)
res = obj.setdictvalue(space, "a", 51)
assert res
obj.setdictvalue(space, "b", 61)
obj.setdictvalue(space, "c", 71)
assert obj.getdictvalue(space, "a") == 51
assert obj.getdictvalue(space, "b") == 61
assert obj.getdictvalue(space, "c") == 71
assert obj.getslotvalue(a) == 501
assert obj.getslotvalue(b) == 601
assert obj.getslotvalue(c) == 701
res = obj.deldictvalue(space, "a")
assert res
assert obj.getdictvalue(space, "a") is None
assert obj.getdictvalue(space, "b") == 61
assert obj.getdictvalue(space, "c") == 71
assert obj.getslotvalue(a) == 501
assert obj.getslotvalue(b) == 601
assert obj.getslotvalue(c) == 701
def test_setdict():
cls = Class()
obj = cls.instantiate()
obj.setdictvalue(space, "a", 5)
obj.setdictvalue(space, "b", 6)
obj.setdictvalue(space, "c", 7)
w_d = obj.getdict(space)
obj2 = cls.instantiate()
obj2.setdictvalue(space, "d", 8)
obj.setdict(space, obj2.getdict(space))
assert obj.getdictvalue(space, "a") is None
assert obj.getdictvalue(space, "b") is None
assert obj.getdictvalue(space, "c") is None
assert obj.getdictvalue(space, "d") == 8
assert w_d.getitem_str("a") == 5
assert w_d.getitem_str("b") == 6
assert w_d.getitem_str("c") == 7
# ___________________________________________________________
# check specialized classes
def test_specialized_class():
from pypy.objspace.std.mapdict import _make_storage_mixin_size_n
from pypy.objspace.std.objectobject import W_ObjectObject
classes = [_make_storage_mixin_size_n(i) for i in range(2, 10)]
w1 = W_Root()
w2 = W_Root()
w3 = W_Root()
w4 = W_Root()
w5 = W_Root()
w6 = W_Root()
for mixin in classes:
class objectcls(W_ObjectObject):
objectmodel.import_from_mixin(BaseUserClassMapdict)
objectmodel.import_from_mixin(MapdictDictSupport)
objectmodel.import_from_mixin(mixin)
cls = Class()
obj = objectcls()
obj.user_setup(space, cls)
obj.setdictvalue(space, "a", w1)
assert obj._value0 is w1
assert obj.getdictvalue(space, "a") is w1
assert obj.getdictvalue(space, "b") is None
assert obj.getdictvalue(space, "c") is None
obj.setdictvalue(space, "a", w2)
assert obj._value0 is w2
assert obj.getdictvalue(space, "a") == w2
assert obj.getdictvalue(space, "b") is None
assert obj.getdictvalue(space, "c") is None
obj.setdictvalue(space, "b", w3)
#== [20, 30]
assert obj.getdictvalue(space, "a") is w2
assert obj.getdictvalue(space, "b") is w3
assert obj.getdictvalue(space, "c") is None
obj.setdictvalue(space, "b", w4)
assert obj.getdictvalue(space, "a") is w2
assert obj.getdictvalue(space, "b") is w4
assert obj.getdictvalue(space, "c") is None
abmap = obj.map
res = obj.deldictvalue(space, "a")
assert res
assert obj._value0 is w4
assert obj.getdictvalue(space, "a") is None
assert obj.getdictvalue(space, "b") is w4
assert obj.getdictvalue(space, "c") is None
obj2 = objectcls()
obj2.user_setup(space, cls)
obj2.setdictvalue(space, "a", w5)
obj2.setdictvalue(space, "b", w6)
assert obj2.getdictvalue(space, "a") is w5
assert obj2.getdictvalue(space, "b") is w6
assert obj2.map is abmap
# ___________________________________________________________
# integration tests
# XXX write more
class AppTestWithMapDict(object):
def test_simple(self):
class A(object):
pass
a = A()
a.x = 5
a.y = 6
a.zz = 7
assert a.x == 5
assert a.y == 6
assert a.zz == 7
def test_read_write_dict(self):
class A(object):
pass
a = A()
a.x = 5
a.y = 6
a.zz = 7
d = a.__dict__
assert d == {"x": 5, "y": 6, "zz": 7}
d['dd'] = 41
assert a.dd == 41
del a.x
assert d == {"y": 6, "zz": 7, 'dd': 41}
d2 = d.copy()
d2[1] = 2
a.__dict__ = d2
assert a.y == 6
assert a.zz == 7
assert a.dd == 41
d['dd'] = 43
assert a.dd == 41
def test_popitem(self):
class A(object):
pass
a = A()
a.x = 5
a.y = 6
it1 = a.__dict__.popitem()
assert it1 == ("y", 6)
it2 = a.__dict__.popitem()
assert it2 == ("x", 5)
assert a.__dict__ == {}
raises(KeyError, a.__dict__.popitem)
def test_slot_name_conflict(self):
class A(object):
__slots__ = 'slot1'
class B(A):
__slots__ = 'slot1'
x = B()
x.slot1 = 'child' # using B.slot1
A.slot1.__set__(x, 'parent') # using A.slot1
assert x.slot1 == 'child' # B.slot1 should still have its old value
assert A.slot1.__get__(x) == 'parent'
def test_change_class(self):
class A(object):
pass
class B(object):
pass
a = A()
a.x = 1
a.y = 2
assert a.x == 1
assert a.y == 2
a.__class__ = B
assert a.x == 1
assert a.y == 2
assert isinstance(a, B)
# dict accessed:
a = A()
a.x = 1
a.y = 2
assert a.x == 1
assert a.y == 2
d = a.__dict__
assert d == {"x": 1, "y": 2}
a.__class__ = B
assert a.x == 1
assert a.y == 2
assert a.__dict__ is d
assert d == {"x": 1, "y": 2}
assert isinstance(a, B)
# dict devolved:
a = A()
a.x = 1
a.y = 2
assert a.x == 1
assert a.y == 2
d = a.__dict__
d[1] = 3
assert d == {"x": 1, "y": 2, 1:3}
a.__class__ = B
assert a.x == 1
assert a.y == 2
assert a.__dict__ is d
assert isinstance(a, B)
def test_dict_devolved_bug(self):
class A(object):
pass
a = A()
a.x = 1
d = a.__dict__
d[1] = 3
a.__dict__ = {}
def test_dict_clear_bug(self):
class A(object):
pass
a = A()
a.x1 = 1
a.x2 = 1
a.x3 = 1
a.x4 = 1
a.x5 = 1
for i in range(100): # change _size_estimate of w_A.terminator
a1 = A()
a1.x1 = 1
a1.x2 = 1
a1.x3 = 1
a1.x4 = 1
a1.x5 = 1
d = a.__dict__
d.clear()
a.__dict__ = {1: 1}
assert d == {}
def test_change_class_slots(self):
class A(object):
__slots__ = ["x", "y"]
class B(object):
__slots__ = ["x", "y"]
a = A()
a.x = 1
a.y = 2
assert a.x == 1
assert a.y == 2
a.__class__ = B
assert a.x == 1
assert a.y == 2
assert isinstance(a, B)
def test_change_class_slots_dict(self):
class A(object):
__slots__ = ["x", "__dict__"]
class B(object):
__slots__ = ["x", "__dict__"]
# dict accessed:
a = A()
a.x = 1
a.y = 2
assert a.x == 1
assert a.y == 2
d = a.__dict__
assert d == {"y": 2}
a.__class__ = B
assert a.x == 1
assert a.y == 2
assert a.__dict__ is d
assert d == {"y": 2}
assert isinstance(a, B)
# dict devolved:
a = A()
a.x = 1
a.y = 2
assert a.x == 1
assert a.y == 2
d = a.__dict__
d[1] = 3
assert d == {"y": 2, 1: 3}
a.__class__ = B
assert a.x == 1
assert a.y == 2
assert a.__dict__ is d
assert isinstance(a, B)
def test_setdict(self):
class A(object):
pass
a = A()
a.__dict__ = {}
a.__dict__ = {}
def test_delete_slot(self):
class A(object):
__slots__ = ['x']
a = A()
a.x = 42
del a.x
raises(AttributeError, "a.x")
def test_reversed_dict(self):
import __pypy__
class X(object):
pass
x = X(); x.a = 10; x.b = 20; x.c = 30
d = x.__dict__
assert list(__pypy__.reversed_dict(d)) == list(d.keys())[::-1]
def test_nonascii_argname(self):
"""
class X:
pass
x = X()
x.日本 = 3
assert x.日本 == 3
assert x.__dict__ == {'日本': 3}
"""
@pytest.mark.skipif('config.option.runappdirect')
class AppTestWithMapDictAndCounters(object):
spaceconfig = {"objspace.std.withmethodcachecounter": True}
def setup_class(cls):
from pypy.interpreter import gateway
#
def check(space, w_func, name):
w_code = space.getattr(w_func, space.wrap('__code__'))
nameindex = map(space.str_w, w_code.co_names_w).index(name)
entry = w_code._mapdict_caches[nameindex]
entry.failure_counter = 0
entry.success_counter = 0
INVALID_CACHE_ENTRY.failure_counter = 0
#
w_res = space.call_function(w_func)
assert space.eq_w(w_res, space.wrap(42))
#
entry = w_code._mapdict_caches[nameindex]
if entry is INVALID_CACHE_ENTRY:
failures = successes = 0
else:
failures = entry.failure_counter
successes = entry.success_counter
globalfailures = INVALID_CACHE_ENTRY.failure_counter
return space.wrap((failures, successes, globalfailures))
check.unwrap_spec = [gateway.ObjSpace, gateway.W_Root, 'text']
cls.w_check = cls.space.wrap(gateway.interp2app(check))
def test_simple(self):
class A(object):
pass
a = A()
a.x = 42
def f():
return a.x
#
res = self.check(f, 'x')
assert res == (1, 0, 0)
res = self.check(f, 'x')
assert res == (0, 1, 0)
res = self.check(f, 'x')
assert res == (0, 1, 0)
res = self.check(f, 'x')
assert res == (0, 1, 0)
#
A.y = 5 # unrelated, but changes the version_tag
res = self.check(f, 'x')
assert res == (1, 0, 0)
res = self.check(f, 'x')
assert res == (0, 1, 0)
res = self.check(f, 'x')
assert res == (0, 1, 0)
res = self.check(f, 'x')
assert res == (0, 1, 0)
#
A.x = 8 # but shadowed by 'a.x'
res = self.check(f, 'x')
assert res == (1, 0, 0)
res = self.check(f, 'x')
assert res == (0, 1, 0)
res = self.check(f, 'x')
assert res == (0, 1, 0)
res = self.check(f, 'x')
assert res == (0, 1, 0)
def test_property(self):
class A(object):
x = property(lambda self: 42)
a = A()
def f():
return a.x
#
res = self.check(f, 'x')
assert res == (0, 0, 1)
res = self.check(f, 'x')
assert res == (0, 0, 1)
res = self.check(f, 'x')
assert res == (0, 0, 1)
def test_slots(self):
class A(object):
__slots__ = ['x']
a = A()
a.x = 42
def f():
return a.x
#
res = self.check(f, 'x')
assert res == (1, 0, 0)
res = self.check(f, 'x')
assert res == (0, 1, 0)
res = self.check(f, 'x')
assert res == (0, 1, 0)
res = self.check(f, 'x')
assert res == (0, 1, 0)
def test_two_attributes(self):
class A(object):
pass
a = A()
a.x = 40
a.y = -2
def f():
return a.x - a.y
#
res = self.check(f, 'x')
assert res == (1, 0, 0)
res = self.check(f, 'x')
assert res == (0, 1, 0)
res = self.check(f, 'x')
assert res == (0, 1, 0)
#
res = self.check(f, 'y')
assert res == (0, 1, 0)
res = self.check(f, 'y')
assert res == (0, 1, 0)
res = self.check(f, 'y')
assert res == (0, 1, 0)
def test_two_maps(self):
class A(object):
pass
a = A()
a.x = 42
def f():
return a.x
#
res = self.check(f, 'x')
assert res == (1, 0, 0)
res = self.check(f, 'x')
assert res == (0, 1, 0)
res = self.check(f, 'x')
assert res == (0, 1, 0)
#
a.y = "foo" # changes the map
res = self.check(f, 'x')
assert res == (1, 0, 0)
res = self.check(f, 'x')
assert res == (0, 1, 0)
res = self.check(f, 'x')
assert res == (0, 1, 0)
#
a.y = "bar" # does not change the map any more
res = self.check(f, 'x')
assert res == (0, 1, 0)
res = self.check(f, 'x')
assert res == (0, 1, 0)
res = self.check(f, 'x')
assert res == (0, 1, 0)
def test_custom_metaclass(self):
"""
class metaclass(type):
pass
class A(metaclass=metaclass):
pass
a = A()
a.x = 42
def f():
return a.x
#
res = self.check(f, 'x')
assert res == (1, 0, 0)
res = self.check(f, 'x')
assert res == (0, 1, 0)
res = self.check(f, 'x')
assert res == (0, 1, 0)
"""
def test_old_style_base(self):
skip('py3k no longer has old style classes')
class B:
pass
class C(object):
pass
class A(C, B):
pass
a = A()
a.x = 42
def f():
return a.x
#
res = self.check(f, 'x')
assert res == (0, 0, 1)
res = self.check(f, 'x')
assert res == (0, 0, 1)
res = self.check(f, 'x')
assert res == (0, 0, 1)
def test_call_method_uses_cache(self):
# bit sucky
global C
class C(object):
def m(*args):
return args
C.sm = staticmethod(C.m)
C.cm = classmethod(C.m)
d = {'C': C}
exec("""if 1:
def f():
c = C()
res = c.m(1)
assert res == (c, 1)
return 42
def g():
c = C()
res = c.sm(1)
assert res == (1, )
return 42
def h():
c = C()
res = c.cm(1)
assert res == (C, 1)
return 42
""", d)
f = d['f']
g = d['g']
h = d['h']
res = self.check(f, 'm')
assert res == (1, 0, 0)
res = self.check(f, 'm')
assert res == (0, 1, 0)
res = self.check(f, 'm')
assert res == (0, 1, 0)
res = self.check(f, 'm')
assert res == (0, 1, 0)
# static methods are not cached
res = self.check(g, 'sm')
assert res == (0, 0, 0)
res = self.check(g, 'sm')
assert res == (0, 0, 0)
# neither are class methods
res = self.check(h, 'cm')
assert res == (0, 0, 0)
res = self.check(h, 'cm')
assert res == (0, 0, 0)
def test_mix_cache_bug(self):
# bit sucky
global C
class C(object):
def m(*args):
return args
d = {'C': C}
exec("""if 1:
def f():
c = C()
res = c.m(1)
assert res == (c, 1)
bm = c.m
res = bm(1)
assert res == (c, 1)
return 42
""", d)
f = d['f']
res = self.check(f, 'm')
assert res == (1, 1, 1)
res = self.check(f, 'm')
assert res == (0, 2, 1)
res = self.check(f, 'm')
assert res == (0, 2, 1)
res = self.check(f, 'm')
assert res == (0, 2, 1)
def test_dont_keep_class_alive(self):
import weakref
import gc
def f():
class C(object):
def m(self):
pass
r = weakref.ref(C)
# Trigger cache.
C().m()
del C
gc.collect(); gc.collect(); gc.collect()
assert r() is None
return 42
f()
def test_instance_keeps_class_alive(self):
import weakref
import gc
def f():
class C(object):
def m(self):
return 42
r = weakref.ref(C)
c = C()
del C
gc.collect(); gc.collect(); gc.collect()
return c.m()
val = f()
assert val == 42
f()
def test_bug_lookup_method_devolved_dict_caching(self):
class A(object):
def method(self):
return 42
a = A()
a.__dict__[1] = 'foo'
got = a.method()
assert got == 42
a.__dict__['method'] = lambda: 43
got = a.method()
assert got == 43
def test_dict_order(self):
# the __dict__ order is not strictly enforced, but in
# simple cases like that, we want to follow the order of
# creation of the attributes
class A(object):
pass
a = A()
a.x = 5
a.z = 6
a.y = 7
assert list(a.__dict__) == ['x', 'z', 'y']
assert list(a.__dict__.values()) == [5, 6, 7]
assert list(a.__dict__.items()) == [('x', 5), ('z', 6), ('y', 7)]
def test_bug_method_change(self):
class A(object):
def method(self):
return 42
a = A()
got = a.method()
assert got == 42
A.method = lambda self: 43
got = a.method()
assert got == 43
A.method = lambda self: 44
got = a.method()
assert got == 44
def test_bug_slot_via_changing_member_descr(self):
class A(object):
__slots__ = ['a', 'b', 'c', 'd']
x = A()
x.a = 'a'
x.b = 'b'
x.c = 'c'
x.d = 'd'
got = x.a
assert got == 'a'
A.a = A.b
got = x.a
assert got == 'b'
A.a = A.c
got = x.a
assert got == 'c'
A.a = A.d
got = x.a
assert got == 'd'
def test_bug_builtin_types_callmethod(self):
import sys
class D(type(sys)):
def mymethod(self):
return "mymethod"
def foobar():
return "foobar"
d = D('d')
res1 = d.mymethod()
d.mymethod = foobar
res2 = d.mymethod()
assert res1 == "mymethod"
assert res2 == "foobar"
def test_bug_builtin_types_load_attr(self):
import sys
class D(type(sys)):
def mymethod(self):
return "mymethod"
def foobar():
return "foobar"
d = D('d')
m = d.mymethod
res1 = m()
d.mymethod = foobar
m = d.mymethod
res2 = m()
assert res1 == "mymethod"
assert res2 == "foobar"
@pytest.mark.skipif('config.option.runappdirect')
class AppTestGlobalCaching(AppTestWithMapDict):
spaceconfig = {"objspace.std.withmethodcachecounter": True}
def test_mix_classes(self):
import __pypy__
seen = []
for i in range(20):
class A(object):
def f(self):
return 42
class B(object):
def f(self):
return 43
class C(object):
def f(self):
return 44
l = [A(), B(), C()] * 10
__pypy__.reset_method_cache_counter()
# 'exec' to make sure that a.f() is compiled with CALL_METHOD
d = {'l': l}
exec("""for i, a in enumerate(l):
assert a.f() == 42 + i % 3
""", d)
cache_counter = __pypy__.mapdict_cache_counter("f")
if cache_counter == (27, 3):
break
# keep them alive, to make sure that on the
# next try they have difference addresses
seen.append((l, cache_counter))
else:
assert 0, "failed: got %r" % ([got[1] for got in seen],)
def test_mix_classes_attribute(self):
import __pypy__
seen = []
for i in range(20):
class A(object):
def __init__(self):
self.x = 42
class B(object):
def __init__(self):
self.x = 43
class C(object):
def __init__(self):
self.x = 44
l = [A(), B(), C()] * 10
__pypy__.reset_method_cache_counter()
for i, a in enumerate(l):
assert a.x == 42 + i % 3
cache_counter = __pypy__.mapdict_cache_counter("x")
if cache_counter == (27, 3):
break
# keep them alive, to make sure that on the
# next try they have difference addresses
seen.append((l, cache_counter))
else:
assert 0, "failed: got %r" % ([got[1] for got in seen],)
class TestDictSubclassShortcutBug(object):
spaceconfig = {"objspace.std.withmethodcachecounter": True}
def test_bug(self):
w_dict = self.space.appexec([], """():
class A(dict):
def __getitem__(self, key):
return 1
assert eval("a", globals(), A()) == 1
return A()
""")
assert w_dict.user_overridden_class
def test_newdict_instance():
w_dict = space.newdict(instance=True)
assert type(w_dict.get_strategy()) is MapDictStrategy
class TestMapDictImplementationUsingnewdict(BaseTestRDictImplementation):
StrategyClass = MapDictStrategy
# NB: the get_impl method is not overwritten here, as opposed to above
def test_setdefault_fast(self):
# mapdict can't pass this, which is fine
pass
|