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
|
#!./perl
#
# This is a home for regular expression tests that don't fit into
# the format supported by re/regexp.t. If you want to add a test
# that does fit that format, add it to re/re_tests, not here.
use strict;
use warnings;
use 5.010;
use Config;
sub run_tests;
$| = 1;
BEGIN {
chdir 't' if -d 't';
@INC = ('../lib','.');
require './test.pl';
skip_all_if_miniperl("miniperl can't load Tie::Hash::NamedCapture, need for %+ and %-");
}
plan tests => 2532; # Update this when adding/deleting tests.
run_tests() unless caller;
#
# Tests start here.
#
sub run_tests {
like("A \x{263a} B z C", qr/A . B (??{ "z" }) C/,
"Match UTF-8 char in presence of (??{ }); Bug 20000731.001");
{
no warnings 'uninitialized';
ok(undef =~ /^([^\/]*)(.*)$/, "Used to cause a SEGV; Bug 20001021.005");
}
{
my $message = 'bug id 20001008.001';
my @x = ("stra\337e 138", "stra\337e 138");
for (@x) {
ok(s/(\d+)\s*([\w\-]+)/$1 . uc $2/e, $message);
ok(my ($latin) = /^(.+)(?:\s+\d)/, $message);
is($latin, "stra\337e", $message);
ok($latin =~ s/stra\337e/straße/, $message);
#
# Previous code follows, but outcommented - there were no tests.
#
# $latin =~ s/stra\337e/straße/; # \303\237 after the 2nd a
# use utf8; # needed for the raw UTF-8
# $latin =~ s!(s)tr(?:aß|s+e)!$1tr.!; # \303\237 after the a
}
}
{
# Fist half of the bug.
my $message = 'HEBREW ACCENT QADMA matched by .*; Bug 20001028.003';
my $X = chr (1448);
ok(my ($Y) = $X =~ /(.*)/, $message);
is($Y, v1448, $message);
is(length $Y, 1, $message);
# Second half of the bug.
$message = 'HEBREW ACCENT QADMA in replacement; Bug 20001028.003';
$X = '';
$X =~ s/^/chr(1488)/e;
is(length $X, 1, $message);
is(ord $X, 1488, $message);
}
{
my $message = 'Repeated s///; Bug 20001108.001';
my $X = "Szab\x{f3},Bal\x{e1}zs";
my $Y = $X;
$Y =~ s/(B)/$1/ for 0 .. 3;
is($Y, $X, $message);
is($X, "Szab\x{f3},Bal\x{e1}zs", $message);
}
{
my $message = 's/// on UTF-8 string; Bug 20000517.001';
my $x = "\x{100}A";
$x =~ s/A/B/;
is($x, "\x{100}B", $message);
is(length $x, 2, $message);
}
{
my $message = '\C and É; Bug 20001230.002';
ok("École" =~ /^\C\C(.)/ && $1 eq 'c', $message);
like("École", qr/^\C\C(c)/, $message);
}
{
# The original bug report had 'no utf8' here but that was irrelevant.
my $message = "Don't dump core; Bug 20010306.008";
my $a = "a\x{1234}";
like($a, qr/\w/, $message); # used to core dump.
}
{
my $message = '/g in scalar context; Bug 20010410.006';
for my $rx ('/(.*?)\{(.*?)\}/csg',
'/(.*?)\{(.*?)\}/cg',
'/(.*?)\{(.*?)\}/sg',
'/(.*?)\{(.*?)\}/g',
'/(.+?)\{(.+?)\}/csg',) {
my $i = 0;
my $input = "a{b}c{d}";
eval <<" --";
while (eval \$input =~ $rx) {
\$i ++;
}
--
is($i, 2, $message);
}
}
{
# Amazingly vertical tabulator is the same in ASCII and EBCDIC.
for ("\n", "\t", "\014", "\r") {
unlike($_, qr/[[:print:]]/, sprintf "\\%03o not in [[:print:]]; Bug 20010619.003", ord $_);
}
for (" ") {
like($_, qr/[[:print:]]/, "'$_' in [[:print:]]; Bug 20010619.003");
}
}
{
# [ID 20010814.004] pos() doesn't work when using =~m// in list context
$_ = "ababacadaea";
my $a = join ":", /b./gc;
my $b = join ":", /a./gc;
my $c = pos;
is("$a $b $c", 'ba:ba ad:ae 10', "pos() works with () = m//; Bug 20010814.004");
}
{
# [ID 20010407.006] matching utf8 return values from
# functions does not work
my $message = 'UTF-8 return values from functions; Bug 20010407.006';
package ID_20010407_006;
sub x {"a\x{1234}"}
my $x = x;
my $y;
::ok($x =~ /(..)/, $message);
$y = $1;
::ok(length ($y) == 2 && $y eq $x, $message);
::ok(x =~ /(..)/, $message);
$y = $1;
::ok(length ($y) == 2 && $y eq $x, $message);
}
{
# High bit bug -- japhy
my $x = "ab\200d";
ok $x =~ /.*?\200/, "High bit fine";
}
{
my $message = 'UTF-8 hash keys and /$/';
# http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters
# /2002-01/msg01327.html
my $u = "a\x{100}";
my $v = substr ($u, 0, 1);
my $w = substr ($u, 1, 1);
my %u = ($u => $u, $v => $v, $w => $w);
for (keys %u) {
my $m1 = /^\w*$/ ? 1 : 0;
my $m2 = $u {$_} =~ /^\w*$/ ? 1 : 0;
is($m1, $m2, $message);
}
}
{
my $message = "s///eg [change 13f46d054db22cf4]; Bug 20020124.005";
for my $char ("a", "\x{df}", "\x{100}") {
my $x = "$char b $char";
$x =~ s{($char)}{
"c" =~ /c/;
"x";
}ge;
is(substr ($x, 0, 1), substr ($x, -1, 1), $message);
}
}
{
my $message = "Correct pmop flags checked when empty pattern; Bug 20020412.005";
# Requires reuse of last successful pattern.
my $num = 123;
$num =~ /\d/;
for (0 .. 1) {
my $match = m?? + 0;
ok($match != $_, $message)
or diag(sprintf "'match one' %s on %s iteration" =>
$match ? 'succeeded' : 'failed',
$_ ? 'second' : 'first');
}
$num =~ /(\d)/;
my $result = join "" => $num =~ //g;
is($result, $num, $message);
}
{
my $message = 'UTF-8 regex matches above 32k; Bug 20020630.002';
for (['byte', "\x{ff}"], ['utf8', "\x{1ff}"]) {
my ($type, $char) = @$_;
for my $len (32000, 32768, 33000) {
my $s = $char . "f" x $len;
my $r = $s =~ /$char([f]*)/gc;
ok($r, $message) or diag("<$type x $len>");
ok(!$r || pos ($s) == $len + 1, $message)
or diag("<$type x $len>; pos = @{[pos $s]}");
}
}
}
{
my $s = "\x{100}" x 5;
my $ok = $s =~ /(\x{100}{4})/;
my ($ord, $len) = (ord $1, length $1);
ok $ok && $ord == 0x100 && $len == 4, "No panic: end_shift [change 0e933229fa758625]";
}
{
our $a = "x\x{100}";
chop $a; # Leaves the UTF-8 flag
$a .= "y"; # 1 byte before 'y'.
like($a, qr/^\C/, 'match one \C on 1-byte UTF-8; Bug 15763');
like($a, qr/^\C{1}/, 'match \C{1}; Bug 15763');
like($a, qr/^\Cy/, 'match \Cy; Bug 15763');
like($a, qr/^\C{1}y/, 'match \C{1}y; Bug 15763');
unlike($a, qr/^\C\Cy/, q {don't match two \Cy; Bug 15763});
unlike($a, qr/^\C{2}y/, q {don't match \C{2}y; Bug 15763});
$a = "\x{100}y"; # 2 bytes before "y"
like($a, qr/^\C/, 'match one \C on 2-byte UTF-8; Bug 15763');
like($a, qr/^\C{1}/, 'match \C{1}; Bug 15763');
like($a, qr/^\C\C/, 'match two \C; Bug 15763');
like($a, qr/^\C{2}/, 'match \C{2}; Bug 15763');
like($a, qr/^\C\C\C/, 'match three \C on 2-byte UTF-8 and a byte; Bug 15763');
like($a, qr/^\C{3}/, 'match \C{3}; Bug 15763');
like($a, qr/^\C\Cy/, 'match two \C; Bug 15763');
like($a, qr/^\C{2}y/, 'match \C{2}; Bug 15763');
unlike($a, qr/^\C\C\Cy/, q {don't match three \Cy; Bug 15763});
unlike($a, qr/^\C{2}\Cy/, q {don't match \C{2}\Cy; Bug 15763});
unlike($a, qr/^\C{3}y/, q {don't match \C{3}y; Bug 15763});
$a = "\x{1000}y"; # 3 bytes before "y"
like($a, qr/^\C/, 'match one \C on three-byte UTF-8; Bug 15763');
like($a, qr/^\C{1}/, 'match \C{1}; Bug 15763');
like($a, qr/^\C\C/, 'match two \C; Bug 15763');
like($a, qr/^\C{2}/, 'match \C{2}; Bug 15763');
like($a, qr/^\C\C\C/, 'match three \C; Bug 15763');
like($a, qr/^\C{3}/, 'match \C{3}; Bug 15763');
like($a, qr/^\C\C\C\C/, 'match four \C on three-byte UTF-8 and a byte; Bug 15763');
like($a, qr/^\C{4}/, 'match \C{4}; Bug 15763');
like($a, qr/^\C\C\Cy/, 'match three \Cy; Bug 15763');
like($a, qr/^\C{3}y/, 'match \C{3}y; Bug 15763');
unlike($a, qr/^\C\C\C\Cy/, q {don't match four \Cy; Bug 15763});
unlike($a, qr/^\C{4}y/, q {don't match \C{4}y; Bug 15763});
}
{
my $message = 'UTF-8 matching; Bug 15397';
like("\x{100}", qr/\x{100}/, $message);
like("\x{100}", qr/(\x{100})/, $message);
like("\x{100}", qr/(\x{100}){1}/, $message);
like("\x{100}\x{100}", qr/(\x{100}){2}/, $message);
like("\x{100}\x{100}", qr/(\x{100})(\x{100})/, $message);
}
{
my $message = 'Neither ()* nor ()*? sets $1 when matched 0 times; Bug 7471';
local $_ = 'CD';
ok(/(AB)*?CD/ && !defined $1, $message);
ok(/(AB)*CD/ && !defined $1, $message);
}
{
my $message = "Caching shouldn't prevent match; Bug 3547";
my $pattern = "^(b+?|a){1,2}c";
ok("bac" =~ /$pattern/ && $1 eq 'a', $message);
ok("bbac" =~ /$pattern/ && $1 eq 'a', $message);
ok("bbbac" =~ /$pattern/ && $1 eq 'a', $message);
ok("bbbbac" =~ /$pattern/ && $1 eq 'a', $message);
}
{
ok("\x{100}" =~ /(.)/, '$1 should keep UTF-8 ness; Bug 18232');
is($1, "\x{100}", '$1 is UTF-8; Bug 18232');
{ 'a' =~ /./; }
is($1, "\x{100}", '$1 is still UTF-8; Bug 18232');
isnt($1, "\xC4\x80", '$1 is not non-UTF-8; Bug 18232');
}
{
my $message = "Optimizer doesn't prematurely reject match; Bug 19767";
use utf8;
my $attr = 'Name-1';
my $NormalChar = qr /[\p{IsDigit}\p{IsLower}\p{IsUpper}]/;
my $NormalWord = qr /${NormalChar}+?/;
my $PredNameHyphen = qr /^${NormalWord}(\-${NormalWord})*?$/;
$attr =~ /^$/;
like($attr, $PredNameHyphen, $message); # Original test.
"a" =~ m/[b]/;
like("0", qr/\p{N}+\z/, $message); # Variant.
}
{
my $message = "(??{ }) doesn't return stale values; Bug 20683";
our $p = 1;
foreach (1, 2, 3, 4) {
$p ++ if /(??{ $p })/
}
is($p, 5, $message);
{
package P;
$a = 1;
sub TIESCALAR {bless []}
sub FETCH {$a ++}
}
tie $p, "P";
foreach (1, 2, 3, 4) {
/(??{ $p })/
}
is($p, 5, $message);
}
{
# Subject: Odd regexp behavior
# From: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk>
# Date: Wed, 26 Feb 2003 16:53:12 +0000
# Message-Id: <E18o4nw-0008Ly-00@wisbech.cl.cam.ac.uk>
# To: perl-unicode@perl.org
my $message = 'Markus Kuhn 2003-02-26';
my $x = "\x{2019}\nk";
ok($x =~ s/(\S)\n(\S)/$1 $2/sg, $message);
is($x, "\x{2019} k", $message);
$x = "b\nk";
ok($x =~ s/(\S)\n(\S)/$1 $2/sg, $message);
is($x, "b k", $message);
like("\x{2019}", qr/\S/, $message);
}
{
my $message = "(??{ .. }) in split doesn't corrupt its stack; Bug 21411";
our $i;
is('-1-3-5-', join('', split /((??{$i++}))/, '-1-3-5-'), $message);
no warnings 'syntax';
@_ = split /(?{'WOW'})/, 'abc';
local $" = "|";
is("@_", "a|b|c", $message);
}
is(join('-', split /(?{ split "" })/, "abc"), 'a-b-c', 'nested split');
{
$_ = "code: 'x' { '...' }\n"; study;
my @x; push @x, $& while m/'[^\']*'/gx;
local $" = ":";
is("@x", "'x':'...'", "Parse::RecDescent triggered infinite loop; Bug 17757");
}
{
sub func ($) {
ok("a\nb" !~ /^b/, "Propagated modifier; $_[0]; Bug 22354");
ok("a\nb" =~ /^b/m, "Propagated modifier; $_[0] - with /m; Bug 22354");
}
func "standalone";
$_ = "x"; s/x/func "in subst"/e;
$_ = "x"; s/x/func "in multiline subst"/em;
$_ = "x"; /x(?{func "in regexp"})/;
$_ = "x"; /x(?{func "in multiline regexp"})/m;
}
{
$_ = "abcdef\n";
my @x = m/./g;
is("abcde", $`, 'Global match sets $`; Bug 19049');
}
{
# [perl #23769] Unicode regex broken on simple example
# regrepeat() didn't handle UTF-8 EXACT case right.
my $Mess = 'regrepeat() handles UTF-8 EXACT case right';
my $message = "$Mess; Bug 23769";
my $s = "\x{a0}\x{a0}\x{a0}\x{100}"; chop $s;
like($s, qr/\x{a0}/, $message);
like($s, qr/\x{a0}+/, $message);
like($s, qr/\x{a0}\x{a0}/, $message);
$message = "$Mess (easy variant); Bug 23769";
ok("aaa\x{100}" =~ /(a+)/, $message);
is($1, "aaa", $message);
$message = "$Mess (easy invariant); Bug 23769";
ok("aaa\x{100} " =~ /(a+?)/, $message);
is($1, "a", $message);
$message = "$Mess (regrepeat variant); Bug 23769";
ok("\xa0\xa0\xa0\x{100} " =~ /(\xa0+?)/, $message);
is($1, "\xa0", $message);
$message = "$Mess (regrepeat invariant); Bug 23769";
ok("\xa0\xa0\xa0\x{100}" =~ /(\xa0+)/, $message);
is($1, "\xa0\xa0\xa0", $message);
$message = "$Mess (hard variant); Bug 23769";
ok("\xa0\xa1\xa0\xa1\xa0\xa1\x{100}" =~ /((?:\xa0\xa1)+?)/, $message);
is($1, "\xa0\xa1", $message);
$message = "$Mess (hard invariant); Bug 23769";
ok("ababab\x{100} " =~ /((?:ab)+)/, $message);
is($1, 'ababab', $message);
ok("\xa0\xa1\xa0\xa1\xa0\xa1\x{100}" =~ /((?:\xa0\xa1)+)/, $message);
is($1, "\xa0\xa1\xa0\xa1\xa0\xa1", $message);
ok("ababab\x{100} " =~ /((?:ab)+?)/, $message);
is($1, "ab", $message);
$message = "Don't match first byte of UTF-8 representation; Bug 23769";
unlike("\xc4\xc4\xc4", qr/(\x{100}+)/, $message);
unlike("\xc4\xc4\xc4", qr/(\x{100}+?)/, $message);
unlike("\xc4\xc4\xc4", qr/(\x{100}++)/, $message);
}
{
# perl panic: pp_match start/end pointers
is(eval {my ($x, $y) = "bca" =~ /^(?=.*(a)).*(bc)/; "$x-$y"}, "a-bc",
'Captures can move backwards in string; Bug 25269');
}
{
# \cA not recognized in character classes
like("a\cAb", qr/\cA/, '\cA in pattern; Bug 27940');
like("a\cAb", qr/[\cA]/, '\cA in character class; Bug 27940');
like("a\cAb", qr/[\cA-\cB]/, '\cA in character class range; Bug 27940');
like("abc", qr/[^\cA-\cB]/, '\cA in negated character class range; Bug 27940');
like("a\cBb", qr/[\cA-\cC]/, '\cB in character class range; Bug 27940');
like("a\cCbc", qr/[^\cA-\cB]/, '\cC in negated character class range; Bug 27940');
like("a\cAb", qr/(??{"\cA"})/, '\cA in ??{} pattern; Bug 27940');
unlike("ab", qr/a\cIb/x, '\cI in pattern; Bug 27940');
}
{
# perl #28532: optional zero-width match at end of string is ignored
ok("abc" =~ /^abc(\z)?/ && defined($1),
'Optional zero-width match at end of string; Bug 28532');
ok("abc" =~ /^abc(\z)??/ && !defined($1),
'Optional zero-width match at end of string; Bug 28532');
}
{
my $utf8 = "\xe9\x{100}"; chop $utf8;
my $latin1 = "\xe9";
like($utf8, qr/\xe9/i, "utf8/latin; Bug 36207");
like($utf8, qr/$latin1/i, "utf8/latin runtime; Bug 36207");
like($utf8, qr/(abc|\xe9)/i, "utf8/latin trie; Bug 36207");
like($utf8, qr/(abc|$latin1)/i, "utf8/latin trie runtime; Bug 36207");
like("\xe9", qr/$utf8/i, "latin/utf8; Bug 36207");
like("\xe9", qr/(abc|$utf8)/i, "latin/utf8 trie; Bug 36207");
like($latin1, qr/$utf8/i, "latin/utf8 runtime; Bug 36207");
like($latin1, qr/(abc|$utf8)/i, "latin/utf8 trie runtime; Bug 36207");
}
{
my $s = "abcd";
$s =~ /(..)(..)/g;
$s = $1;
$s = $2;
is($2, 'cd',
"Assigning to original string does not corrupt match vars; Bug 37038");
}
{
{
package wooosh;
sub gloople {"!"}
}
my $aeek = bless {} => 'wooosh';
is(do {$aeek -> gloople () =~ /(.)/g}, 1,
"//g match against return value of sub [change e26a497577f3ce7b]");
sub gloople {"!"}
is(do{gloople () =~ /(.)/g}, 1,
"change e26a497577f3ce7b didn't affect sub calls for some reason");
}
{
# [perl #78680]
# See changes 26925-26928, which reverted change 26410
{
package lv;
our $var = "abc";
sub variable : lvalue {$var}
}
my $o = bless [] => 'lv';
my $f = "";
my $r = eval {
for (1 .. 2) {
$f .= $1 if $o -> variable =~ /(.)/g;
}
1;
};
if ($r) {
is($f, "ab", "pos() retained between calls");
}
else {
ok 0, "Code failed: $@";
}
our $var = "abc";
sub variable : lvalue {$var}
my $g = "";
my $s = eval {
for (1 .. 2) {
$g .= $1 if variable =~ /(.)/g;
}
1;
};
if ($s) {
is($g, "ab", "pos() retained between calls");
}
else {
ok 0, "Code failed: $@";
}
}
SKIP:
{
skip "In EBCDIC" if $::IS_EBCDIC;
no warnings 'utf8';
$_ = pack 'U0C2', 0xa2, 0xf8; # Ill-formed UTF-8
my $ret = 0;
is(do {!($ret = s/[\0]+//g)}, 1,
"Ill-formed UTF-8 doesn't match NUL in class; Bug 37836");
}
{
# chr(65535) should be allowed in regexes
no warnings 'utf8'; # To allow non-characters
my ($c, $r, $s);
$c = chr 0xffff;
$c =~ s/$c//g;
is($c, "", "U+FFFF, parsed as atom; Bug 38293");
$c = chr 0xffff;
$r = "\\$c";
$c =~ s/$r//g;
is($c, "", "U+FFFF backslashed, parsed as atom; Bug 38293");
$c = chr 0xffff;
$c =~ s/[$c]//g;
is($c, "", "U+FFFF, parsed in class; Bug 38293");
$c = chr 0xffff;
$r = "[\\$c]";
$c =~ s/$r//g;
is($c, "", "U+FFFF backslashed, parsed in class; Bug 38293");
$s = "A\x{ffff}B";
$s =~ s/\x{ffff}//i;
is($s, "AB", "U+FFFF, EXACTF; Bug 38293");
$s = "\x{ffff}A";
$s =~ s/\bA//;
is($s, "\x{ffff}", "U+FFFF, BOUND; Bug 38293");
$s = "\x{ffff}!";
$s =~ s/\B!//;
is($s, "\x{ffff}", "U+FFFF, NBOUND; Bug 38293");
}
{
# The printing characters
my @chars = ("A" .. "Z");
my $delim = ",";
my $size = 32771 - 4;
my $str = '';
# Create some random junk. Inefficient, but it works.
for (my $i = 0; $i < $size; $ i++) {
$str .= $chars [rand @chars];
}
$str .= ($delim x 4);
my $res;
my $matched;
ok($str =~ s/^(.*?)${delim}{4}//s, "Pattern matches; Bug 39583");
is($str, "", "Empty string; Bug 39583");
ok(defined $1 && length ($1) == $size, '$1 is correct size; Bug 39583');
}
{
like("\0-A", qr/\c@-A/, '@- should not be interpolated in a pattern; Bug 27940');
like("\0\0A", qr/\c@+A/, '@+ should not be interpolated in a pattern; Bug 27940');
like("X\@-A", qr/X@-A/, '@- should not be interpolated in a pattern; Bug 27940');
like("X\@\@A", qr/X@+A/, '@+ should not be interpolated in a pattern; Bug 27940');
like("X\0A", qr/X\c@?A/, '\c@?; Bug 27940');
like("X\0A", qr/X\c@*A/, '\c@*; Bug 27940');
like("X\0A", qr/X\c@(A)/, '\c@(; Bug 27940');
like("X\0A", qr/X(\c@)A/, '\c@); Bug 27940');
like("X\0A", qr/X\c@|ZA/, '\c@|; Bug 27940');
like("X\@A", qr/X@?A/, '@?; Bug 27940');
like("X\@A", qr/X@*A/, '@*; Bug 27940');
like("X\@A", qr/X@(A)/, '@(; Bug 27940');
like("X\@A", qr/X(@)A/, '@); Bug 27940');
like("X\@A", qr/X@|ZA/, '@|; Bug 27940');
local $" = ','; # non-whitespace and non-RE-specific
like('abc', qr/(.)(.)(.)/, 'The last successful match is bogus; Bug 27940');
like("A@+B", qr/A@{+}B/, 'Interpolation of @+ in /@{+}/; Bug 27940');
like("A@-B", qr/A@{-}B/, 'Interpolation of @- in /@{-}/; Bug 27940');
like("A@+B", qr/A@{+}B/x, 'Interpolation of @+ in /@{+}/x; Bug 27940');
like("A@-B", qr/A@{-}B/x, 'Interpolation of @- in /@{-}/x; Bug 27940');
}
{
my $s = 'foo bar baz';
my (@k, @v, @fetch, $res);
my $count = 0;
my @names = qw ($+{A} $+{B} $+{C});
if ($s =~ /(?<A>foo)\s+(?<B>bar)?\s+(?<C>baz)/) {
while (my ($k, $v) = each (%+)) {
$count++;
}
@k = sort keys (%+);
@v = sort values (%+);
$res = 1;
push @fetch,
["$+{A}", "$1"],
["$+{B}", "$2"],
["$+{C}", "$3"],
;
}
foreach (0 .. 2) {
if ($fetch [$_]) {
is($fetch[$_][0], $fetch[$_][1], "$names[$_]; Bug 50496");
} else {
ok 0, $names[$_];
}
}
is($res, 1, "'$s' =~ /(?<A>foo)\\s+(?<B>bar)?\\s+(?<C>baz)/; Bug 50496");
is($count, 3, "Got 3 keys in %+ via each; Bug 50496");
is(0 + @k, 3, "Got 3 keys in %+ via keys; Bug 50496");
is("@k", "A B C", "Got expected keys; Bug 50496");
is("@v", "bar baz foo", "Got expected values; Bug 50496");
eval '
no warnings "uninitialized";
print for $+ {this_key_doesnt_exist};
';
is($@, '', 'lvalue $+ {...} should not throw an exception; Bug 50496');
}
{
#
# Almost the same as the block above, except that the capture is nested.
#
my $s = 'foo bar baz';
my (@k, @v, @fetch, $res);
my $count = 0;
my @names = qw ($+{A} $+{B} $+{C} $+{D});
if ($s =~ /(?<D>(?<A>foo)\s+(?<B>bar)?\s+(?<C>baz))/) {
while (my ($k,$v) = each(%+)) {
$count++;
}
@k = sort keys (%+);
@v = sort values (%+);
$res = 1;
push @fetch,
["$+{A}", "$2"],
["$+{B}", "$3"],
["$+{C}", "$4"],
["$+{D}", "$1"],
;
}
foreach (0 .. 3) {
if ($fetch [$_]) {
is($fetch[$_][0], $fetch[$_][1], "$names[$_]; Bug 50496");
} else {
ok 0, $names [$_];
}
}
is($res, 1, "'$s' =~ /(?<D>(?<A>foo)\\s+(?<B>bar)?\\s+(?<C>baz))/; Bug 50496");
is($count, 4, "Got 4 keys in %+ via each; Bug 50496");
is(@k, 4, "Got 4 keys in %+ via keys; Bug 50496");
is("@k", "A B C D", "Got expected keys; Bug 50496");
is("@v", "bar baz foo foo bar baz", "Got expected values; Bug 50496");
eval '
no warnings "uninitialized";
print for $+ {this_key_doesnt_exist};
';
is($@, '', 'lvalue $+ {...} should not throw an exception; Bug 50496');
}
{
my $str = 'abc';
my $count = 0;
my $mval = 0;
my $pval = 0;
while ($str =~ /b/g) {$mval = $#-; $pval = $#+; $count ++}
is($mval, 0, '@- should be empty; Bug 36046');
is($pval, 0, '@+ should be empty; Bug 36046');
is($count, 1, 'Should have matched once only; Bug 36046');
}
{
my $message = '/m in precompiled regexp; Bug 40684';
my $s = "abc\ndef";
my $rex = qr'^abc$'m;
ok($s =~ m/$rex/, $message);
ok($s =~ m/^abc$/m, $message);
}
{
my $message = '(?: ... )? should not lose $^R; Bug 36909';
$^R = 'Nothing';
{
local $^R = "Bad";
ok('x foofoo y' =~ m {
(foo) # $^R correctly set
(?{ "last regexp code result" })
}x, $message);
is($^R, 'last regexp code result', $message);
}
is($^R, 'Nothing', $message);
{
local $^R = "Bad";
ok('x foofoo y' =~ m {
(?:foo|bar)+ # $^R correctly set
(?{ "last regexp code result" })
}x, $message);
is($^R, 'last regexp code result', $message);
}
is($^R, 'Nothing', $message);
{
local $^R = "Bad";
ok('x foofoo y' =~ m {
(foo|bar)\1+ # $^R undefined
(?{ "last regexp code result" })
}x, $message);
is($^R, 'last regexp code result', $message);
}
is($^R, 'Nothing', $message);
{
local $^R = "Bad";
ok('x foofoo y' =~ m {
(foo|bar)\1 # This time without the +
(?{"last regexp code result"})
}x, $message);
is($^R, 'last regexp code result', $message);
}
is($^R, 'Nothing', $message);
}
{
my $message = 'Match is linear, not quadratic; Bug 22395';
our $count;
for my $l (10, 100, 1000) {
$count = 0;
('a' x $l) =~ /(.*)(?{$count++})[bc]/;
local $::TODO = "Should be L+1 not L*(L+3)/2 (L=$l)";
is($count, $l + 1, $message);
}
}
{
my $message = '@-/@+ should not have undefined values; Bug 22614';
local $_ = 'ab';
our @len = ();
/(.){1,}(?{push @len,0+@-})(.){1,}(?{})^/;
is("@len", "2 2 2", $message);
}
{
my $message = '$& set on s///; Bug 18209';
my $text = ' word1 word2 word3 word4 word5 word6 ';
my @words = ('word1', 'word3', 'word5');
my $count;
foreach my $word (@words) {
$text =~ s/$word\s//gi; # Leave a space to separate words
# in the resultant str.
# The following block is not working.
if ($&) {
$count ++;
}
# End bad block
}
is($count, 3, $message);
is($text, ' word2 word4 word6 ', $message);
}
{
# RT#6893
local $_ = qq (A\nB\nC\n);
my @res;
while (m#(\G|\n)([^\n]*)\n#gsx) {
push @res, "$2";
last if @res > 3;
}
is("@res", "A B C", "/g pattern shouldn't infinite loop; Bug 6893");
}
{
# No optimizer bug
my @tails = ('', '(?(1))', '(|)', '()?');
my @quants = ('*','+');
my $doit = sub {
my $pats = shift;
for (@_) {
for my $pat (@$pats) {
for my $quant (@quants) {
for my $tail (@tails) {
my $re = "($pat$quant\$)$tail";
ok(/$re/ && $1 eq $_, "'$_' =~ /$re/; Bug 41010");
ok(/$re/m && $1 eq $_, "'$_' =~ /$re/m; Bug 41010");
}
}
}
}
};
my @dpats = ('\d',
'[1234567890]',
'(1|[23]|4|[56]|[78]|[90])',
'(?:1|[23]|4|[56]|[78]|[90])',
'(1|2|3|4|5|6|7|8|9|0)',
'(?:1|2|3|4|5|6|7|8|9|0)');
my @spats = ('[ ]', ' ', '( |\t)', '(?: |\t)', '[ \t]', '\s');
my @sstrs = (' ');
my @dstrs = ('12345');
$doit -> (\@spats, @sstrs);
$doit -> (\@dpats, @dstrs);
}
{
# [perl #45605] Regexp failure with utf8-flagged and byte-flagged string
my $utf_8 = "\xd6schel";
utf8::upgrade ($utf_8);
$utf_8 =~ m {(\xd6|Ö)schel};
is($1, "\xd6", "Upgrade error; Bug 45605");
}
{
# Regardless of utf8ness any character matches itself when
# doing a case insensitive match. See also [perl #36207]
for my $o (0 .. 255) {
my @ch = (chr ($o), chr ($o));
utf8::upgrade ($ch [1]);
for my $u_str (0, 1) {
for my $u_pat (0, 1) {
like($ch[$u_str], qr/\Q$ch[$u_pat]\E/i,
"\$c =~ /\$c/i : chr ($o) : u_str = $u_str u_pat = $u_pat; Bug 36207");
like($ch[$u_str], qr/\Q$ch[$u_pat]\E|xyz/i,
"\$c=~/\$c|xyz/i : chr($o) : u_str = $u_str u_pat = $u_pat; Bug 36207");
}
}
}
}
{
my $message = '$REGMARK in replacement; Bug 49190';
our $REGMARK;
no warnings 'experimental::lexical_topic';
my $_ = "A";
ok(s/(*:B)A/$REGMARK/, $message);
is($_, "B", $message);
$_ = "CCCCBAA";
ok(s/(*:X)A+|(*:Y)B+|(*:Z)C+/$REGMARK/g, $message);
is($_, "ZYX", $message);
# Use a longer name to force reallocation of $REGMARK.
$_ = "CCCCBAA";
ok(s/(*:X)A+|(*:YYYYYYYYYYYYYYYY)B+|(*:Z)C+/$REGMARK/g, $message);
is($_, "ZYYYYYYYYYYYYYYYYX", $message);
}
{
my $message = 'Substitution evaluation in list context; Bug 52658';
my $reg = '../xxx/';
my @te = ($reg =~ m{^(/?(?:\.\./)*)},
$reg =~ s/(x)/'b'/eg > 1 ? '##' : '++');
is($reg, '../bbb/', $message);
is($te [0], '../', $message);
}
{
my $a = "xyzt" x 8192;
like($a, qr/\A(?>[a-z])*\z/,
'(?>) does not cause wrongness on long string; Bug 60034');
my $b = $a . chr 256;
chop $b;
is($a, $b, 'Bug 60034');
like($b, qr/\A(?>[a-z])*\z/,
'(?>) does not cause wrongness on long string with UTF-8; Bug 60034');
}
#
# Keep the following tests last -- they may crash perl
#
print "# Tests that follow may crash perl\n";
{
my $message = 'Pattern in a loop, failure should not ' .
'affect previous success; Bug 19049/38869';
my @list = (
'ab cdef', # Matches regex
('e' x 40000 ) .'ab c' # Matches not, but 'ab c' matches part of it
);
my $y;
my $x;
foreach (@list) {
m/ab(.+)cd/i; # The ignore-case seems to be important
$y = $1; # Use $1, which might not be from the last match!
$x = substr ($list [0], $- [0], $+ [0] - $- [0]);
}
is($y, ' ', $message);
is($x, 'ab cd', $message);
}
{
ok (("a" x (2 ** 15 - 10)) =~ /^()(a|bb)*$/, "Recursive stack cracker; Bug 24274");
ok ((q(a)x 100) =~ /^(??{'(.)'x 100})/,
"Regexp /^(??{'(.)'x 100})/ crashes older perls; Bug 24274");
}
{
# [perl #45337] utf8 + "[a]a{2}" + /$.../ = panic: sv_len_utf8 cache
local ${^UTF8CACHE} = -1;
my $message = "Shouldn't panic; Bug 45337";
my $s = "[a]a{2}";
utf8::upgrade $s;
like("aaa", qr/$s/, $message);
}
{
my $message = "Check if tree logic breaks \$^R; Bug 57042";
my $cond_re = qr/\s*
\s* (?:
\( \s* A (?{1})
| \( \s* B (?{2})
)
/x;
my @res;
for my $line ("(A)","(B)") {
if ($line =~ m/$cond_re/) {
push @res, $^R ? "#$^R" : "UNDEF";
}
}
is("@res","#1 #2", $message);
}
{
no warnings 'closure';
my $re = qr/A(??{"1"})/;
ok "A1B" =~ m/^((??{ $re }))((??{"B"}))$/;
ok $1 eq "A1";
ok $2 eq "B";
}
# This only works under -DEBUGGING because it relies on an assert().
{
# Check capture offset re-entrancy of utf8 code.
sub fswash { $_[0] =~ s/([>X])//g; }
my $k1 = "." x 4 . ">>";
fswash($k1);
my $k2 = "\x{f1}\x{2022}";
$k2 =~ s/([\360-\362])/>/g;
fswash($k2);
is($k2, "\x{2022}", "utf8::SWASHNEW doesn't cause capture leaks; Bug 60508");
}
{
# minimal CURLYM limited to 32767 matches
my @pat = (
qr{a(x|y)*b}, # CURLYM
qr{a(x|y)*?b}, # .. with minmod
qr{a([wx]|[yz])*b}, # .. and without tries
qr{a([wx]|[yz])*?b},
);
my $len = 32768;
my $s = join '', 'a', 'x' x $len, 'b';
for my $pat (@pat) {
like($s, $pat, "$pat; Bug 65372");
}
}
{
local $::TODO = "[perl #38133]";
"A" =~ /(((?:A))?)+/;
my $first = $2;
"A" =~ /(((A))?)+/;
my $second = $2;
is($first, $second);
}
{
my $message
= 'utf8 =~ /trie/ where trie matches a continuation octet; Bug 70998';
# Catch warnings:
my $w;
local $SIG{__WARN__} = sub { $w .= shift };
# This bug can be reduced to
qq{\x{30ab}} =~ /\xab|\xa9/;
# but it's nice to have a more 'real-world' test. The original test
# case from the RT ticket follows:
my %conv = (
"\xab" => "<",
"\xa9" => "(c)",
);
my $conv_rx = '(' . join('|', map { quotemeta } keys %conv) . ')';
$conv_rx = qr{$conv_rx};
my $x
= qq{\x{3042}\x{304b}\x{3055}\x{305f}\x{306a}\x{306f}\x{307e}}
. qq{\x{3084}\x{3089}\x{308f}\x{3093}\x{3042}\x{304b}\x{3055}}
. qq{\x{305f}\x{306a}\x{306f}\x{307e}\x{3084}\x{3089}\x{308f}}
. qq{\x{3093}\x{30a2}\x{30ab}\x{30b5}\x{30bf}\x{30ca}\x{30cf}}
. qq{\x{30de}\x{30e4}\x{30e9}\x{30ef}\x{30f3}\x{30a2}\x{30ab}}
. qq{\x{30b5}\x{30bf}\x{30ca}\x{30cf}\x{30de}\x{30e4}\x{30e9}}
. qq{\x{30ef}\x{30f3}\x{30a2}\x{30ab}\x{30b5}\x{30bf}\x{30ca}}
. qq{\x{30cf}\x{30de}\x{30e4}\x{30e9}\x{30ef}\x{30f3}};
$x =~ s{$conv_rx}{$conv{$1}}eg;
is($w, undef, $message);
}
{
# minimal CURLYM limited to 32767 matches
is(join("-", " abc def " =~ /(?=(\S+))/g), "abc-bc-c-def-ef-f",
'stclass optimisation does not break + inside (?=); Bug 68564');
}
{
use charnames ":full";
# Delayed interpolation of \N'
my $r1 = qr/\N{THAI CHARACTER SARA I}/;
my $s1 = "\x{E34}\x{E34}\x{E34}\x{E34}";
# Bug #56444
ok $s1 =~ /$r1+/, 'my $r1 = qr/\N{THAI CHARACTER SARA I}/; my $s1 = "\x{E34}\x{E34}\x{E34}\x{E34}; $s1 =~ /$r1+/';
# Bug #62056
ok "${s1}A" =~ m/$s1\N{LATIN CAPITAL LETTER A}/, '"${s1}A" =~ m/$s1\N{LATIN CAPITAL LETTER A}/';
ok "abbbbc" =~ m/\N{1}/ && $& eq "a", '"abbbbc" =~ m/\N{1}/ && $& eq "a"';
ok "abbbbc" =~ m/\N{3,4}/ && $& eq "abbb", '"abbbbc" =~ m/\N{3,4}/ && $& eq "abbb"';
}
{
use charnames ":full";
my $message = '[perl #74982] Period coming after \N{}';
ok("\x{ff08}." =~ m/\N{FULLWIDTH LEFT PARENTHESIS}./ && $& eq "\x{ff08}.", $message);
ok("\x{ff08}." =~ m/[\N{FULLWIDTH LEFT PARENTHESIS}]./ && $& eq "\x{ff08}.", $message);
}
SKIP: {
######## "Segfault using HTML::Entities", Richard Jolly <richardjolly@mac.com>, <A3C7D27E-C9F4-11D8-B294-003065AE00B6@mac.com> in perl-unicode@perl.org
skip('Perl configured without Encode module', 1)
unless $Config{extensions} =~ / Encode /;
# Test case cut down by jhi
fresh_perl_like(<<'EOP', qr!Malformed UTF-8 character \(unexpected end of string\) in substitution \(s///\) at!, {}, 'Segfault using HTML::Entities');
use Encode;
my $t = ord('A') == 193 ? "\xEA" : "\xE9";
Encode::_utf8_on($t);
$t =~ s/([^a])//ge;
EOP
}
{
# pattern must be compiled late or we can break the test file
my $message = '[perl #115050] repeated nothings in a trie can cause panic';
my $pattern;
$pattern = '[xyz]|||';
ok("blah blah" =~ /$pattern/, $message);
ok("blah blah" =~ /(?:$pattern)h/, $message);
$pattern = '|||[xyz]';
ok("blah blah" =~ /$pattern/, $message);
ok("blah blah" =~ /(?:$pattern)h/, $message);
}
{
# [perl #4289] First mention $& after a match
local $::TODO = "these tests fail without Copy-on-Write enabled"
if $Config{ccflags} =~ /PERL_NO_COW/;
fresh_perl_is(
'$_ = "abc"; /b/g; $_ = "hello"; print eval q|$&|, "\n"',
"b\n", {}, '$& first mentioned after match');
fresh_perl_is(
'$_ = "abc"; /b/g; $_ = "hello"; print eval q|$`|, "\n"',
"a\n", {}, '$` first mentioned after match');
fresh_perl_is(
'$_ = "abc"; /b/g; $_ = "hello"; print eval q|$\'|,"\n"',
"c\n", {}, '$\' first mentioned after match');
}
{
# [perl #118175] threaded perl-5.18.0 fails pat_rt_report_thr.t
# this tests some related failures
#
# The tests in the block *only* fail when run on 32-bit systems
# with a malloc that allocates above the 2GB line. On the system
# in the report above that only happened in a thread.
my $s = "\x{1ff}" . "f" x 32;
ok($s =~ /\x{1ff}[[:alpha:]]+/gca, "POSIXA pointer wrap");
# this one segfaulted under the conditions above
# of course, CANY is evil, maybe it should crash
ok($s =~ /.\C+/, "CANY pointer wrap");
}
} # End of sub run_tests
1;
|