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
|
import random
import py
from rpython.flowspace.model import summary
from rpython.annotator.model import AnnotatorError
from rpython.rtyper.lltypesystem.lltype import typeOf, Signed, malloc
from rpython.rtyper.lltypesystem.rstr import LLHelpers, STR
from rpython.rtyper.rstr import AbstractLLHelpers
from rpython.rtyper.rtyper import TyperError
from rpython.rtyper.test.tool import BaseRtypingTest
from rpython.rtyper.annlowlevel import llstr, hlstr
from rpython.rtyper.llinterp import LLAssertFailure
def test_parse_fmt():
parse = AbstractLLHelpers.parse_fmt_string
assert parse('a') == ['a']
assert parse('%s') == [('s',)]
assert parse("name '%s' is not defined") == ["name '", ("s",), "' is not defined"]
class AbstractTestRstr(BaseRtypingTest):
def test_simple(self):
const = self.const
def fn(i):
s = const('hello')
return s[i]
for i in range(5):
res = self.interpret(fn, [i])
expected = fn(i)
assert res == expected
assert res.__class__ is expected.__class__
def test_implicit_index_error(self):
const = self.const
def fn(i):
s = const('hello')
try:
return s[i]
except IndexError:
return const('*')
for i in range(-5, 5):
res = self.interpret(fn, [i])
expected = fn(i)
assert res == expected
assert res.__class__ is expected.__class__
res = self.interpret(fn, [5])
assert res == '*'
res = self.interpret(fn, [6])
assert res == '*'
res = self.interpret(fn, [-42])
assert res == '*'
def test_nonzero(self):
const = self.const
def fn(i, j):
s = [const(''), const('xx')][j]
if i < 0:
s = None
if i > -2:
return bool(s)
else:
return False
for i in [-2, -1, 0]:
for j in range(2):
res = self.interpret(fn, [i, j])
assert res is fn(i, j)
def test_concat(self):
const = self.const
def fn(i, j):
s1 = [const(''), const('a'), const('ab')]
s2 = [const(''), const('x'), const('xy')]
return s1[i] + s2[j]
for i in range(3):
for j in range(3):
res = self.interpret(fn, [i,j])
assert self.ll_to_string(res) == fn(i, j)
def test_iter(self):
const = self.const
def fn(i):
s = [const(''), const('a'), const('hello')][i]
i = 0
for c in s:
if c != s[i]:
return False
i += 1
if i == len(s):
return True
return False
for i in range(3):
res = self.interpret(fn, [i])
assert res is True
def test_iter_over_char(self):
const = self.const
def fn(i):
for c in const('a'):
i += ord(c) + 10000
return i
res = self.interpret(fn, [0])
assert res == ord('a') + 10000
def test_iter_over_nonconst_char(self):
const = self.const
def fn(i):
if i > 0:
c = const('a')
else:
c = const('A')
for c in c:
i += ord(c) + 10000
return i
res = self.interpret(fn, [1])
assert res == 1 + ord('a') + 10000
def test_str_iterator_reversed_unsupported(self):
const = self.const
def fn():
total = 0
t = const('foo')
for x in reversed(t):
total += ord(x)
return total
py.test.raises(TyperError, self.interpret, fn, [])
def test_char_constant(self):
const = self.const
def fn(s):
return s + const('.')
res = self.interpret(fn, [const('x')])
res = self.ll_to_string(res)
assert len(res) == 2
assert res[0] == const('x')
assert res[1] == const('.')
def test_char_isxxx(self):
constchar = self.constchar
def fn(s):
return (s.isspace() |
s.isdigit() << 1 |
s.isalpha() << 2 |
s.isalnum() << 3 |
s.isupper() << 4 |
s.islower() << 5)
for i in range(128):
ch = constchar(i)
res = self.interpret(fn, [ch])
assert res == fn(ch)
def test_isdigit(self):
const = self.const
def fn(i):
consts = [const(''), const('anc'), const('abc123'), const('123')]
return consts[i].isdigit()
for i in xrange(3):
assert self.interpret(fn, [i]) == fn(i)
def test_str_isalpha(self):
const = self.const
def fn(i):
consts = [const(''), const('anc'), const('abc123')]
return consts[i].isalpha()
for i in xrange(3):
assert self.interpret(fn, [i]) == fn(i)
def test_str_isalnum(self):
const = self.const
def fn(i):
consts = [const(''), const('abc'), const('abc123'), const('abc123!')]
return consts[i].isalnum()
for i in xrange(3):
assert self.interpret(fn, [i]) == fn(i)
def test_char_compare(self):
const = self.const
res = self.interpret(lambda c1, c2: c1 == c2, [const('a'),
const('b')])
assert res is False
res = self.interpret(lambda c1, c2: c1 == c2, [const('a'),
const('a')])
assert res is True
res = self.interpret(lambda c1, c2: c1 <= c2, [const('z'),
const('a')])
assert res is False
def test_char_string_compare(self):
const = self.const
lst = [const('a'), const('abc')]
res = self.interpret(lambda i1, c2: (lst[i1],) == (c2,),
[1, const('b')])
assert res is False
res = self.interpret(lambda i1, c2: (c2,) == (lst[i1],),
[1, const('b')])
assert res is False
def test_char_mul(self):
const = self.const
def fn(c, mul):
s = c * mul
res = 0
for i in range(len(s)):
res = res*10 + ord(const(s[i])[0]) - ord(const('0')[0])
c2 = c
c2 *= mul
res = 10 * res + (c2 == s)
return res
res = self.interpret(fn, [const('3'), 5])
assert res == 333331
res = self.interpret(fn, [const('5'), 3])
assert res == 5551
def test_str_mul(self):
const = self.const
def fn(i, mul):
s = ["", "a", "aba"][i]
return s * mul + mul * s
for i in xrange(3):
for m in [0, 1, 4]:
res1 = fn(i, m)
res = self.interpret(fn, [i, m])
assert self.ll_to_string(res) == res1
def test_is_none(self):
const = self.const
def fn(i):
s1 = [const('foo'), None][i]
return s1 is None
assert self.interpret(fn, [0]) == False
assert self.interpret(fn, [1]) == True
def test_str_compare(self):
const = self.const
def fn(i, j):
s1 = [const('one'), const('two'), None]
s2 = [const('one'), const('two'), const('o'),
const('on'), const('twos'), const('foobar'), None]
return s1[i] == s2[j]
for i in range(3):
for j in range(7):
res = self.interpret(fn, [i,j])
assert res is fn(i, j)
def fn(i, j):
s1 = [const('one'), const('two')]
s2 = [const('one'), const('two'), const('o'), const('on'), const('twos'), const('foobar')]
return s1[i] != s2[j]
for i in range(2):
for j in range(6):
res = self.interpret(fn, [i, j])
assert res is fn(i, j)
def fn(i, j):
s1 = [const('one'), const('two')]
s2 = [const('one'), const('two'), const('o'), const('on'), const('twos'), const('foobar')]
return s1[i] < s2[j]
for i in range(2):
for j in range(6):
res = self.interpret(fn, [i,j])
assert res is fn(i, j)
def fn(i, j):
s1 = [const('one'), const('two')]
s2 = [const('one'), const('two'), const('o'), const('on'), const('twos'), const('foobar')]
return s1[i] <= s2[j]
for i in range(2):
for j in range(6):
res = self.interpret(fn, [i,j])
assert res is fn(i, j)
def fn(i, j):
s1 = [const('one'), const('two')]
s2 = [const('one'), const('two'), const('o'), const('on'), const('twos'), const('foobar')]
return s1[i] >= s2[j]
for i in range(2):
for j in range(6):
res = self.interpret(fn, [i,j])
assert res is fn(i, j)
def fn(i, j):
s1 = [const('one'), const('two')]
s2 = [const('one'), const('two'), const('o'), const('on'), const('twos'), const('foobar')]
return s1[i] > s2[j]
for i in range(2):
for j in range(6):
res = self.interpret(fn, [i,j])
assert res is fn(i, j)
def test_startswith(self):
const = self.const
def fn(i, j):
s1 = [const(''), const('one'), const('two')]
s2 = [const(''), const('one'), const('two'), const('o'), const('on'), const('ne'), const('e'), const('twos'), const('foobar'), const('fortytwo')]
return s1[i].startswith(s2[j])
for i in range(3):
for j in range(10):
res = self.interpret(fn, [i,j])
assert res is fn(i, j)
def test_startswith_char(self):
const = self.const
def fn(i):
s = [const(''), const('one'), const('two'), const('o'), const('on'), const('ne'), const('e'), const('twos'), const('foobar'), const('fortytwo')]
return s[i].startswith(const('o'))
for i in range(10):
res = self.interpret(fn, [i])
assert res == fn(i)
def test_endswith(self):
const = self.const
def fn(i, j):
s1 = [const(''), const('one'), const('two')]
s2 = [const(''), const('one'), const('two'), const('o'), const('on'), const('ne'), const('e'), const('twos'), const('foobar'), const('fortytwo')]
return s1[i].endswith(s2[j])
for i in range(3):
for j in range(10):
res = self.interpret(fn, [i,j])
assert res is fn(i, j)
def test_endswith_char(self):
const = self.const
def fn(i):
s = [const(''), const('one'), const('two'), const('o'), const('on'), const('ne'), const('e'), const('twos'), const('foobar'), const('fortytwo')]
return s[i].endswith(const('e'))
for i in range(10):
res = self.interpret(fn, [i])
assert res == fn(i)
def test_find(self):
const = self.const
def fn(i, j):
s1 = [const('one two three'), const('abc abcdab abcdabcdabde')]
s2 = [const('one'), const('two'), const('abcdab'), const('one tou'), const('abcdefgh'), const('fortytwo'), const('')]
return s1[i].find(s2[j])
for i in range(2):
for j in range(7):
res = self.interpret(fn, [i,j])
assert res == fn(i, j)
def test_contains_str(self):
const = self.const
def fn(i, j):
s1 = [const('one two three'), const('abc abcdab abcdabcdabde')]
s2 = [const('one'), const('two'), const('abcdab'), const('one tou'), const('abcdefgh'), const('fortytwo'), const('')]
return s2[j] in s1[i]
for i in range(2):
for j in range(7):
res = self.interpret(fn, [i,j])
assert res == fn(i, j)
def test_find_with_start(self):
const = self.const
def fn(i):
assert i >= 0
return const('ababcabc').find(const('abc'), i)
for i in range(9):
res = self.interpret(fn, [i])
assert res == fn(i)
def test_find_with_start_end(self):
const = self.const
def fn(i, j):
assert i >= 0
assert j >= 0
return (const('ababcabc').find(const('abc'), i, j) +
const('ababcabc').find(const('b'), i, j) * 100)
for (i, j) in [(1,7), (2,6), (3,7), (3,8), (4,99), (7, 99)]:
res = self.interpret(fn, [i, j])
assert res == fn(i, j)
def test_find_AnnotatorError(self):
const = self.const
def f():
s = const('abc')
s.find(s, 0, -10)
py.test.raises(AnnotatorError, self.interpret, f, ())
def f():
s = const('abc')
s.find(s, -10)
py.test.raises(AnnotatorError, self.interpret, f, ())
def test_find_empty_string(self):
const = self.const
def f(i):
assert i >= 0
s = const("abc")
x = s.find(const(''))
x+= s.find(const(''), i)*10
x+= s.find(const(''), i, i)*100
x+= s.find(const(''), i, i+1)*1000
return x
for i, expected in enumerate([0, 1110, 2220, 3330, -1110, -1110]):
res = self.interpret(f, [i])
assert res == expected
def test_rfind(self):
const = self.const
def fn():
# string-searching versions
return (const('aaa').rfind(const('aa')) +
const('aaa').rfind(const('aa'), 1) * 10 +
const('aaa').rfind(const('aa'), 1, 2) * 100 +
const('aaa').rfind(const('aa'), 3, 42) * 1000 +
# char-searching versions
const('aaa').rfind(const('a')) * 10000 +
const('aaa').rfind(const('a'), 1) * 100000 +
const('aaa').rfind(const('a'), 1, 2) * 1000000 +
const('aaa').rfind(const('a'), 3, 42) * 10000000)
res = self.interpret(fn, [])
assert res == fn()
def test_rfind_empty_string(self):
const = self.const
def f(i):
assert i >= 0
s = const("abc")
x = s.rfind(const(''))
x+= s.rfind(const(''), i)*10
x+= s.rfind(const(''), i, i)*100
x+= s.rfind(const(''), i, i+1)*1000
return x
for i, expected in enumerate([1033, 2133, 3233, 3333, 3-1110, 3-1110]):
res = self.interpret(f, [i])
assert res == expected
def test_rfind_error_message(self):
const = self.const
def f(i):
return const("abc").rfind(const(''), i)
e = py.test.raises(AnnotatorError, self.interpret, f, [-5])
assert "rfind: not proven to have non-negative start" in str(e.value)
def test_find_char(self):
const = self.const
def fn(ch):
pos1 = const('aiuwraz 483').find(ch)
pos2 = const('aiuwraz 483').rfind(ch)
return pos1 + (pos2*100)
for ch in const('a ?3'):
res = self.interpret(fn, [ch])
assert res == fn(ch)
def test_strip(self):
const = self.const
def both():
return const('!ab!').strip(const('!'))
def left():
return const('!ab!').lstrip(const('!'))
def right():
return const('!ab!').rstrip(const('!'))
def empty():
return const(' ').strip(' ')
def left2():
return const('a ').strip(' ')
def leftall():
return const('!!').lstrip(const('!'))
res = self.interpret(both, [])
assert self.ll_to_string(res) == const('ab')
res = self.interpret(left, [])
assert self.ll_to_string(res) == const('ab!')
res = self.interpret(right, [])
assert self.ll_to_string(res) == const('!ab')
res = self.interpret(empty, [])
assert self.ll_to_string(res) == const('')
res = self.interpret(left2, [])
assert self.ll_to_string(res) == const('a')
res = self.interpret(leftall, [])
assert self.ll_to_string(res) == const('')
def test_strip_multiple_chars(self):
const = self.const
def both():
return const('!ab!').strip(const('!a'))
def left():
return const('!+ab!').lstrip(const('!+'))
def right():
return const('!ab!+').rstrip(const('!+'))
def empty():
return const(' \t\t ').strip('\t ')
def left2():
return const('a ').strip(' \t')
def leftall():
return const('!ab!').lstrip(const('!ab'))
res = self.interpret(both, [])
assert self.ll_to_string(res) == const('b')
res = self.interpret(left, [])
assert self.ll_to_string(res) == const('ab!')
res = self.interpret(right, [])
assert self.ll_to_string(res) == const('!ab')
res = self.interpret(empty, [])
assert self.ll_to_string(res) == const('')
res = self.interpret(left2, [])
assert self.ll_to_string(res) == const('a')
res = self.interpret(leftall, [])
assert self.ll_to_string(res) == const('')
def test_upper(self):
const = self.const
constchar = self.constchar
strings = [const(''), const(' '), const('upper'), const('UpPeR'), const(',uppEr,')]
for i in range(256): strings.append(constchar(i))
def fn(i):
return strings[i].upper()
for i in range(len(strings)):
res = self.interpret(fn, [i])
assert self.ll_to_string(res) == fn(i)
def test_lower(self):
const = self.const
strings = [const(''), const(' '), const('lower'), const('LoWeR'), const(',lowEr,')]
for i in range(256): strings.append(chr(i))
def fn(i):
return strings[i].lower()
for i in range(len(strings)):
res = self.interpret(fn, [i])
assert self.ll_to_string(res) == fn(i)
def test_join(self):
const = self.const
res = self.interpret(lambda: const('').join([]), [])
assert self.ll_to_string(res) == ""
res = self.interpret(lambda: const('').join([const('a'), const('b'), const('c')]), [])
assert self.ll_to_string(res) == "abc"
res = self.interpret(lambda: const('').join([const('abc'), const('de'), const('fghi')]), [])
assert self.ll_to_string(res) == "abcdefghi"
res = self.interpret(lambda: const('.').join([const('abc'), const('def')]), [])
assert self.ll_to_string(res) == const('abc.def')
def fn(i, j):
s1 = [ const(''), const(','), const(' and ')]
s2 = [ [], [const('foo')], [const('bar'), const('baz'), const('bazz')]]
return s1[i].join(s2[j])
for i in range(3):
for j in range(3):
res = self.interpret(fn, [i,j])
assert self.ll_to_string(res) == fn(i, j)
def fn(i, j):
s1 = [ const(''), const(','), const(' and ')]
s2 = [ [], [const('foo')], [const('bar'), const('baz'), const('bazz')]]
s2[1].extend([const('x')])
return s1[i].join(s2[j])
for i in range(3):
for j in range(3):
res = self.interpret(fn, [i,j])
assert self.ll_to_string(res) == fn(i, j)
def fn(i):
c = ["a", "b", "c"]
assert i >= 0
return const('').join(c[i:])
res = self.interpret(fn, [0])
assert self.ll_to_string(res) == const("abc")
def test_str_slice(self):
const = self.const
def fn(n):
s = [const('hello'), const('world')][n] # non-constant
s1 = s[:3]
s2 = s[3:]
s3 = s[3:10]
s4 = s[42:44]
return (s1+s2 == s and
s2+s1 == const('lohel') and
s1+s3 == s and
s4 == const(''))
res = self.interpret(fn, [0])
assert res
def test_str_slice_minusone(self):
const = self.const
def fn(n):
s = const('hello')
z = const('h')
lst = [s, z] # uncontantify s and z
s = lst[n]
z = lst[n+1]
return s[:-1]+z[:-1]
res = self.interpret(fn, [0])
assert self.ll_to_string(res) == const('hell')
def test_strformat(self):
const = self.const
def percentS(s):
return const("before %s after") % (s,)
res = self.interpret(percentS, [const('1')])
assert self.ll_to_string(res) == const('before 1 after')
def percentD(i):
return "bing %d bang" % (i,)
res = self.interpret(percentD, [23])
assert self.ll_to_string(res) == const('bing 23 bang')
def percentX(i):
return const("bing %x bang") % (i,)
res = self.interpret(percentX, [23])
assert self.ll_to_string(res) == const('bing 17 bang')
res = self.interpret(percentX, [-123])
assert self.ll_to_string(res) == const('bing -7b bang')
def percentO(i):
return const("bing %o bang") % (i,)
res = self.interpret(percentO, [23])
assert self.ll_to_string(res) == const('bing 27 bang')
res = self.interpret(percentO, [-123])
assert self.ll_to_string(res) == const('bing -173 bang')
def moreThanOne(s, d, x, o):
return const("string: %s decimal: %d hex: %x oct: %o") % (s, d, x, o)
args = const('a'), 2, 3, 4
res = self.interpret(moreThanOne, list(args))
assert self.ll_to_string(res) == moreThanOne(*args)
def test_strformat_nontuple(self):
const = self.const
def percentD(i):
return const("before %d after") % i
res = self.interpret(percentD, [1])
assert self.ll_to_string(res) == const('before 1 after')
def percentS(i):
return const("before %s after") % i
res = self.interpret(percentS, [const('D')])
assert self.ll_to_string(res) == const('before D after')
def test_strformat_instance(self):
class C:
pass
class D(C):
pass
def dummy(i):
if i:
x = C()
else:
x = D()
return str(x)
res = self.ll_to_string(self.interpret(dummy, [1]))
assert res.startswith('<')
assert res.find('C object') != -1
assert res.endswith('>')
res = self.ll_to_string(self.interpret(dummy, [0]))
assert res.startswith('<')
assert res.find('D object') != -1
assert res.endswith('>')
def test_percentformat_instance(self):
class C:
pass
class D(C):
pass
def dummy(i):
if i:
x = C()
y = D()
else:
x = D()
y = C()
return "what a nice %s, much nicer than %r"%(x, y)
res = self.ll_to_string(self.interpret(dummy, [1]))
res = res.replace('rpython.rtyper.test.test_rstr.', '')
assert res.find('what a nice <C object') != -1
assert res.find('>, much nicer than <D object') != -1
res = self.ll_to_string(self.interpret(dummy, [0]))
res = res.replace('rpython.rtyper.test.test_rstr.', '')
assert res.find('what a nice <D object') != -1
assert res.find('>, much nicer than <C object') != -1
def test_percentformat_tuple(self):
for t, expected in [((), "<<<()>>>"),
((5,), "<<<(5,)>>>"),
((5, 6), "<<<(5, 6)>>>"),
((5, 6, 7), "<<<(5, 6, 7)>>>")]:
def getter():
return t
def dummy():
return "<<<%s>>>" % (getter(),)
res = self.ll_to_string(self.interpret(dummy, []))
assert res == expected
def test_percentformat_list(self):
for t, expected in [([], "<<<[]>>>"),
([5], "<<<[5]>>>"),
([5, 6], "<<<[5, 6]>>>"),
([5, 6, 7], "<<<[5, 6, 7]>>>")]:
def getter():
return t
def dummy():
return "<<<%s>>>" % (getter(),)
res = self.ll_to_string(self.interpret(dummy, []))
assert res == expected
def test_splitlines(self):
const = self.const
def f(i, newlines):
s = [const(''), const("\n"), const("\n\n"), const("hi\n"),
const("random data\r\n"), const("\r\n"), const("\rdata")]
test_string = s[i]
if newlines:
return len(test_string.splitlines(True))
else:
return len(test_string.splitlines())
for newlines in (True, False):
for i in xrange(5):
res = self.interpret(f, [i, newlines])
assert res == f(i, newlines)
def _make_split_test(self, split_fn):
const = self.const
def fn(i):
try:
s = [const(''), const('0.1.2.4.8'), const('.1.2'), const('1.2.'), const('.1.2.4.')][i]
l = getattr(s, split_fn)(const('.'))
sum = 0
for num in l:
if len(num):
sum += ord(num[0]) - ord(const('0')[0])
return sum + len(l) * 100
except MemoryError:
return 42
return fn
def test_split(self):
fn = self._make_split_test('split')
for i in range(5):
res = self.interpret(fn, [i])
assert res == fn(i)
def test_split_multichar(self):
l = ["abc::z", "abc", "abc::def:::x"]
exp = [["abc", "z"], ["abc"], ["abc", "def", ":x"]]
exp2 = [["abc", "z"], ["abc"], ["abc", "def:::x"]]
def f(i):
s = l[i]
return s.split("::") == exp[i] and s.split("::", 1) == exp2[i]
for i in range(3):
res = self.interpret(f, [i])
assert res == True
def test_rsplit_multichar(self):
l = ["abc::z", "abc", "abc::def:::x"]
exp = [["abc", "z"], ["abc"], ["abc", "def:", "x"]]
exp2 = [["abc", "z"], ["abc"], ["abc::def:", "x"]]
def f(i):
s = l[i]
return s.rsplit("::") == exp[i] and s.rsplit("::", 1) == exp2[i]
for i in range(3):
res = self.interpret(f, [i])
assert res == True
def test_rsplit(self):
fn = self._make_split_test('rsplit')
for i in range(5):
res = self.interpret(fn, [i])
assert res == fn(i)
def _make_split_limit_test(self, split_fn):
const = self.const
def fn(i, j):
s = [const(''), const('0.1.2.4.8'), const('.1.2'), const('1.2.'), const('.1.2.4.')][i]
l = getattr(s, split_fn)(const('.'), j)
sum = 0
for num in l:
if len(num):
sum += ord(num[0]) - ord(const('0')[0])
return sum + len(l) * 100
return fn
def test_split_limit(self):
fn = self._make_split_limit_test('split')
for i in range(5):
for j in range(4):
res = self.interpret(fn, [i, j])
assert res == fn(i, j)
def test_rsplit_limit(self):
fn = self._make_split_limit_test('rsplit')
for i in range(5):
for j in range(4):
res = self.interpret(fn, [i, j])
assert res == fn(i, j)
def test_contains(self):
const = self.const
constchar = self.constchar
def fn(i):
s = const('Hello world')
return constchar(i) in s
for i in range(256):
res = self.interpret(fn, [i])#, view=i==42)
assert res == fn(i)
def test_replace(self):
const = self.const
def fn(c1, c2):
s = const('abbccc')
s = s.replace(c1, c2)
res = 0
for c in s:
if c == c2:
res += 1
return res
res = self.interpret(fn, [const('a'), const('c')])
assert res == 4
res = self.interpret(fn, [const('c'), const('b')])
assert res == 5
def test_replace_TyperError(self):
const = self.const
def fn():
s = const('abbccc')
s = s.replace(const('a'), const('baz'))
py.test.raises(TyperError, self.interpret, fn, ())
def fn():
s = const('abbccc')
s = s.replace(const('abb'), const('c'))
py.test.raises(TyperError, self.interpret, fn, ())
def test_int(self):
const = self.const
s1 = [ const('42'), const('01001'), const('abc'), const('ABC'), const('4aBc'), const(' 12ef '), const('+42'), const('foo'), const('42foo'), const('42.1'), const(''), const('+ 42')]
def fn(i, base):
s = s1[i]
res = int(s, base)
return res
for j in (10, 16, 2, 1, 36, 42, -3):
for i in range(len(s1)):
try:
expected = fn(i, j)
except ValueError:
self.interpret_raises(ValueError, fn, [i, j])
else:
res = self.interpret(fn, [i, j])
assert res == expected
def test_int_valueerror(self):
const = self.const
s1 = [const('42g'), const('?'), const('+'), const('+ ')]
def fn(i):
try:
return int(s1[i])
except ValueError:
return -654
res = self.interpret(fn, [0])
assert res == -654
res = self.interpret(fn, [1])
assert res == -654
res = self.interpret(fn, [2])
assert res == -654
def test_float(self):
const = self.const
f = [const(''), const(' '), const('0'), const('1'), const('-1.5'), const('1.5E2'), const('2.5e-1'), const(' 0 '), const('?')]
def fn(i):
s = f[i]
return float(s)
for i in range(len(f)):
try:
expected = fn(i)
except ValueError:
self.interpret_raises(ValueError, fn, [i])
else:
res = self.interpret(fn, [i])
assert res == expected
def test_char_mul_n(self):
const = self.const
def f(c, n):
return c*n
res = self.interpret(f, [const('a'), 4])
assert self.ll_to_string(res) == 'a'*4
res = self.interpret(f, [const('a'), 0])
assert self.ll_to_string(res) == ""
def test_char_mul_negative(self):
const = self.const
def f(c):
return c * -3
res = self.interpret(f, [const('a')])
assert self.ll_to_string(res) == ''
def test_n_mul_char(self):
const = self.const
def f(c, n):
return n*c
res = self.interpret(f, [const('a'), 4])
assert self.ll_to_string(res) == 'a'*4
res = self.interpret(f, [const('a'), 0])
assert self.ll_to_string(res) == ""
EMPTY_STRING_HASH = -1 # unless overridden
def test_hash(self):
from rpython.rlib.objectmodel import compute_hash
const = self.const
def fn(i):
if i == 0:
s = const('')
else:
s = const("xxx")
return compute_hash(s)
res = self.interpret(fn, [0])
assert res == self.EMPTY_STRING_HASH
res = self.interpret(fn, [1])
assert typeOf(res) == Signed
def test_call_str_on_string(self):
const = self.const
def fn(i):
s = const("x") * i
return const(s)
res = self.interpret(fn, [3])
assert self.ll_to_string(res) == 'xxx'
def test_count_char(self):
const = self.const
def fn(i):
s = const("").join([const("abcasd")] * i)
return s.count(const("a")) + s.count(const("a"), 2) + \
s.count(const("b"), 1, 6) + s.count(const("a"), 5, 99)
res = self.interpret(fn, [4])
assert res == 8 + 7 + 1 + 6
def test_count(self):
const = self.const
def fn(i):
s = const("").join([const("abcabsd")] * i)
one = i / i # confuse the annotator
return (s.count(const("abc")) + const("abcde").count(const("")) +
const("abcda").count(const("a") * one) +
s.count(const("ab"), 0, 999))
res = self.interpret(fn, [4])
assert res == 4 + 6 + 2 + 8
def test_count_overlapping_occurences(self):
const = self.const
def fn():
return const('ababa').count(const('aba'))
res = self.interpret(fn, [])
assert res == 1
def test_count_AnnotatorError(self):
const = self.const
def f():
s = const('abc')
s.count(s, 0, -10)
py.test.raises(AnnotatorError, self.interpret, f, ())
def f():
s = const('abc')
s.count(s, -10)
py.test.raises(AnnotatorError, self.interpret, f, ())
def test_count_in_empty_string(self):
const = self.const
def fn():
return const('').count(const('ab'))
res = self.interpret(fn, [])
assert res == 0
def test_getitem_exc(self):
const = self.const
def f(x):
s = const("z")
return s[x]
res = self.interpret(f, [0])
assert res == 'z'
with py.test.raises(LLAssertFailure):
self.interpret(f, [1])
def f(x):
s = const("z")
try:
return s[x]
except IndexError:
return const('X')
except Exception:
return const(' ')
res = self.interpret(f, [0])
assert res == 'z'
res = self.interpret(f, [1])
assert res == 'X'
def f(x):
s = const("z")
try:
return s[x]
except Exception:
return const(' ')
res = self.interpret(f, [0])
assert res == 'z'
res = self.interpret(f, [1])
assert res == ' '
def f(x):
s = const("z")
try:
return s[x]
except ValueError:
return const(' ')
res = self.interpret(f, [0])
assert res == 'z'
with py.test.raises(LLAssertFailure):
self.interpret(f, [1])
def test_fold_concat(self):
const = self.const
def g(tail):
return const("head")+tail
def f():
return g(const("tail"))
from rpython.conftest import option
t, typer, fgraph = self.gengraph(f, [], backendopt=True)
if option.view:
t.view()
assert summary(fgraph) == {}
def test_inplace_add(self):
from rpython.rtyper.annlowlevel import hlstr
const = self.const
def f(x, y):
y = const(hlstr(y))
if x > 0:
l = [const('a'), const('b')]
else:
l = [const('a')]
l += y
return const('').join(l)
assert self.ll_to_string(self.interpret(f, [1,
self.string_to_ll('abc')])) == 'ababc'
def test_hlstr(self):
const = self.const
from rpython.rtyper.annlowlevel import hlstr
def f(s):
return const("*")+const(hlstr(s))+const("*") == const("*abba*")
res = self.interpret(f, [self.string_to_ll(const("abba"))])
assert res
def test_prebuilt_ll_strings(self):
llstr0 = self.string_to_ll(None)
assert not llstr0
llstr1 = self.string_to_ll("hello")
def f(i):
if i == 0:
return llstr0
else:
return llstr1
res = self.interpret(f, [0])
assert self.ll_to_string(res) is None
res = self.interpret(f, [1])
assert self.ll_to_string(res) == "hello"
def test_str_unichar(self):
def f(i):
c = u"abc"
return str(c[i])[0]
assert self.interpret(f, [1]) == "b"
def test_encode_char(self):
def f(i):
c = u"abc"
return c[i].encode("ascii")
assert self.ll_to_string(self.interpret(f, [0])) == "a"
def test_encode_char_latin1(self):
def f(i):
c = u"abc"
return c[i].encode("latin-1")
assert self.ll_to_string(self.interpret(f, [0])) == "a"
def test_str_none(self):
const = self.const
def g():
pass
def f(i):
if i > 5:
u = None
else:
u = const('xxx')
g() # hack for flow object space
return str(u)
assert self.ll_to_string(self.interpret(f, [3])) == 'xxx'
got = self.interpret(f, [7])
assert self.ll_to_string(got) == 'None'
def test_enumerate(self):
const = self.const
def fn(n):
s = const('abcde')
for i, x in enumerate(s):
if i == n:
return x
return 'x'
res = self.interpret(fn, [2])
assert res == 'c'
def FIXME_test_str_to_pystringobj():
def f(n):
if n >= 0:
return "hello"[n:]
else:
return None
def g(n):
if n == -2:
return 42
return f(n)
res = interpret(g, [-1])
assert res._obj.value == None
res = interpret(g, [1])
assert res._obj.value == "ello"
res = interpret(g, [-2])
assert res._obj.value == 42
class TestRstr(AbstractTestRstr):
const = str
constchar = chr
def test_lower_char(self):
def fn(i):
return chr(i).lower()
for c in ["a", "A", "1"]:
assert self.interpret(fn, [ord(c)]) == c.lower()
def test_upper_char(self):
def fn(i):
return chr(i).upper()
for c in ["a", "A", "1"]:
assert self.interpret(fn, [ord(c)]) == c.upper()
def test_ll_find_rfind(self):
llstr = self.string_to_ll
for i in range(50):
n1 = random.randint(0, 10)
s1 = ''.join([random.choice("ab") for i in range(n1)])
n2 = random.randint(0, 5)
s2 = ''.join([random.choice("ab") for i in range(n2)])
res = LLHelpers.ll_find(llstr(s1), llstr(s2), 0, n1)
assert res == s1.find(s2)
res = LLHelpers.ll_rfind(llstr(s1), llstr(s2), 0, n1)
assert res == s1.rfind(s2)
def test_hash_via_type(self):
from rpython.rlib.objectmodel import compute_hash
def f(n):
s = malloc(STR, n)
s.hash = 0
for i in range(n):
s.chars[i] = chr(i)
return s.gethash() - compute_hash('\x00\x01\x02\x03\x04')
res = self.interpret(f, [5])
assert res == 0
def test_copy_string_to_raw(self):
from rpython.rtyper.lltypesystem import lltype, llmemory
from rpython.rtyper.annlowlevel import llstr
from rpython.rtyper.lltypesystem.rstr import copy_string_to_raw
def f(buf, n):
s = 'abc' * n
ll_s = llstr(s)
copy_string_to_raw(ll_s, buf, 0, n*3)
TP = lltype.Array(lltype.Char)
array = lltype.malloc(TP, 12, flavor='raw')
f(array, 4)
assert list(array) == list('abc'*4)
lltype.free(array, flavor='raw')
array = lltype.malloc(TP, 12, flavor='raw')
self.interpret(f, [array, 4])
assert list(array) == list('abc'*4)
lltype.free(array, flavor='raw')
def test_strip_no_arg(self):
strings = [" xyz ", "", "\t\vx"]
def f(i):
return strings[i].strip()
res = self.interpret(f, [0])
assert hlstr(res) == "xyz"
res = self.interpret(f, [1])
assert hlstr(res) == ""
res = self.interpret(f, [2])
assert hlstr(res) == "x"
|