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 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145
|
#!./perl
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
require './test.pl';
}
use strict; # Amazed that this hackery can be made strict ...
use Tie::Scalar;
# read in a file
sub cat {
my $file = shift;
local $/;
open my $fh, $file or die "can't open '$file': $!";
my $data = <$fh>;
close $fh;
$data;
}
# read in a utf-8 file
#
sub cat_utf8 {
my $file = shift;
local $/;
open my $fh, '<', $file or die "can't open '$file': $!";
binmode $fh, ':utf8';
my $data = <$fh> // die "Can't read from '$file': $!";
close $fh or die "error closing '$file': $!";
$data;
}
# write a format to a utf8 file, then read it back in and compare
sub is_format_utf8 {
my ($glob, $want, $desc) = @_;
local $::Level = $::Level + 1;
my $file = 'Op_write.tmp';
open $glob, '>:utf8', $file or die "Can't create '$file': $!";
write $glob;
close $glob or die "Could not close '$file': $!";
is(cat_utf8($file), $want, $desc);
}
sub like_format_utf8 {
my ($glob, $want, $desc) = @_;
local $::Level = $::Level + 1;
my $file = 'Op_write.tmp';
open $glob, '>:utf8', $file or die "Can't create '$file': $!";
write $glob;
close $glob or die "Could not close '$file': $!";
like(cat_utf8($file), $want, $desc);
}
#-- testing numeric fields in all variants (WL)
sub swrite {
my $format = shift;
local $^A = ""; # don't litter, use a local bin
formline( $format, @_ );
return $^A;
}
my @NumTests = (
# [ format, value1, expected1, value2, expected2, .... ]
[ '@###', 0, ' 0', 1, ' 1', 9999.6, '####',
9999.4999, '9999', -999.6, '####', 1e+100, '####' ],
[ '@0##', 0, '0000', 1, '0001', 9999.6, '####',
-999.4999, '-999', -999.6, '####', 1e+100, '####' ],
[ '^###', 0, ' 0', undef, ' ' ],
[ '^0##', 0, '0000', undef, ' ' ],
[ '@###.', 0, ' 0.', 1, ' 1.', 9999.6, '#####',
9999.4999, '9999.', -999.6, '#####' ],
[ '@##.##', 0, ' 0.00', 1, ' 1.00', 999.996, '######',
999.99499, '999.99', -100, '######' ],
[ '@0#.##', 0, '000.00', 1, '001.00', 10, '010.00',
-0.0001, qr/^[\-0]00\.00$/ ],
);
my $num_tests = 0;
for my $tref ( @NumTests ){
$num_tests += (@$tref - 1)/2;
}
#---------------------------------------------------------
# number of tests in section 1
my $bas_tests = 21;
# number of tests in section 3
my $bug_tests = 66 + 3 * 3 * 5 * 2 * 3 + 2 + 66 + 4 + 2 + 3 + 96 + 11 + 3;
# number of tests in section 4
my $hmb_tests = 37;
my $tests = $bas_tests + $num_tests + $bug_tests + $hmb_tests;
plan $tests;
############
## Section 1
############
use vars qw($fox $multiline $foo $good);
format OUT =
the quick brown @<<
$fox
jumped
@*
$multiline
^<<<<<<<<<
$foo
^<<<<<<<<<
$foo
^<<<<<<...
$foo
now @<<the@>>>> for all@|||||men to come @<<<<
{
'i' . 's', "time\n", $good, 'to'
}
.
open(OUT, '>Op_write.tmp') || die "Can't create Op_write.tmp";
END { unlink_all 'Op_write.tmp' }
$fox = 'foxiness';
$good = 'good';
$multiline = "forescore\nand\nseven years\n";
$foo = 'when in the course of human events it becomes necessary';
write(OUT);
close OUT or die "Could not close: $!";
my $right =
"the quick brown fox
jumped
forescore
and
seven years
when in
the course
of huma...
now is the time for all good men to come to\n";
is cat('Op_write.tmp'), $right and unlink_all 'Op_write.tmp';
$fox = 'wolfishness';
my $fox = 'foxiness'; # Test a lexical variable.
format OUT2 =
the quick brown @<<
$fox
jumped
@*
$multiline
^<<<<<<<<< ~~
$foo
now @<<the@>>>> for all@|||||men to come @<<<<
'i' . 's', "time\n", $good, 'to'
.
open OUT2, '>Op_write.tmp' or die "Can't create Op_write.tmp";
$good = 'good';
$multiline = "forescore\nand\nseven years\n";
$foo = 'when in the course of human events it becomes necessary';
write(OUT2);
close OUT2 or die "Could not close: $!";
$right =
"the quick brown fox
jumped
forescore
and
seven years
when in
the course
of human
events it
becomes
necessary
now is the time for all good men to come to\n";
is cat('Op_write.tmp'), $right and unlink_all 'Op_write.tmp';
eval <<'EOFORMAT';
format OUT2 =
the brown quick @<<
$fox
jumped
@*
$multiline
and
^<<<<<<<<< ~~
$foo
now @<<the@>>>> for all@|||||men to come @<<<<
'i' . 's', "time\n", $good, 'to'
.
EOFORMAT
open(OUT2, '>Op_write.tmp') || die "Can't create Op_write.tmp";
$fox = 'foxiness';
$good = 'good';
$multiline = "forescore\nand\nseven years\n";
$foo = 'when in the course of human events it becomes necessary';
write(OUT2);
close OUT2 or die "Could not close: $!";
$right =
"the brown quick fox
jumped
forescore
and
seven years
and
when in
the course
of human
events it
becomes
necessary
now is the time for all good men to come to\n";
is cat('Op_write.tmp'), $right and unlink_all 'Op_write.tmp';
# formline tests
$right = <<EOT;
@ a
@> ab
@>> abc
@>>> abc
@>>>> abc
@>>>>> abc
@>>>>>> abc
@>>>>>>> abc
@>>>>>>>> abc
@>>>>>>>>> abc
@>>>>>>>>>> abc
EOT
my $was1 = my $was2 = '';
use vars '$format2';
for (0..10) {
# lexical picture
$^A = '';
my $format1 = '@' . '>' x $_;
formline $format1, 'abc';
$was1 .= "$format1 $^A\n";
# global
$^A = '';
local $format2 = '@' . '>' x $_;
formline $format2, 'abc';
$was2 .= "$format2 $^A\n";
}
is $was1, $right;
is $was2, $right;
$^A = '';
# more test
format OUT3 =
^<<<<<<...
$foo
.
open(OUT3, '>Op_write.tmp') || die "Can't create Op_write.tmp";
$foo = 'fit ';
write(OUT3);
close OUT3 or die "Could not close: $!";
$right =
"fit\n";
is cat('Op_write.tmp'), $right and unlink_all 'Op_write.tmp';
# test lexicals and globals
{
my $test = curr_test();
my $this = "ok";
our $that = $test;
format LEX =
@<<@|
$this,$that
.
open(LEX, ">&STDOUT") or die;
write LEX;
$that = ++$test;
write LEX;
close LEX or die "Could not close: $!";
curr_test($test + 1);
}
# LEX_INTERPNORMAL test
my %e = ( a => 1 );
format OUT4 =
@<<<<<<
"$e{a}"
.
open OUT4, ">Op_write.tmp" or die "Can't create Op_write.tmp";
write (OUT4);
close OUT4 or die "Could not close: $!";
is cat('Op_write.tmp'), "1\n" and unlink_all "Op_write.tmp";
# More LEX_INTERPNORMAL
format OUT4a=
@<<<<<<<<<<<<<<<
"${; use
strict; \'Nasdaq dropping like flies'}"
.
open OUT4a, ">Op_write.tmp" or die "Can't create Op_write.tmp";
write (OUT4a);
close OUT4a or die "Could not close: $!";
is cat('Op_write.tmp'), "Nasdaq dropping\n", 'skipspace inside "${...}"'
and unlink_all "Op_write.tmp";
eval <<'EOFORMAT';
format OUT10 =
@####.## @0###.##
$test1, $test1
.
EOFORMAT
open(OUT10, '>Op_write.tmp') || die "Can't create Op_write.tmp";
use vars '$test1';
$test1 = 12.95;
write(OUT10);
close OUT10 or die "Could not close: $!";
$right = " 12.95 00012.95\n";
is cat('Op_write.tmp'), $right and unlink_all 'Op_write.tmp';
eval <<'EOFORMAT';
format OUT11 =
@0###.##
$test1
@ 0#
$test1
@0 #
$test1
.
EOFORMAT
open(OUT11, '>Op_write.tmp') || die "Can't create Op_write.tmp";
$test1 = 12.95;
write(OUT11);
close OUT11 or die "Could not close: $!";
$right =
"00012.95
1 0#
10 #\n";
is cat('Op_write.tmp'), $right and unlink_all 'Op_write.tmp';
{
my $test = curr_test();
my $el;
format OUT12 =
ok ^<<<<<<<<<<<<<<~~ # sv_chop() naze
$el
.
my %hash = ($test => 3);
open(OUT12, '>Op_write.tmp') || die "Can't create Op_write.tmp";
for $el (keys %hash) {
write(OUT12);
}
close OUT12 or die "Could not close: $!";
print cat('Op_write.tmp');
curr_test($test + 1);
}
{
my $test = curr_test();
# Bug report and testcase by Alexey Tourbin
my $v;
tie $v, 'Tie::StdScalar';
$v = $test;
format OUT13 =
ok ^<<<<<<<<< ~~
$v
.
open(OUT13, '>Op_write.tmp') || die "Can't create Op_write.tmp";
write(OUT13);
close OUT13 or die "Could not close: $!";
print cat('Op_write.tmp');
curr_test($test + 1);
}
{ # test 14
# Bug #24774 format without trailing \n failed assertion, but this
# must fail since we have a trailing ; in the eval'ed string (WL)
my @v = ('k');
eval "format OUT14 = \n@\n\@v";
like $@, qr/Format not terminated/;
}
{ # test 15
# text lost in ^<<< field with \r in value (WL)
my $txt = "line 1\rline 2";
format OUT15 =
^<<<<<<<<<<<<<<<<<<
$txt
^<<<<<<<<<<<<<<<<<<
$txt
.
open(OUT15, '>Op_write.tmp') || die "Can't create Op_write.tmp";
write(OUT15);
close OUT15 or die "Could not close: $!";
my $res = cat('Op_write.tmp');
is $res, "line 1\nline 2\n";
}
{ # test 16: multiple use of a variable in same line with ^<
my $txt = "this_is_block_1 this_is_block_2 this_is_block_3 this_is_block_4";
format OUT16 =
^<<<<<<<<<<<<<<<< ^<<<<<<<<<<<<<<<<
$txt, $txt
^<<<<<<<<<<<<<<<< ^<<<<<<<<<<<<<<<<
$txt, $txt
.
open(OUT16, '>Op_write.tmp') || die "Can't create Op_write.tmp";
write(OUT16);
close OUT16 or die "Could not close: $!";
my $res = cat('Op_write.tmp');
is $res, <<EOD;
this_is_block_1 this_is_block_2
this_is_block_3 this_is_block_4
EOD
}
{ # test 17: @* "should be on a line of its own", but it should work
# cleanly with literals before and after. (WL)
my $txt = "This is line 1.\nThis is the second line.\nThird and last.\n";
format OUT17 =
Here we go: @* That's all, folks!
$txt
.
open(OUT17, '>Op_write.tmp') || die "Can't create Op_write.tmp";
write(OUT17);
close OUT17 or die "Could not close: $!";
my $res = cat('Op_write.tmp');
chomp( $txt );
my $exp = <<EOD;
Here we go: $txt That's all, folks!
EOD
is $res, $exp;
}
{ # test 18: @# and ~~ would cause runaway format, but we now
# catch this while compiling (WL)
format OUT18 =
@######## ~~
10
.
open(OUT18, '>Op_write.tmp') || die "Can't create Op_write.tmp";
eval { write(OUT18); };
like $@, qr/Repeated format line will never terminate/;
close OUT18 or die "Could not close: $!";
}
{ # test 19: \0 in an evel'ed format, doesn't cause empty lines (WL)
my $v = 'gaga';
eval "format OUT19 = \n" .
'@<<<' . "\0\n" .
'$v' . "\n" .
'@<<<' . "\0\n" .
'$v' . "\n.\n";
open(OUT19, '>Op_write.tmp') || die "Can't create Op_write.tmp";
write(OUT19);
close OUT19 or die "Could not close: $!";
my $res = cat('Op_write.tmp');
is $res, <<EOD;
gaga\0
gaga\0
EOD
}
{ # test 20: hash accesses; single '}' must not terminate format '}' (WL)
my %h = ( xkey => 'xval', ykey => 'yval' );
format OUT20 =
@>>>> @<<<< ~~
each %h
@>>>> @<<<<
$h{xkey}, $h{ykey}
@>>>> @<<<<
{ $h{xkey}, $h{ykey}
}
}
.
my $exp = '';
while( my( $k, $v ) = each( %h ) ){
$exp .= sprintf( "%5s %s\n", $k, $v );
}
$exp .= sprintf( "%5s %s\n", $h{xkey}, $h{ykey} );
$exp .= sprintf( "%5s %s\n", $h{xkey}, $h{ykey} );
$exp .= "}\n";
open(OUT20, '>Op_write.tmp') || die "Can't create Op_write.tmp";
write(OUT20);
close OUT20 or die "Could not close: $!";
my $res = cat('Op_write.tmp');
is $res, $exp;
}
#####################
## Section 2
## numeric formatting
#####################
curr_test($bas_tests + 1);
for my $tref ( @NumTests ){
my $writefmt = shift( @$tref );
while (@$tref) {
my $val = shift @$tref;
my $expected = shift @$tref;
my $writeres = swrite( $writefmt, $val );
if (ref $expected) {
like $writeres, $expected, $writefmt;
} else {
is $writeres, $expected, $writefmt;
}
}
}
#####################################
## Section 3
## Easiest to add new tests just here
#####################################
# DAPM. Exercise a couple of error codepaths
{
local $~ = '';
eval { write };
like $@, qr/Undefined format ""/, 'format with 0-length name';
$~ = "\0foo";
eval { write };
like $@, qr/Undefined format "\0foo"/,
'no such format beginning with null';
$~ = "NOSUCHFORMAT";
eval { write };
like $@, qr/Undefined format "NOSUCHFORMAT"/, 'no such format';
}
select +(select(OUT21), do {
open(OUT21, '>Op_write.tmp') || die "Can't create Op_write.tmp";
format OUT21 =
@<<
$_
.
local $^ = '';
local $= = 1;
$_ = "aataaaaaaaaaaaaaa"; eval { write(OUT21) };
like $@, qr/Undefined top format ""/, 'top format with 0-length name';
$^ = "\0foo";
# For some reason, we have to do this twice to get the error again.
$_ = "aataaaaaaaaaaaaaa"; eval { write(OUT21) };
$_ = "aataaaaaaaaaaaaaa"; eval { write(OUT21) };
like $@, qr/Undefined top format "\0foo"/,
'no such top format beginning with null';
$^ = "NOSUCHFORMAT";
$_ = "aataaaaaaaaaaaaaa"; eval { write(OUT21) };
$_ = "aataaaaaaaaaaaaaa"; eval { write(OUT21) };
like $@, qr/Undefined top format "NOSUCHFORMAT"/, 'no such top format';
# reset things;
eval { write(OUT21) };
undef $^A;
close OUT21 or die "Could not close: $!";
})[0];
# [perl #119847], [perl #119849], [perl #119851]
# Non-real vars like tied, overloaded and refs could, when stringified,
# fail to be processed properly, causing infinite loops on ~~, utf8
# warnings etc, ad nauseum.
my $u22a = "N" x 8;
format OUT22a =
'^<<<<<<<<'~~
$u22a
.
is_format_utf8(\*OUT22a,
"'NNNNNNNN '\n");
my $u22b = "N" x 8;
utf8::upgrade($u22b);
format OUT22b =
'^<<<<<<<<'~~
$u22b
.
is_format_utf8(\*OUT22b,
"'NNNNNNNN '\n");
my $u22c = "\x{FF}" x 8;
format OUT22c =
'^<<<<<<<<'~~
$u22c
.
is_format_utf8(\*OUT22c,
"'\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF} '\n");
my $u22d = "\x{FF}" x 8;
utf8::upgrade($u22d);
format OUT22d =
'^<<<<<<<<'~~
$u22d
.
is_format_utf8(\*OUT22d,
"'\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF} '\n");
my $u22e = "\x{100}" x 8;
format OUT22e =
'^<<<<<<<<'~~
$u22e
.
is_format_utf8(\*OUT22e,
"'\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100} '\n");
my $u22f = "N" x 8;
format OUT22f =
'^<'~~
$u22f
.
is_format_utf8(\*OUT22f,
"'NN'\n"x4);
my $u22g = "N" x 8;
utf8::upgrade($u22g);
format OUT22g =
'^<'~~
$u22g
.
is_format_utf8(\*OUT22g,
"'NN'\n"x4);
my $u22h = "\x{FF}" x 8;
format OUT22h =
'^<'~~
$u22h
.
is_format_utf8(\*OUT22h,
"'\x{FF}\x{FF}'\n"x4);
my $u22i = "\x{FF}" x 8;
utf8::upgrade($u22i);
format OUT22i =
'^<'~~
$u22i
.
is_format_utf8(\*OUT22i,
"'\x{FF}\x{FF}'\n"x4);
my $u22j = "\x{100}" x 8;
format OUT22j =
'^<'~~
$u22j
.
is_format_utf8(\*OUT22j,
"'\x{100}\x{100}'\n"x4);
tie my $u23a, 'Tie::StdScalar';
$u23a = "N" x 8;
format OUT23a =
'^<<<<<<<<'~~
$u23a
.
is_format_utf8(\*OUT23a,
"'NNNNNNNN '\n");
tie my $u23b, 'Tie::StdScalar';
$u23b = "N" x 8;
utf8::upgrade($u23b);
format OUT23b =
'^<<<<<<<<'~~
$u23b
.
is_format_utf8(\*OUT23b,
"'NNNNNNNN '\n");
tie my $u23c, 'Tie::StdScalar';
$u23c = "\x{FF}" x 8;
format OUT23c =
'^<<<<<<<<'~~
$u23c
.
is_format_utf8(\*OUT23c,
"'\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF} '\n");
tie my $u23d, 'Tie::StdScalar';
my $temp = "\x{FF}" x 8;
utf8::upgrade($temp);
$u23d = $temp;
format OUT23d =
'^<<<<<<<<'~~
$u23d
.
is_format_utf8(\*OUT23d,
"'\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF} '\n");
tie my $u23e, 'Tie::StdScalar';
$u23e = "\x{100}" x 8;
format OUT23e =
'^<<<<<<<<'~~
$u23e
.
is_format_utf8(\*OUT23e,
"'\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100} '\n");
tie my $u23f, 'Tie::StdScalar';
$u23f = "N" x 8;
format OUT23f =
'^<'~~
$u23f
.
is_format_utf8(\*OUT23f,
"'NN'\n"x4);
tie my $u23g, 'Tie::StdScalar';
my $temp = "N" x 8;
utf8::upgrade($temp);
$u23g = $temp;
format OUT23g =
'^<'~~
$u23g
.
is_format_utf8(\*OUT23g,
"'NN'\n"x4);
tie my $u23h, 'Tie::StdScalar';
$u23h = "\x{FF}" x 8;
format OUT23h =
'^<'~~
$u23h
.
is_format_utf8(\*OUT23h,
"'\x{FF}\x{FF}'\n"x4);
$temp = "\x{FF}" x 8;
utf8::upgrade($temp);
tie my $u23i, 'Tie::StdScalar';
$u23i = $temp;
format OUT23i =
'^<'~~
$u23i
.
is_format_utf8(\*OUT23i,
"'\x{FF}\x{FF}'\n"x4);
tie my $u23j, 'Tie::StdScalar';
$u23j = "\x{100}" x 8;
format OUT23j =
'^<'~~
$u23j
.
is_format_utf8(\*OUT23j,
"'\x{100}\x{100}'\n"x4);
{
package UTF8Toggle;
sub TIESCALAR {
my $class = shift;
my $value = shift;
my $state = shift||0;
return bless [$value, $state], $class;
}
sub FETCH {
my $self = shift;
$self->[1] = ! $self->[1];
if ($self->[1]) {
utf8::downgrade($self->[0]);
} else {
utf8::upgrade($self->[0]);
}
$self->[0];
}
sub STORE {
my $self = shift;
$self->[0] = shift;
}
}
tie my $u24a, 'UTF8Toggle';
$u24a = "N" x 8;
format OUT24a =
'^<<<<<<<<'~~
$u24a
.
is_format_utf8(\*OUT24a,
"'NNNNNNNN '\n");
tie my $u24b, 'UTF8Toggle';
$u24b = "N" x 8;
utf8::upgrade($u24b);
format OUT24b =
'^<<<<<<<<'~~
$u24b
.
is_format_utf8(\*OUT24b,
"'NNNNNNNN '\n");
tie my $u24c, 'UTF8Toggle';
$u24c = "\x{FF}" x 8;
format OUT24c =
'^<<<<<<<<'~~
$u24c
.
is_format_utf8(\*OUT24c,
"'\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF} '\n");
tie my $u24d, 'UTF8Toggle', 1;
$u24d = "\x{FF}" x 8;
format OUT24d =
'^<<<<<<<<'~~
$u24d
.
is_format_utf8(\*OUT24d,
"'\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF} '\n");
tie my $u24f, 'UTF8Toggle';
$u24f = "N" x 8;
format OUT24f =
'^<'~~
$u24f
.
is_format_utf8(\*OUT24f,
"'NN'\n"x4);
tie my $u24g, 'UTF8Toggle';
my $temp = "N" x 8;
utf8::upgrade($temp);
$u24g = $temp;
format OUT24g =
'^<'~~
$u24g
.
is_format_utf8(\*OUT24g,
"'NN'\n"x4);
tie my $u24h, 'UTF8Toggle';
$u24h = "\x{FF}" x 8;
format OUT24h =
'^<'~~
$u24h
.
is_format_utf8(\*OUT24h,
"'\x{FF}\x{FF}'\n"x4);
tie my $u24i, 'UTF8Toggle', 1;
$u24i = "\x{FF}" x 8;
format OUT24i =
'^<'~~
$u24i
.
is_format_utf8(\*OUT24i,
"'\x{FF}\x{FF}'\n"x4);
{
package OS;
use overload '""' => sub { ${$_[0]}; };
sub new {
my ($class, $value) = @_;
bless \$value, $class;
}
}
my $u25a = OS->new("N" x 8);
format OUT25a =
'^<<<<<<<<'~~
$u25a
.
is_format_utf8(\*OUT25a,
"'NNNNNNNN '\n");
my $temp = "N" x 8;
utf8::upgrade($temp);
my $u25b = OS->new($temp);
format OUT25b =
'^<<<<<<<<'~~
$u25b
.
is_format_utf8(\*OUT25b,
"'NNNNNNNN '\n");
my $u25c = OS->new("\x{FF}" x 8);
format OUT25c =
'^<<<<<<<<'~~
$u25c
.
is_format_utf8(\*OUT25c,
"'\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF} '\n");
$temp = "\x{FF}" x 8;
utf8::upgrade($temp);
my $u25d = OS->new($temp);
format OUT25d =
'^<<<<<<<<'~~
$u25d
.
is_format_utf8(\*OUT25d,
"'\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF} '\n");
my $u25e = OS->new("\x{100}" x 8);
format OUT25e =
'^<<<<<<<<'~~
$u25e
.
is_format_utf8(\*OUT25e,
"'\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100} '\n");
my $u25f = OS->new("N" x 8);
format OUT25f =
'^<'~~
$u25f
.
is_format_utf8(\*OUT25f,
"'NN'\n"x4);
$temp = "N" x 8;
utf8::upgrade($temp);
my $u25g = OS->new($temp);
format OUT25g =
'^<'~~
$u25g
.
is_format_utf8(\*OUT25g,
"'NN'\n"x4);
my $u25h = OS->new("\x{FF}" x 8);
format OUT25h =
'^<'~~
$u25h
.
is_format_utf8(\*OUT25h,
"'\x{FF}\x{FF}'\n"x4);
$temp = "\x{FF}" x 8;
utf8::upgrade($temp);
my $u25i = OS->new($temp);
format OUT25i =
'^<'~~
$u25i
.
is_format_utf8(\*OUT25i,
"'\x{FF}\x{FF}'\n"x4);
my $u25j = OS->new("\x{100}" x 8);
format OUT25j =
'^<'~~
$u25j
.
is_format_utf8(\*OUT25j,
"'\x{100}\x{100}'\n"x4);
{
package OS::UTF8Toggle;
use overload '""' => sub {
my $self = shift;
$self->[1] = ! $self->[1];
if ($self->[1]) {
utf8::downgrade($self->[0]);
} else {
utf8::upgrade($self->[0]);
}
$self->[0];
};
sub new {
my ($class, $value, $state) = @_;
bless [$value, $state], $class;
}
}
my $u26a = OS::UTF8Toggle->new("N" x 8);
format OUT26a =
'^<<<<<<<<'~~
$u26a
.
is_format_utf8(\*OUT26a,
"'NNNNNNNN '\n");
my $u26b = OS::UTF8Toggle->new("N" x 8, 1);
format OUT26b =
'^<<<<<<<<'~~
$u26b
.
is_format_utf8(\*OUT26b,
"'NNNNNNNN '\n");
my $u26c = OS::UTF8Toggle->new("\x{FF}" x 8);
format OUT26c =
'^<<<<<<<<'~~
$u26c
.
is_format_utf8(\*OUT26c,
"'\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF} '\n");
my $u26d = OS::UTF8Toggle->new("\x{FF}" x 8, 1);
format OUT26d =
'^<<<<<<<<'~~
$u26d
.
is_format_utf8(\*OUT26d,
"'\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF} '\n");
my $u26f = OS::UTF8Toggle->new("N" x 8);
format OUT26f =
'^<'~~
$u26f
.
is_format_utf8(\*OUT26f,
"'NN'\n"x4);
my $u26g = OS::UTF8Toggle->new("N" x 8, 1);
format OUT26g =
'^<'~~
$u26g
.
is_format_utf8(\*OUT26g,
"'NN'\n"x4);
my $u26h = OS::UTF8Toggle->new("\x{FF}" x 8);
format OUT26h =
'^<'~~
$u26h
.
is_format_utf8(\*OUT26h,
"'\x{FF}\x{FF}'\n"x4);
my $u26i = OS::UTF8Toggle->new("\x{FF}" x 8, 1);
format OUT26i =
'^<'~~
$u26i
.
is_format_utf8(\*OUT26i,
"'\x{FF}\x{FF}'\n"x4);
{
my $zero = $$ - $$;
package Number;
sub TIESCALAR {
my $class = shift;
my $value = shift;
return bless \$value, $class;
}
# The return value should always be SvNOK() only:
sub FETCH {
my $self = shift;
# avoid "" getting converted to "0" and thus
# causing an infinite loop
return "" unless length ($$self);
return $$self - 0.5 + $zero + 0.5;
}
sub STORE {
my $self = shift;
$$self = shift;
}
package ONumber;
use overload '""' => sub {
my $self = shift;
return $$self - 0.5 + $zero + 0.5;
};
sub new {
my $class = shift;
my $value = shift;
return bless \$value, $class;
}
}
my $v27a = 1/256;
format OUT27a =
'^<<<<<<<<<'~~
$v27a
.
is_format_utf8(\*OUT27a,
"'0.00390625'\n");
my $v27b = 1/256;
format OUT27b =
'^<'~~
$v27b
.
is_format_utf8(\*OUT27b,
"'0.'\n'00'\n'39'\n'06'\n'25'\n");
tie my $v27c, 'Number', 1/256;
format OUT27c =
'^<<<<<<<<<'~~
$v27c
.
is_format_utf8(\*OUT27c,
"'0.00390625'\n");
my $v27d = 1/256;
format OUT27d =
'^<'~~
$v27d
.
is_format_utf8(\*OUT27d,
"'0.'\n'00'\n'39'\n'06'\n'25'\n");
my $v27e = ONumber->new(1/256);
format OUT27e =
'^<<<<<<<<<'~~
$v27e
.
is_format_utf8(\*OUT27e,
"'0.00390625'\n");
my $v27f = ONumber->new(1/256);
format OUT27f =
'^<'~~
$v27f
.
is_format_utf8(\*OUT27f,
"'0.'\n'00'\n'39'\n'06'\n'25'\n");
{
package Ref;
use overload '""' => sub {
return ${$_[0]};
};
sub new {
my $class = shift;
my $value = shift;
return bless \$value, $class;
}
}
my $v28a = {};
format OUT28a =
'^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<'~~
$v28a
.
# 'HASH(0x1716b60) '
my $qr_hash = qr/^'HASH\(0x[0-9a-f]+\)\s+'\n$/;
# 'HASH'
# '(0x1'
# '716b'
# 'c0) '
my $qr_hash_m = qr/^'HASH'\n('[0-9a-fx() ]{4}'\n)+$/;
like_format_utf8(\*OUT28a, $qr_hash);
my $v28b = {};
format OUT28b =
'^<<<'~~
$v28b
.
like_format_utf8(\*OUT28b, $qr_hash_m);
tie my $v28c, 'Tie::StdScalar';
$v28c = {};
format OUT28c =
'^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<'~~
$v28c
.
like_format_utf8(\*OUT28c, $qr_hash);
tie my $v28d, 'Tie::StdScalar';
$v28d = {};
format OUT28d =
'^<<<'~~
$v28d
.
like_format_utf8(\*OUT28d, $qr_hash_m);
my $v28e = Ref->new({});
format OUT28e =
'^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<'~~
$v28e
.
like_format_utf8(\*OUT28e, $qr_hash);
my $v28f = Ref->new({});
format OUT28f =
'^<<<'~~
$v28f
.
like_format_utf8(\*OUT28f, $qr_hash_m);
{
package Count;
sub TIESCALAR {
my $class = shift;
bless [shift, 0, 0], $class;
}
sub FETCH {
my $self = shift;
++$self->[1];
$self->[0];
}
sub STORE {
my $self = shift;
++$self->[2];
$self->[0] = shift;
}
}
{
my ($pound_utf8, $pm_utf8) = map { my $a = "$_\x{100}"; chop $a; $a}
my ($pound, $pm) = ("\xA3", "\xB1");
foreach my $first ('N', $pound, $pound_utf8) {
foreach my $base ('N', $pm, $pm_utf8) {
foreach my $second ($base, "$base\n", "$base\nMoo!", "$base\nMoo!\n",
"$base\nMoo!\n",) {
foreach (['^*', qr/(.+)/], ['@*', qr/(.*?)$/s]) {
my ($format, $re) = @$_;
$format = "1^*2 3${format}4";
foreach my $class ('', 'Count') {
my $name = qq{swrite("$format", "$first", "$second") class="$class"};
$name =~ s/\n/\\n/g;
$name =~ s{(.)}{
ord($1) > 126 ? sprintf("\\x{%x}",ord($1)) : $1
}ge;
$first =~ /(.+)/ or die $first;
my $expect = "1${1}2";
$second =~ $re or die $second;
$expect .= " 3${1}4";
if ($class) {
my $copy1 = $first;
my $copy2;
tie $copy2, $class, $second;
is swrite("$format", $copy1, $copy2), $expect, $name;
my $obj = tied $copy2;
is $obj->[1], 1, 'value read exactly once';
} else {
my ($copy1, $copy2) = ($first, $second);
is swrite("$format", $copy1, $copy2), $expect, $name;
}
}
}
}
}
}
}
{
# This will fail an assertion in 5.10.0 built with -DDEBUGGING (because
# pp_formline attempts to set SvCUR() on an SVt_RV). I suspect that it will
# be doing something similarly out of bounds on everything from 5.000
my $ref = [];
my $exp = ">$ref<";
is swrite('>^*<', $ref), $exp;
$ref = [];
my $exp = ">$ref<";
is swrite('>@*<', $ref), $exp;
}
format EMPTY =
.
my $test = curr_test();
format Comment =
ok @<<<<<
$test
.
# RT #8698 format bug with undefined _TOP
open STDOUT_DUP, ">&STDOUT";
my $oldfh = select STDOUT_DUP;
$= = 10;
{
local $~ = "Comment";
write;
curr_test($test + 1);
is $-, 9;
is $^, "STDOUT_DUP_TOP";
}
select $oldfh;
close STDOUT_DUP;
*CmT = *{$::{Comment}}{FORMAT};
ok defined *{$::{CmT}}{FORMAT}, "glob assign";
# RT #91032: Check that "non-real" strings like tie and overload work,
# especially that they re-compile the pattern on each FETCH, and that
# they don't overrun the buffer
{
package RT91032;
sub TIESCALAR { bless [] }
my $i = 0;
sub FETCH { $i++; "A$i @> Z\n" }
use overload '""' => \&FETCH;
tie my $f, 'RT91032';
formline $f, "a";
formline $f, "bc";
::is $^A, "A1 a Z\nA2 bc Z\n", "RT 91032: tied";
$^A = '';
my $g = bless []; # has overloaded stringify
formline $g, "de";
formline $g, "f";
::is $^A, "A3 de Z\nA4 f Z\n", "RT 91032: overloaded";
$^A = '';
my $h = [];
formline $h, "junk1";
formline $h, "junk2";
::is ref($h), 'ARRAY', "RT 91032: array ref still a ref";
::like "$h", qr/^ARRAY\(0x[0-9a-f]+\)$/, "RT 91032: array stringifies ok";
::is $^A, "$h$h","RT 91032: stringified array";
$^A = '';
# used to overwrite the ~~ in the *original SV with spaces. Naughty!
my $orig = my $format = "^<<<<< ~~\n";
my $abc = "abc";
formline $format, $abc;
$^A ='';
::is $format, $orig, "RT91032: don't overwrite orig format string";
# check that ~ and ~~ are displayed correctly as whitespace,
# under the influence of various different types of border
for my $n (1,2) {
for my $lhs (' ', 'Y', '^<<<', '^|||', '^>>>') {
for my $rhs ('', ' ', 'Z', '^<<<', '^|||', '^>>>') {
my $fmt = "^<B$lhs" . ('~' x $n) . "$rhs\n";
my $sfmt = ($fmt =~ s/~/ /gr);
my ($a, $bc, $stop);
($a, $bc, $stop) = ('a', 'bc', 's');
# $stop is to stop '~~' deleting the whole line
formline $sfmt, $stop, $a, $bc;
my $exp = $^A;
$^A = '';
($a, $bc, $stop) = ('a', 'bc', 's');
formline $fmt, $stop, $a, $bc;
my $got = $^A;
$^A = '';
$fmt =~ s/\n/\\n/;
::is($got, $exp, "chop munging: [$fmt]");
}
}
}
}
# check that '~ (delete current line if empty) works when
# the target gets upgraded to uft8 (and re-allocated) midstream.
{
my $format = "\x{100}@~\n"; # format is utf8
# this target is not utf8, but will expand (and get reallocated)
# when upgraded to utf8.
my $orig = "\x80\x81\x82";
local $^A = $orig;
my $empty = "";
formline $format, $empty;
is $^A , $orig, "~ and realloc";
# check similarly that trailing blank removal works ok
$format = "@<\n\x{100}"; # format is utf8
chop $format;
$orig = " ";
$^A = $orig;
formline $format, " ";
is $^A, "$orig\n", "end-of-line blanks and realloc";
# and check this doesn't overflow the buffer
local $^A = '';
$format = "@* @####\n";
$orig = "x" x 100 . "\n";
formline $format, $orig, 12345;
is $^A, ("x" x 100) . " 12345\n", "\@* doesn't overflow";
# make sure it can cope with formats > 64k
$format = 'x' x 65537;
$^A = '';
formline $format;
# don't use 'is' here, as the diag output will be too long!
ok $^A eq $format, ">64K";
}
SKIP: {
skip_if_miniperl('miniperl does not support scalario');
my $buf = "";
open my $fh, ">", \$buf;
my $old_fh = select $fh;
local $~ = "CmT";
write;
select $old_fh;
close $fh;
is $buf, "ok $test\n", "write to duplicated format";
}
format caret_A_test_TOP =
T
.
format caret_A_test =
L1
L2
L3
L4
.
SKIP: {
skip_if_miniperl('miniperl does not support scalario');
my $buf = "";
open my $fh, ">", \$buf;
my $old_fh = select $fh;
local $^ = "caret_A_test_TOP";
local $~ = "caret_A_test";
local $= = 3;
local $^A = "A1\nA2\nA3\nA4\n";
write;
select $old_fh;
close $fh;
is $buf, "T\nA1\nA2\n\fT\nA3\nA4\n\fT\nL1\nL2\n\fT\nL3\nL4\n",
"assign to ^A sets FmLINES";
}
fresh_perl_like(<<'EOP', qr/^Format STDOUT redefined at/, {stderr => 1}, '#64562 - Segmentation fault with redefined formats and warnings');
#!./perl
use strict;
use warnings; # crashes!
format =
.
write;
format =
.
write;
EOP
fresh_perl_is(<<'EOP', ">ARRAY<\ncrunch_eth\n", {stderr => 1}, '#79532 - formline coerces its arguments');
use strict;
use warnings;
my $zamm = ['crunch_eth'];
formline $zamm;
printf ">%s<\n", ref $zamm;
print "$zamm->[0]\n";
EOP
# [perl #73690]
select +(select(RT73690), do {
open(RT73690, '>Op_write.tmp') || die "Can't create Op_write.tmp";
format RT73690 =
@<< @<<
11, 22
.
my @ret;
@ret = write;
is(scalar(@ret), 1);
ok($ret[0]);
@ret = scalar(write);
is(scalar(@ret), 1);
ok($ret[0]);
@ret = write(RT73690);
is(scalar(@ret), 1);
ok($ret[0]);
@ret = scalar(write(RT73690));
is(scalar(@ret), 1);
ok($ret[0]);
@ret = ('a', write, 'z');
is(scalar(@ret), 3);
is($ret[0], 'a');
ok($ret[1]);
is($ret[2], 'z');
@ret = ('b', scalar(write), 'y');
is(scalar(@ret), 3);
is($ret[0], 'b');
ok($ret[1]);
is($ret[2], 'y');
@ret = ('c', write(RT73690), 'x');
is(scalar(@ret), 3);
is($ret[0], 'c');
ok($ret[1]);
is($ret[2], 'x');
@ret = ('d', scalar(write(RT73690)), 'w');
is(scalar(@ret), 3);
is($ret[0], 'd');
ok($ret[1]);
is($ret[2], 'w');
@ret = do { write; 'foo' };
is(scalar(@ret), 1);
is($ret[0], 'foo');
@ret = do { scalar(write); 'bar' };
is(scalar(@ret), 1);
is($ret[0], 'bar');
@ret = do { write(RT73690); 'baz' };
is(scalar(@ret), 1);
is($ret[0], 'baz');
@ret = do { scalar(write(RT73690)); 'quux' };
is(scalar(@ret), 1);
is($ret[0], 'quux');
@ret = ('a', do { write; 'foo' }, 'z');
is(scalar(@ret), 3);
is($ret[0], 'a');
is($ret[1], 'foo');
is($ret[2], 'z');
@ret = ('b', do { scalar(write); 'bar' }, 'y');
is(scalar(@ret), 3);
is($ret[0], 'b');
is($ret[1], 'bar');
is($ret[2], 'y');
@ret = ('c', do { write(RT73690); 'baz' }, 'x');
is(scalar(@ret), 3);
is($ret[0], 'c');
is($ret[1], 'baz');
is($ret[2], 'x');
@ret = ('d', do { scalar(write(RT73690)); 'quux' }, 'w');
is(scalar(@ret), 3);
is($ret[0], 'd');
is($ret[1], 'quux');
is($ret[2], 'w');
close RT73690 or die "Could not close: $!";
})[0];
select +(select(RT73690_2), do {
open(RT73690_2, '>Op_write.tmp') || die "Can't create Op_write.tmp";
format RT73690_2 =
@<< @<<
return
.
my @ret;
@ret = write;
is(scalar(@ret), 1);
ok(!$ret[0]);
@ret = scalar(write);
is(scalar(@ret), 1);
ok(!$ret[0]);
@ret = write(RT73690_2);
is(scalar(@ret), 1);
ok(!$ret[0]);
@ret = scalar(write(RT73690_2));
is(scalar(@ret), 1);
ok(!$ret[0]);
@ret = ('a', write, 'z');
is(scalar(@ret), 3);
is($ret[0], 'a');
ok(!$ret[1]);
is($ret[2], 'z');
@ret = ('b', scalar(write), 'y');
is(scalar(@ret), 3);
is($ret[0], 'b');
ok(!$ret[1]);
is($ret[2], 'y');
@ret = ('c', write(RT73690_2), 'x');
is(scalar(@ret), 3);
is($ret[0], 'c');
ok(!$ret[1]);
is($ret[2], 'x');
@ret = ('d', scalar(write(RT73690_2)), 'w');
is(scalar(@ret), 3);
is($ret[0], 'd');
ok(!$ret[1]);
is($ret[2], 'w');
@ret = do { write; 'foo' };
is(scalar(@ret), 1);
is($ret[0], 'foo');
@ret = do { scalar(write); 'bar' };
is(scalar(@ret), 1);
is($ret[0], 'bar');
@ret = do { write(RT73690_2); 'baz' };
is(scalar(@ret), 1);
is($ret[0], 'baz');
@ret = do { scalar(write(RT73690_2)); 'quux' };
is(scalar(@ret), 1);
is($ret[0], 'quux');
@ret = ('a', do { write; 'foo' }, 'z');
is(scalar(@ret), 3);
is($ret[0], 'a');
is($ret[1], 'foo');
is($ret[2], 'z');
@ret = ('b', do { scalar(write); 'bar' }, 'y');
is(scalar(@ret), 3);
is($ret[0], 'b');
is($ret[1], 'bar');
is($ret[2], 'y');
@ret = ('c', do { write(RT73690_2); 'baz' }, 'x');
is(scalar(@ret), 3);
is($ret[0], 'c');
is($ret[1], 'baz');
is($ret[2], 'x');
@ret = ('d', do { scalar(write(RT73690_2)); 'quux' }, 'w');
is(scalar(@ret), 3);
is($ret[0], 'd');
is($ret[1], 'quux');
is($ret[2], 'w');
close RT73690_2 or die "Could not close: $!";
})[0];
open(UNDEF, '>Op_write.tmp') || die "Can't create Op_write.tmp";
select +(select(UNDEF), $~ = "UNDEFFORMAT")[0];
format UNDEFFORMAT =
@
undef *UNDEFFORMAT
.
write UNDEF;
pass "active format cannot be freed";
select +(select(UNDEF), $~ = "UNDEFFORMAT2")[0];
format UNDEFFORMAT2 =
@
close UNDEF or die "Could not close: $!"; undef *UNDEF
.
write UNDEF;
pass "freeing current handle in format";
undef $^A;
ok !eval q|
format foo {
@<<<
$a
}
;1
|, 'format foo { ... } is not allowed';
ok !eval q|
format =
@<<<
}
;1
|, 'format = ... } is not allowed';
open(NEST, '>Op_write.tmp') || die "Can't create Op_write.tmp";
format NEST =
@<<<
{
my $birds = "birds";
local *NEST = *BIRDS{FORMAT};
write NEST;
format BIRDS =
@<<<<<
$birds;
.
"nest"
}
.
write NEST;
close NEST or die "Could not close: $!";
is cat('Op_write.tmp'), "birds\nnest\n", 'nested formats';
# A compilation error should not create a format
eval q|
format ERROR =
@
@_ =~ s///
.
|;
eval { write ERROR };
like $@, qr'Undefined format',
'formats with compilation errors are not created';
# This syntax error used to cause a crash, double free, or a least
# a bad read.
# See the long-winded explanation at:
# https://rt.perl.org/rt3/Ticket/Display.html?id=43425#txn-1144500
eval q|
format =
@
use;format
strict
.
|;
pass('no crash with invalid use/format inside format');
# Low-precedence operators on argument line
format AND =
@
0 and die
.
$- = $=;
ok eval { local $~ = "AND"; print "# "; write; 1 },
"low-prec ops on arg line" or diag $@;
# Anonymous hashes
open(HASH, '>Op_write.tmp') || die "Can't create Op_write.tmp";
format HASH =
@<<<
${{qw[ Sun 0 Mon 1 Tue 2 Wed 3 Thu 4 Fri 5 Sat 6 ]}}{"Wed"}
.
write HASH;
close HASH or die "Could not close: $!";
is cat('Op_write.tmp'), "3\n", 'anonymous hashes';
open(HASH2, '>Op_write.tmp') || die "Can't create Op_write.tmp";
format HASH2 =
@<<<
+{foo=>"bar"}
.
write HASH2;
close HASH2 or die "Could not close: $!";
is cat('Op_write.tmp'), "HASH\n", '+{...} is interpreted as anon hash';
# Anonymous hashes
open(BLOCK, '>Op_write.tmp') || die "Can't create Op_write.tmp";
format BLOCK =
@<<< @<<<
{foo=>"bar"} # this is a block, not a hash!
.
write BLOCK;
close BLOCK or die "Could not close: $!";
is cat('Op_write.tmp'), "foo bar\n", 'initial { is always BLOCK';
# pragmata inside argument line
open(STRICT, '>Op_write.tmp') || die "Can't create Op_write.tmp";
format STRICT =
@<<<
no strict; $foo
.
$::foo = 'oof::$';
write STRICT;
close STRICT or die "Could not close: $!";
is cat('Op_write.tmp'), "oof:\n", 'pragmata on format line';
SKIP: {
skip "no weak refs" unless eval { require Scalar::Util };
sub Potshriggley {
format Potshriggley =
.
}
Scalar::Util::weaken(my $x = *Potshriggley{FORMAT});
undef *Potshriggley;
is $x, undef, 'formats in subs do not leak';
}
fresh_perl_is(<<'EOP', <<'EXPECT',
use warnings 'syntax' ;
format STDOUT =
^*|^*
my $x = q/dd/, $x
.
write;
EOP
dd|
EXPECT
{ stderr => 1 }, '#123245 panic in sv_chop');
fresh_perl_is(<<'EOP', <<'EXPECT',
use warnings 'syntax' ;
format STDOUT =
^*|^*
my $x = q/dd/
.
write;
EOP
Not enough format arguments at - line 4.
dd|
EXPECT
{ stderr => 1 }, '#123245 different panic in sv_chop');
fresh_perl_is(<<'EOP', <<'EXPECT',
format STDOUT =
# x at the end to make the spaces visible
@... x
q/a/
.
write;
EOP
a x
EXPECT
{ stderr => 1 }, '#123538 crash in FF_MORE');
#############################
## Section 4
## Add new tests *above* here
#############################
# scary format testing from H.Merijn Brand
# Just a complete test for format, including top-, left- and bottom marging
# and format detection through glob entries
if ($^O eq 'VMS' || $^O eq 'MSWin32' || $^O eq 'dos' ||
($^O eq 'os2' and not eval '$OS2::can_fork')) {
$test = curr_test();
SKIP: {
skip "'|-' and '-|' not supported", $tests - $test + 1;
}
exit(0);
}
$^ = "STDOUT_TOP";
$= = 7; # Page length
$- = 0; # Lines left
my $ps = $^L; $^L = ""; # Catch the page separator
my $tm = 1; # Top margin (empty lines before first output)
my $bm = 2; # Bottom marging (empty lines between last text and footer)
my $lm = 4; # Left margin (indent in spaces)
# -----------------------------------------------------------------------
#
# execute the rest of the script in a child process. The parent reads the
# output from the child and compares it with <DATA>.
my @data = <DATA>;
select ((select (STDOUT), $| = 1)[0]); # flush STDOUT
my $opened = open FROM_CHILD, "-|";
unless (defined $opened) {
fail "open gave $!";
exit 0;
}
if ($opened) {
# in parent here
pass 'open';
my $s = " " x $lm;
while (<FROM_CHILD>) {
unless (@data) {
fail 'too much output';
exit;
}
s/^/$s/;
my $exp = shift @data;
is $_, $exp;
}
close FROM_CHILD;
is "@data", "", "correct length of output";
exit;
}
# in child here
$::NO_ENDING = 1;
select ((select (STDOUT), $| = 1)[0]);
$tm = "\n" x $tm;
$= -= $bm + 1; # count one for the trailing "----"
my $lastmin = 0;
my @E;
sub wryte
{
$lastmin = $-;
write;
} # wryte;
sub footer
{
$% == 1 and return "";
$lastmin < $= and print "\n" x $lastmin;
print "\n" x $bm, "----\n", $ps;
$lastmin = $-;
"";
} # footer
# Yes, this is sick ;-)
format TOP =
@* ~
@{[footer]}
@* ~
$tm
.
format ENTRY =
@ @<<<<~~
@{(shift @E)||["",""]}
.
format EOR =
- -----
.
sub has_format ($)
{
my $fmt = shift;
exists $::{$fmt} or return 0;
$^O eq "MSWin32" or return defined *{$::{$fmt}}{FORMAT};
open my $null, "> /dev/null" or die;
my $fh = select $null;
local $~ = $fmt;
eval "write";
select $fh;
$@?0:1;
} # has_format
$^ = has_format ("TOP") ? "TOP" : "EMPTY";
has_format ("ENTRY") or die "No format defined for ENTRY";
foreach my $e ( [ map { [ $_, "Test$_" ] } 1 .. 7 ],
[ map { [ $_, "${_}tseT" ] } 1 .. 5 ]) {
@E = @$e;
local $~ = "ENTRY";
wryte;
has_format ("EOR") or next;
local $~ = "EOR";
wryte;
}
if (has_format ("EOF")) {
local $~ = "EOF";
wryte;
}
close STDOUT;
# That was test 48.
__END__
1 Test1
2 Test2
3 Test3
----
4 Test4
5 Test5
6 Test6
----
7 Test7
- -----
----
1 1tseT
2 2tseT
3 3tseT
----
4 4tseT
5 5tseT
- -----
|