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 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180
|
# -*- tcl -*-
# Functionality covered: operation of the reflected transformation
#
# This file contains a collection of tests for one or more of the Tcl
# built-in commands. Sourcing this file into Tcl runs the tests and
# generates output for errors. No output means no errors were found.
#
# Copyright © 2007 Andreas Kupries <andreask@activestate.com>
# <akupries@shaw.ca>
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
if {"::tcltest" ni [namespace children]} {
package require tcltest 2.5
namespace import -force ::tcltest::*
}
::tcltest::loadTestedCommands
catch [list package require -exact tcl::test [info patchlevel]]
# Custom constraints used in this file
testConstraint testchannel [llength [info commands testchannel]]
testConstraint thread [expr {0 == [catch {package require Thread 2.7-}]}]
# testchannel cut|splice Both needed to test the reflection in threads.
# thread::send
#----------------------------------------------------------------------
# ### ### ### ######### ######### #########
## Testing the reflected transformation.
# Helper commands to record the arguments to handler methods. Stored in a
# script so that the tests needing this code do not need their own copy but
# can access this variable.
set helperscript {
if {"::tcltest" ni [namespace children]} {
package require tcltest 2.5
namespace import -force ::tcltest::*
}
# This forces the return options to be in the order that the test expects!
variable optorder {
-code !?! -level !?! -errorcode !?! -errorline !?! -errorinfo !?!
-errorstack !?!
}
proc noteOpts opts {
variable optorder
lappend ::res [dict merge $optorder $opts]
}
# Helper command, canned result for 'initialize' method. Gets the
# optional methods as arguments. Use return features to post the result
# higher up.
proc handle.initialize {args} {
upvar args hargs
if {[lindex $hargs 0] eq "initialize"} {
return -code return [list {*}$args initialize finalize read write]
}
}
proc handle.finalize {} {
upvar args hargs
if {[lindex $hargs 0] eq "finalize"} {
return -code return ""
}
}
proc handle.read {} {
upvar args hargs
if {[lindex $hargs 0] eq "read"} {
return -code return "@"
}
}
proc handle.drain {} {
upvar args hargs
if {[lindex $hargs 0] eq "drain"} {
return -code return "<>"
}
}
proc handle.clear {} {
upvar args hargs
if {[lindex $hargs 0] eq "clear"} {
return -code return ""
}
}
proc tempchan {{mode r+}} {
global tempchan
return [set tempchan [open [makeFile {test data} tempchanfile] $mode]]
}
proc tempdone {} {
global tempchan
catch {close $tempchan}
removeFile tempchanfile
return
}
proc tempview {} { viewFile tempchanfile }
}
# Set everything up in the main thread.
eval $helperscript
#puts <<[file channels]>>
# ### ### ### ######### ######### #########
test iortrans-1.0 {chan, wrong#args} -returnCodes error -body {
chan
} -result {wrong # args: should be "chan subcommand ?arg ...?"}
test iortrans-1.1 {chan, unknown method} -returnCodes error -body {
chan foo
} -match glob -result {unknown or ambiguous subcommand "foo": must be*}
# --- --- --- --------- --------- ---------
# chan push, and method "initialize"
test iortrans-2.0 {chan push, wrong#args, not enough} -returnCodes error -body {
chan push
} -result {wrong # args: should be "chan push channel cmdprefix"}
test iortrans-2.1 {chan push, wrong#args, too many} -returnCodes error -body {
chan push a b c
} -result {wrong # args: should be "chan push channel cmdprefix"}
test iortrans-2.2 {chan push, invalid channel} -setup {
proc foo {} {}
} -returnCodes error -body {
chan push {} foo
} -cleanup {
rename foo {}
} -result {can not find channel named ""}
test iortrans-2.3 {chan push, bad handler, not a list} -body {
chan push [tempchan] "foo \{"
} -returnCodes error -cleanup {
tempdone
} -result {unmatched open brace in list}
test iortrans-2.4 {chan push, bad handler, not a command} -body {
chan push [tempchan] foo
} -returnCodes error -cleanup {
tempdone
} -result {invalid command name "foo"}
test iortrans-2.5 {chan push, initialize failed, bad signature} -body {
proc foo {} {}
chan push [tempchan] foo
} -returnCodes error -cleanup {
tempdone
rename foo {}
} -result {wrong # args: should be "foo"}
test iortrans-2.6 {chan push, initialize failed, bad signature} -body {
proc foo {} {}
chan push [tempchan] ::foo
} -returnCodes error -cleanup {
tempdone
rename foo {}
} -result {wrong # args: should be "::foo"}
test iortrans-2.7 {chan push, initialize failed, bad result, not a list} -body {
proc foo {args} {return "\{"}
catch {chan push [tempchan] foo}
return $::errorInfo
} -cleanup {
tempdone
rename foo {}
} -match glob -result {chan handler "foo initialize" returned non-list: *}
test iortrans-2.8 {chan push, initialize failed, bad result, not a list} -body {
proc foo {args} {return \{\{\}}
chan push [tempchan] foo
} -returnCodes error -cleanup {
tempdone
rename foo {}
} -match glob -result {chan handler "foo initialize" returned non-list: *}
test iortrans-2.9 {chan push, initialize failed, bad result, empty list} -body {
proc foo {args} {}
chan push [tempchan] foo
} -returnCodes error -cleanup {
tempdone
rename foo {}
} -match glob -result {*all required methods*}
test iortrans-2.10 {chan push, initialize failed, bad result, bogus method name} -body {
proc foo {args} {return 1}
chan push [tempchan] foo
} -returnCodes error -cleanup {
tempdone
rename foo {}
} -match glob -result {*bad method "1": must be *}
test iortrans-2.11 {chan push, initialize failed, bad result, bogus method name} -body {
proc foo {args} {return {a b c}}
chan push [tempchan] foo
} -returnCodes error -cleanup {
tempdone
rename foo {}
} -match glob -result {*bad method "c": must be *}
test iortrans-2.12 {chan push, initialize failed, bad result, required methods missing} -body {
# Required: initialize, and finalize.
proc foo {args} {return {initialize}}
chan push [tempchan] foo
} -returnCodes error -cleanup {
tempdone
rename foo {}
} -match glob -result {*all required methods*}
test iortrans-2.13 {chan push, initialize failed, bad result, illegal method name} -body {
proc foo {args} {return {initialize finalize BOGUS}}
chan push [tempchan] foo
} -returnCodes error -cleanup {
tempdone
rename foo {}
} -match glob -result {*returned bad method "BOGUS": must be clear, drain, finalize, flush, initialize, limit?, read, or write}
test iortrans-2.14 {chan push, initialize failed, bad result, mode/handler mismatch} -body {
proc foo {args} {return {initialize finalize}}
chan push [tempchan] foo
} -returnCodes error -cleanup {
tempdone
rename foo {}
} -match glob -result {*makes the channel inaccessible}
# iortrans-2.15 event/watch methods elimimated, removed these tests.
# iortrans-2.16
test iortrans-2.17 {chan push, initialize failed, bad result, drain/read mismatch} -body {
proc foo {args} {return {initialize finalize drain write}}
chan push [tempchan] foo
} -returnCodes error -cleanup {
tempdone
rename foo {}
} -match glob -result {*supports "drain" but not "read"}
test iortrans-2.18 {chan push, initialize failed, bad result, flush/write mismatch} -body {
proc foo {args} {return {initialize finalize flush read}}
chan push [tempchan] foo
} -returnCodes error -cleanup {
tempdone
rename foo {}
} -match glob -result {*supports "flush" but not "write"}
test iortrans-2.19 {chan push, initialize ok, creates channel} -setup {
set res {}
} -match glob -body {
proc foo {args} {
global res
lappend res $args
if {[lindex $args 0] ne "initialize"} {return}
return {initialize finalize drain flush read write}
}
lappend res [file channel rt*]
lappend res [chan push [tempchan] foo]
lappend res [close [lindex $res end]]
lappend res [file channel rt*]
} -cleanup {
tempdone
rename foo {}
} -result {{} {initialize rt* {read write}} file* {drain rt*} {flush rt*} {finalize rt*} {} {}}
test iortrans-2.20 {chan push, init failure -> no channel, no finalize} -setup {
set res {}
} -match glob -body {
proc foo {args} {
global res
lappend res $args
return
}
lappend res [file channel rt*]
lappend res [catch {chan push [tempchan] foo} msg] $msg
lappend res [file channel rt*]
} -cleanup {
tempdone
rename foo {}
} -result {{} {initialize rt* {read write}} 1 {*all required methods*} {}}
# --- --- --- --------- --------- ---------
# method finalize (via close)
# General note: file channels rt* finds the transform channel, however the
# name reported will be that of the underlying base driver, fileXX here. This
# actually allows us to see if the whole channel is gone, or only the
# transformation, but not the base.
test iortrans-3.1 {chan finalize, handler destruction has no effect on channel} -setup {
set res {}
} -match glob -body {
proc foo {args} {
lappend ::res $args
handle.initialize
return
}
lappend res [set c [chan push [tempchan] foo]]
rename foo {}
lappend res [file channels file*]
lappend res [file channels rt*]
lappend res [catch {close $c} msg] $msg
lappend res [file channels file*]
lappend res [file channels rt*]
} -cleanup {
tempdone
} -result {{initialize rt* {read write}} file* file* {} 1 {invalid command name "foo"} {} {}}
test iortrans-3.2 {chan finalize, for close} -setup {
set res {}
} -match glob -body {
proc foo {args} {
lappend ::res $args
handle.initialize
return
}
lappend res [set c [chan push [tempchan] foo]]
close $c
# Close deleted the channel.
lappend res [file channels rt*]
# Channel destruction does not kill handler command!
lappend res [info command foo]
} -cleanup {
rename foo {}
tempdone
} -result {{initialize rt* {read write}} file* {finalize rt*} {} foo}
test iortrans-3.3 {chan finalize, for close, error, close error} -setup {
set res {}
} -match glob -body {
proc foo {args} {
lappend ::res $args
handle.initialize
return -code error 5
}
lappend res [set c [chan push [tempchan] foo]]
lappend res [catch {close $c} msg] $msg
# Channel is gone despite error.
lappend res [file channels rt*]
} -cleanup {
rename foo {}
tempdone
} -result {{initialize rt* {read write}} file* {finalize rt*} 1 5 {}}
test iortrans-3.4 {chan finalize, for close, error, close error} -setup {
set res {}
} -match glob -body {
proc foo {args} {
lappend ::res $args
handle.initialize
error FOO
}
lappend res [set c [chan push [tempchan] foo]]
lappend res [catch {close $c} msg] $msg $::errorInfo
} -cleanup {
rename foo {}
tempdone
} -result {{initialize rt* {read write}} file* {finalize rt*} 1 FOO {FOO
*"close $c"}}
test iortrans-3.5 {chan finalize, for close, arbitrary result, ignored} -setup {
set res {}
} -match glob -body {
proc foo {args} {
lappend ::res $args
handle.initialize
return SOMETHING
}
lappend res [set c [chan push [tempchan] foo]]
lappend res [catch {close $c} msg] $msg
} -cleanup {
rename foo {}
tempdone
} -result {{initialize rt* {read write}} file* {finalize rt*} 0 {}}
test iortrans-3.6 {chan finalize, for close, break, close error} -setup {
set res {}
} -match glob -body {
proc foo {args} {
lappend ::res $args
handle.initialize
return -code 3
}
lappend res [set c [chan push [tempchan] foo]]
lappend res [catch {close $c} msg] $msg
} -cleanup {
rename foo {}
tempdone
} -result {{initialize rt* {read write}} file* {finalize rt*} 1 *bad code*}
test iortrans-3.7 {chan finalize, for close, continue, close error} -setup {
set res {}
} -match glob -body {
proc foo {args} {
lappend ::res $args
handle.initialize
return -code 4
}
lappend res [set c [chan push [tempchan] foo]]
lappend res [catch {close $c} msg] $msg
} -cleanup {
rename foo {}
tempdone
} -result {{initialize rt* {read write}} file* {finalize rt*} 1 *bad code*}
test iortrans-3.8 {chan finalize, for close, custom code, close error} -setup {
set res {}
} -match glob -body {
proc foo {args} {
lappend ::res $args
handle.initialize
return -code 777 BANG
}
lappend res [set c [chan push [tempchan] foo]]
lappend res [catch {close $c} msg] $msg
} -cleanup {
rename foo {}
tempdone
} -result {{initialize rt* {read write}} file* {finalize rt*} 1 *bad code*}
test iortrans-3.9 {chan finalize, for close, ignore level, close error} -setup {
set res {}
} -body {
proc foo {args} {
lappend ::res $args
handle.initialize
return -level 5 -code 777 BANG
}
lappend res [set c [chan push [tempchan] foo]]
lappend res [catch {close $c} msg opt] $msg
noteOpts $opt
} -match glob -cleanup {
rename foo {}
tempdone
} -result {{initialize rt* {read write}} file* {finalize rt*} 1 *bad code* {-code 1 -level 0 -errorcode NONE -errorline 1 -errorinfo *bad code*subcommand "finalize"*}}
# --- === *** ###########################
# method read (via read)
test iortrans-4.1 {chan read, transform call and return} -setup {
set res {}
} -match glob -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
return snarf
}
set c [chan push [tempchan] foo]
lappend res [read $c 10]
} -cleanup {
tempdone
rename foo {}
} -result {{read rt* {test data
}} snarf}
test iortrans-4.2 {chan read, for non-readable channel} -setup {
set res {}
} -match glob -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args MUST_NOT_HAPPEN
}
set c [chan push [tempchan w] foo]
lappend res [catch {read $c 2} msg] $msg
} -cleanup {
tempdone
rename foo {}
} -result {1 {channel "file*" wasn't opened for reading}}
test iortrans-4.3 {chan read, error return} -setup {
set res {}
} -match glob -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
return -code error BOOM!
}
set c [chan push [tempchan] foo]
lappend res [catch {read $c 2} msg] $msg
} -cleanup {
tempdone
rename foo {}
} -result {{read rt* {test data
}} 1 BOOM!}
test iortrans-4.4 {chan read, break return is error} -setup {
set res {}
} -match glob -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
return -code break BOOM!
}
set c [chan push [tempchan] foo]
lappend res [catch {read $c 2} msg] $msg
} -cleanup {
tempdone
rename foo {}
} -result {{read rt* {test data
}} 1 *bad code*}
test iortrans-4.5 {chan read, continue return is error} -setup {
set res {}
} -match glob -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
return -code continue BOOM!
}
set c [chan push [tempchan] foo]
lappend res [catch {read $c 2} msg] $msg
} -cleanup {
tempdone
rename foo {}
} -result {{read rt* {test data
}} 1 *bad code*}
test iortrans-4.6 {chan read, custom return is error} -setup {
set res {}
} -match glob -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
return -code 777 BOOM!
}
set c [chan push [tempchan] foo]
lappend res [catch {read $c 2} msg] $msg
} -cleanup {
tempdone
rename foo {}
} -result {{read rt* {test data
}} 1 *bad code*}
test iortrans-4.7 {chan read, level is squashed} -setup {
set res {}
} -match glob -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
return -level 55 -code 777 BOOM!
}
set c [chan push [tempchan] foo]
lappend res [catch {read $c 2} msg opt] $msg
noteOpts $opt
} -cleanup {
tempdone
rename foo {}
} -result {{read rt* {test data
}} 1 *bad code* {-code 1 -level 0 -errorcode NONE -errorline 1 -errorinfo *bad code*subcommand "read"*}}
test iortrans-4.8 {chan read, read, bug 2921116} -setup {
set res {}
} -match glob -body {
proc foo {fd args} {
handle.initialize
handle.finalize
lappend ::res $args
# Kill and recreate transform while it is operating
chan pop $fd
chan push $fd [list foo $fd]
}
set c [chan push [set c [tempchan]] [list foo $c]]
lappend res [read $c]
#lappend res [gets $c]
} -cleanup {
tempdone
rename foo {}
} -result {{read rt* {test data
}} {}}
test iortrans-4.8.1 {chan read, bug 721ec69271} -setup {
set res {}
} -match glob -body {
proc foo {fd args} {
handle.initialize
handle.finalize
lappend ::res $args
# Kill and recreate transform while it is operating
chan pop $fd
chan push $fd [list foo $fd]
}
set c [chan push [set c [tempchan]] [list foo $c]]
chan configure $c -buffersize 2
lappend res [read $c]
} -cleanup {
tempdone
rename foo {}
} -result {{read rt* te} {read rt* st} {read rt* { d}} {read rt* at} {read rt* {a
}} {}}
test iortrans-4.8.2 {chan read, bug 721ec69271} -setup {
set res {}
} -match glob -body {
proc foo {fd args} {
handle.initialize
handle.finalize
lappend ::res $args
# Kill and recreate transform while it is operating
chan pop $fd
chan push $fd [list foo $fd]
return x
}
set c [chan push [set c [tempchan]] [list foo $c]]
chan configure $c -buffersize 1
lappend res [read $c]
} -cleanup {
tempdone
rename foo {}
} -result {{read rt* t} {read rt* e} {read rt* s} {read rt* t} {read rt* { }} {read rt* d} {read rt* a} {read rt* t} {read rt* a} {read rt* {
}} {}}
test iortrans-4.9 {chan read, gets, bug 2921116} -setup {
set res {}
} -match glob -body {
proc foo {fd args} {
handle.initialize
handle.finalize
lappend ::res $args
# Kill and recreate transform while it is operating
chan pop $fd
chan push $fd [list foo $fd]
}
set c [chan push [set c [tempchan]] [list foo $c]]
lappend res [gets $c]
} -cleanup {
tempdone
rename foo {}
} -result {{read rt* {test data
}} {}}
# Driver for a base channel that emits several short "files"
# with each terminated by a fleeting EOF
proc driver {cmd args} {
variable ::tcl::buffer
variable ::tcl::index
set chan [lindex $args 0]
switch -- $cmd {
initialize {
set index($chan) 0
set buffer($chan) .....
return {initialize finalize watch read}
}
finalize {
if {![info exists index($chan)]} {return}
unset index($chan) buffer($chan)
array unset index
array unset buffer
return
}
watch {}
read {
set n [lindex $args 1]
if {![info exists index($chan)]} {
driver initialize $chan
}
set new [expr {$index($chan) + $n}]
set result [string range $buffer($chan) $index($chan) $new-1]
set index($chan) $new
if {[string length $result] == 0} {
driver finalize $chan
}
return $result
}
}
}
namespace eval reflector {
proc initialize {_ chan mode} {
return {initialize finalize watch read}
}
proc finalize {_ chan} {
foreach id [after info] {
after cancel $id
}
namespace delete $_
}
proc read {_ chan count} {
namespace upvar $_ source source
set res [string range $source 0 $count-1]
set source [string range $source $count end]
return $res
}
proc watch {_ chan events} {
after 0 [list chan postevent $chan read]
return read
}
namespace ensemble create -parameters _
namespace export *
}
namespace eval inputfilter {
proc initialize {chan mode} {
return {initialize finalize read}
}
proc read {chan buffer} {
return $buffer
}
proc finalize chan {
namespace delete $chan
}
namespace ensemble create
namespace export *
}
# Channel read transform that is just the identity - pass all through
proc idxform {cmd handle args} {
switch -- $cmd {
initialize {
return {initialize finalize read}
}
finalize {
return
}
read {
lassign $args buffer
return $buffer
}
}
}
# Test that all EOFs pass through full xform stack. Proper data boundaries.
# Check robustness against buffer sizes.
test iortrans-4.10 {[5adbc350683] chan read, handle fleeting EOF} -body {
set chan [chan push [chan create read driver] idxform]
list [eof $chan] [read $chan] [eof $chan] [read $chan 0] [eof $chan] \
[read $chan] [eof $chan]
} -cleanup {
close $chan
} -result {0 ..... 1 {} 0 ..... 1}
test iortrans-4.10.1 {[5adbc350683] chan read, handle fleeting EOF} -body {
set chan [chan push [chan create read driver] idxform]
chan configure $chan -buffersize 3
list [eof $chan] [read $chan] [eof $chan] [read $chan 0] [eof $chan] \
[read $chan] [eof $chan]
} -cleanup {
close $chan
} -result {0 ..... 1 {} 0 ..... 1}
test iortrans-4.10.2 {[5adbc350683] chan read, handle fleeting EOF} -body {
set chan [chan push [chan create read driver] idxform]
chan configure $chan -buffersize 5
list [eof $chan] [read $chan] [eof $chan] [read $chan 0] [eof $chan] \
[read $chan] [eof $chan]
} -cleanup {
close $chan
} -result {0 ..... 1 {} 0 ..... 1}
rename idxform {}
# Channel read transform that delays the data and always returns something
proc delayxform {cmd handle args} {
variable store
switch -- $cmd {
initialize {
set store($handle) {}
return {initialize finalize read drain}
}
finalize {
unset store($handle)
return
}
read {
lassign $args buffer
if {$store($handle) eq {}} {
set reply [string index $buffer 0]
set store($handle) [string range $buffer 1 end]
} else {
set reply $store($handle)
set store($handle) $buffer
}
return $reply
}
drain {
delayxform read $handle {}
}
}
}
# Test that all EOFs pass through full xform stack. Proper data boundaries.
# Check robustness against buffer sizes.
test iortrans-4.11 {[5adbc350683] chan read, handle fleeting EOF} -body {
set chan [chan push [chan create read driver] delayxform]
list [eof $chan] [read $chan] [eof $chan] [read $chan 0] [eof $chan] \
[read $chan] [eof $chan]
} -cleanup {
close $chan
} -result {0 ..... 1 {} 0 ..... 1}
test iortrans-4.11.1 {[5adbc350683] chan read, handle fleeting EOF} -body {
set chan [chan push [chan create read driver] delayxform]
chan configure $chan -buffersize 3
list [eof $chan] [read $chan] [eof $chan] [read $chan 0] [eof $chan] \
[read $chan] [eof $chan]
} -cleanup {
close $chan
} -result {0 ..... 1 {} 0 ..... 1}
test iortrans-4.11.2 {[5adbc350683] chan read, handle fleeting EOF} -body {
set chan [chan push [chan create read driver] delayxform]
chan configure $chan -buffersize 5
list [eof $chan] [read $chan] [eof $chan] [read $chan 0] [eof $chan] \
[read $chan] [eof $chan]
} -cleanup {
close $chan
} -result {0 ..... 1 {} 0 ..... 1}
rename delayxform {}
# Channel read transform that delays the data and may return {}
proc delay2xform {cmd handle args} {
variable store
switch -- $cmd {
initialize {
set store($handle) {}
return {initialize finalize read drain}
}
finalize {
unset store($handle)
return
}
read {
lassign $args buffer
set reply $store($handle)
set store($handle) $buffer
return $reply
}
drain {
delay2xform read $handle {}
}
}
}
test iortrans-4.12 {[5adbc350683] chan read, handle fleeting EOF} -body {
set chan [chan push [chan create read driver] delay2xform]
list [eof $chan] [read $chan] [eof $chan] [read $chan 0] [eof $chan] \
[read $chan] [eof $chan]
} -cleanup {
close $chan
} -result {0 ..... 1 {} 0 ..... 1}
rename delay2xform {}
rename driver {}
# --- === *** ###########################
# method write (via puts)
test iortrans-5.1 {chan write, regular write} -setup {
set res {}
} -match glob -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
return transformresult
}
set c [chan push [tempchan] foo]
puts -nonewline $c snarf
flush $c
close $c
lappend res [tempview]
} -cleanup {
tempdone
rename foo {}
} -result {{write rt* snarf} transformresult}
test iortrans-5.2 {chan write, no write is ok, no change to file} -setup {
set res {}
} -match glob -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
return
}
set c [chan push [tempchan] foo]
puts -nonewline $c snarfsnarfsnarf
flush $c
close $c
lappend res [tempview]; # This has to show the original data, as nothing was written
} -cleanup {
tempdone
rename foo {}
} -result {{write rt* snarfsnarfsnarf} {test data}}
test iortrans-5.3 {chan write, failed write} -setup {
set res {}
} -match glob -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
return -code error FAIL!
}
set c [chan push [tempchan] foo]
puts -nonewline $c snarfsnarfsnarf
lappend res [catch {flush $c} msg] $msg
} -cleanup {
tempdone
rename foo {}
} -result {{write rt* snarfsnarfsnarf} 1 FAIL!}
test iortrans-5.4 {chan write, non-writable channel} -setup {
set res {}
} -match glob -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args MUST_NOT_HAPPEN
return
}
set c [chan push [tempchan r] foo]
lappend res [catch {
puts -nonewline $c snarfsnarfsnarf
flush $c
} msg] $msg
} -cleanup {
close $c
tempdone
rename foo {}
} -result {1 {channel "file*" wasn't opened for writing}}
test iortrans-5.5 {chan write, failed write, error return} -setup {
set res {}
} -match glob -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
return -code error BOOM!
}
set c [chan push [tempchan] foo]
lappend res [catch {
puts -nonewline $c snarfsnarfsnarf
flush $c
} msg] $msg
} -cleanup {
tempdone
rename foo {}
} -result {{write rt* snarfsnarfsnarf} 1 BOOM!}
test iortrans-5.6 {chan write, failed write, error return} -setup {
set res {}
} -match glob -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
error BOOM!
}
set c [chan push [tempchan] foo]
lappend res {*}[catch {
puts -nonewline $c snarfsnarfsnarf
flush $c
} msg] $msg
} -cleanup {
tempdone
rename foo {}
} -result {{write rt* snarfsnarfsnarf} 1 BOOM!}
test iortrans-5.7 {chan write, failed write, break return is error} -setup {
set res {}
} -match glob -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
return -code break BOOM!
}
set c [chan push [tempchan] foo]
lappend res [catch {
puts -nonewline $c snarfsnarfsnarf
flush $c
} msg] $msg
} -cleanup {
tempdone
rename foo {}
} -result {{write rt* snarfsnarfsnarf} 1 *bad code*}
test iortrans-5.8 {chan write, failed write, continue return is error} -setup {
set res {}
} -match glob -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
return -code continue BOOM!
}
set c [chan push [tempchan] foo]
lappend res [catch {
puts -nonewline $c snarfsnarfsnarf
flush $c
} msg] $msg
} -cleanup {
tempdone
rename foo {}
} -result {{write rt* snarfsnarfsnarf} 1 *bad code*}
test iortrans-5.9 {chan write, failed write, custom return is error} -setup {
set res {}
} -match glob -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
return -code 777 BOOM!
}
set c [chan push [tempchan] foo]
lappend res [catch {
puts -nonewline $c snarfsnarfsnarf
flush $c
} msg] $msg
} -cleanup {
tempdone
rename foo {}
} -result {{write rt* snarfsnarfsnarf} 1 *bad code*}
test iortrans-5.10 {chan write, failed write, level is ignored} -setup {
set res {}
} -match glob -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
return -level 55 -code 777 BOOM!
}
set c [chan push [tempchan] foo]
lappend res [catch {
puts -nonewline $c snarfsnarfsnarf
flush $c
} msg opt] $msg
noteOpts $opt
} -cleanup {
tempdone
rename foo {}
} -result {{write rt* snarfsnarfsnarf} 1 *bad code* {-code 1 -level 0 -errorcode NONE -errorline * -errorinfo *bad code*subcommand "write"*}}
test iortrans-5.11 {chan write, bug 2921116} -match glob -setup {
set res {}
set level 0
} -body {
proc foo {fd args} {
handle.initialize
handle.finalize
lappend ::res $args
# pop - invokes flush - invokes 'foo write' - infinite recursion - stop it
global level
if {$level} {
return
}
incr level
# Kill and recreate transform while it is operating
chan pop $fd
chan push $fd [list foo $fd]
}
set c [chan push [set c [tempchan]] [list foo $c]]
lappend res [puts -nonewline $c abcdef]
lappend res [flush $c]
} -cleanup {
tempdone
rename foo {}
} -result {{} {write rt* abcdef} {write rt* abcdef} {}}
# --- === *** ###########################
# method limit?, drain (via read)
test iortrans-6.1 {chan read, read limits} -setup {
set res {}
} -match glob -body {
proc foo {args} {
handle.initialize limit?
handle.finalize
lappend ::res $args
handle.read
return 6
}
set c [chan push [tempchan] foo]
lappend res [read $c 10]
} -cleanup {
tempdone
rename foo {}
} -result {{limit? rt*} {read rt* {test d}} {limit? rt*} {read rt* {ata
}} {limit? rt*} @@}
test iortrans-6.2 {chan read, read transform drain on eof} -setup {
set res {}
} -match glob -body {
proc foo {args} {
handle.initialize drain
handle.finalize
lappend ::res $args
handle.read
handle.drain
return
}
set c [chan push [tempchan] foo]
lappend res [read $c]
lappend res [close $c]
} -cleanup {
tempdone
rename foo {}
} -result {{read rt* {test data
}} {drain rt*} @<> {}}
# --- === *** ###########################
# method clear (via puts, seek)
test iortrans-7.1 {chan write, write clears read buffers} -setup {
set res {}
} -match glob -body {
proc foo {args} {
handle.initialize clear
handle.finalize
lappend ::res $args
handle.clear
return transformresult
}
set c [chan push [tempchan] foo]
puts -nonewline $c snarf
flush $c
return $res
} -cleanup {
tempdone
rename foo {}
} -result {{clear rt*} {write rt* snarf}}
test iortrans-7.2 {seek clears read buffers} -setup {
set res {}
} -match glob -body {
proc foo {args} {
handle.initialize clear
handle.finalize
lappend ::res $args
return
}
set c [chan push [tempchan] foo]
seek $c 2
return $res
} -cleanup {
tempdone
rename foo {}
} -result {{clear rt*}}
test iortrans-7.3 {clear, any result is ignored} -setup {
set res {}
} -match glob -body {
proc foo {args} {
handle.initialize clear
handle.finalize
lappend ::res $args
return -code error "X"
}
set c [chan push [tempchan] foo]
seek $c 2
return $res
} -cleanup {
tempdone
rename foo {}
} -result {{clear rt*}}
test iortrans-7.4 {chan clear, bug 2921116} -match glob -setup {
set res {}
} -body {
proc foo {fd args} {
handle.initialize clear
handle.finalize
lappend ::res $args
# Kill and recreate transform while it is operating
chan pop $fd
chan push $fd [list foo $fd]
}
set c [chan push [set c [tempchan]] [list foo $c]]
seek $c 2
return $res
} -cleanup {
tempdone
rename foo {}
} -result {{clear rt*}}
# --- === *** ###########################
# method flush (via seek, close)
test iortrans-8.1 {seek flushes write buffers, ignores data} -setup {
set res {}
} -match glob -body {
proc foo {args} {
handle.initialize flush
handle.finalize
lappend ::res $args
return X
}
set c [chan push [tempchan] foo]
# Flush, no writing
seek $c 2
# The close flushes again, this modifies the file!
lappend res |
lappend res [close $c] | [tempview]
} -cleanup {
tempdone
rename foo {}
} -result {{flush rt*} | {flush rt*} {} | {teXt data}}
test iortrans-8.2 {close flushes write buffers, writes data} -setup {
set res {}
} -match glob -body {
proc foo {args} {
handle.initialize flush
lappend ::res $args
handle.finalize
return .flushed.
}
set c [chan push [tempchan] foo]
close $c
lappend res [tempview]
} -cleanup {
tempdone
rename foo {}
} -result {{flush rt*} {finalize rt*} .flushed.}
test iortrans-8.3 {chan flush, bug 2921116} -match glob -setup {
set res {}
} -body {
proc foo {fd args} {
handle.initialize flush
handle.finalize
lappend ::res $args
# Kill and recreate transform while it is operating
chan pop $fd
chan push $fd [list foo $fd]
}
set c [chan push [set c [tempchan]] [list foo $c]]
seek $c 2
set res
} -cleanup {
tempdone
rename foo {}
} -result {{flush rt*}}
# --- === *** ###########################
# method watch - removed from TIP (rev 1.12+)
# --- === *** ###########################
# method event - removed from TIP (rev 1.12+)
# --- === *** ###########################
# 'Pull the rug' tests. Create channel in a interpreter A, move to other
# interpreter B, destroy the origin interpreter (A) before or during access
# from B. Must not crash, must return proper errors.
test iortrans-11.0 {origin interpreter of moved transform gone} -setup {
set ida [interp create]; #puts <<$ida>>
set idb [interp create]; #puts <<$idb>>
# Magic to get the test* commands in the children
load {} Tcltest $ida
load {} Tcltest $idb
} -constraints {testchannel} -match glob -body {
# Set up channel and transform in interpreter
interp eval $ida $helperscript
interp eval $ida [list ::variable tempchan [tempchan]]
interp transfer {} $::tempchan $ida
set chan [interp eval $ida {
variable tempchan
proc foo {args} {
handle.initialize clear drain flush limit? read write
handle.finalize
lappend ::res $args
return
}
set chan [chan push $tempchan foo]
fconfigure $chan -buffering none
set chan
}]
# Move channel to 2nd interpreter, transform goes with it.
interp eval $ida [list testchannel cut $chan]
interp eval $idb [list testchannel splice $chan]
# Kill origin interpreter, then access channel from 2nd interpreter.
interp delete $ida
set res {}
lappend res \
[catch {interp eval $idb [list puts $chan shoo]} msg] $msg \
[catch {interp eval $idb [list tell $chan]} msg] $msg \
[catch {interp eval $idb [list seek $chan 1]} msg] $msg \
[catch {interp eval $idb [list gets $chan]} msg] $msg \
[catch {interp eval $idb [list close $chan]} msg] $msg
#lappend res [interp eval $ida {set res}]
# actions: clear|write|clear|write|clear|flush|limit?|drain|flush
# The 'tell' is ok, as it passed through the transform to the base channel
# without invoking the transform handler.
} -cleanup {
tempdone
interp delete $idb
} -result {1 {Owner lost} 0 0 1 {Owner lost} 1 {Owner lost} 1 {Owner lost}}
test iortrans-11.1 {origin interpreter of moved transform destroyed during access} -setup {
set ida [interp create]; #puts <<$ida>>
set idb [interp create]; #puts <<$idb>>
# Magic to get the test* commands in the children
load {} Tcltest $ida
load {} Tcltest $idb
} -constraints {testchannel} -match glob -body {
# Set up channel in thread
set chan [interp eval $ida $helperscript]
interp eval $ida [list ::variable tempchan [tempchan]]
interp transfer {} $::tempchan $ida
set chan [interp eval $ida {
proc foo {args} {
handle.initialize clear drain flush limit? read write
handle.finalize
lappend ::res $args
# Destroy interpreter during channel access.
suicide
}
set chan [chan push $tempchan foo]
fconfigure $chan -buffering none
set chan
}]
interp alias $ida suicide {} interp delete $ida
# Move channel to 2nd thread, transform goes with it.
interp eval $ida [list testchannel cut $chan]
interp eval $idb [list testchannel splice $chan]
# Run access from interpreter B, this will give us a synchronous response.
interp eval $idb [list set chan $chan]
interp eval $idb [list set mid $tcltest::mainThread]
set res [interp eval $idb {
# Wait a bit, give the main thread the time to start its event loop to
# wait for the response from B
after 50
catch { puts $chan shoo } res
set res
}]
} -cleanup {
interp delete $idb
tempdone
} -result {Owner lost}
test iortrans-11.2 {delete interp of reflected transform} -setup {
interp create child
# Magic to get the test* commands into the child
load {} Tcltest child
} -constraints {testchannel} -body {
# Get base channel into the child
set c [tempchan]
testchannel cut $c
interp eval child [list testchannel splice $c]
interp eval child [list set c $c]
child eval {
proc no-op args {}
proc driver {c sub args} {
return {initialize finalize read write}
}
set t [chan push $c [list driver $c]]
chan event $c readable no-op
}
interp delete child
} -cleanup {
tempdone
} -result {}
# ### ### ### ######### ######### #########
## Same tests as above, but exercising the code forwarding and receiving
## driver operations to the originator thread.
# ### ### ### ######### ######### #########
## Testing the reflected channel (Thread forwarding).
#
## The id numbers refer to the original test without thread forwarding, and
## gaps due to tests not applicable to forwarding are left to keep this
## association.
# ### ### ### ######### ######### #########
## Helper command. Runs a script in a separate thread and returns the result.
## A channel is transferred into the thread as well, and a list of configuration
## variables
proc inthread {chan script args} {
# Test thread.
set tid [thread::create -preserved]
thread::send $tid {load {} Tcltest}
# Init thread configuration.
# - Listed variables
# - Id of main thread
# - A number of helper commands
foreach v $args {
upvar 1 $v x
thread::send $tid [list set $v $x]
}
thread::send $tid [list set mid [thread::id]]
thread::send $tid {
proc notes {} {
return $::notes
}
proc noteOpts opts {
lappend ::notes [dict merge {
-code !?! -level !?! -errorcode !?! -errorline !?!
-errorinfo !?! -errorstack !?!
} $opts]
}
}
thread::send $tid [list proc s {} [list uplevel 1 $script]]; # (*)
# Transfer channel (cut/splice aka detach/attach)
testchannel cut $chan
thread::send $tid [list testchannel splice $chan]
# Run test script, also run local event loop! The local event loop waits
# for the result to come back. It is also necessary for the execution of
# forwarded channel operations.
set ::tres ""
thread::send -async $tid {
after 50
catch {s} res; # This runs the script, 's' was defined at (*)
thread::send -async $mid [list set ::tres $res]
}
vwait ::tres
# Remove test thread, and return the captured result.
thread::release $tid
return $::tres
}
# ### ### ### ######### ######### #########
test iortrans.tf-3.2 {chan finalize, for close} -setup {
set res {}
} -constraints {testchannel thread} -match glob -body {
proc foo {args} {
lappend ::res $args
handle.initialize
return {}
}
lappend res [set c [chan push [tempchan] foo]]
lappend res [inthread $c {
close $c
# Close the deleted the channel.
file channels rt*
} c]
# Channel destruction does not kill handler command!
lappend res [info command foo]
} -cleanup {
rename foo {}
} -result {{initialize rt* {read write}} file* {finalize rt*} {} foo}
test iortrans.tf-3.3 {chan finalize, for close, error, close error} -setup {
set res {}
} -constraints {testchannel thread} -match glob -body {
proc foo {args} {
lappend ::res $args
handle.initialize
return -code error 5
}
lappend res [set c [chan push [tempchan] foo]]
lappend res {*}[inthread $c {
lappend notes [catch {close $c} msg] $msg
# Channel is gone despite error.
lappend notes [file channels rt*]
notes
} c]
} -cleanup {
rename foo {}
} -result {{initialize rt* {read write}} file* {finalize rt*} 1 5 {}}
test iortrans.tf-3.4 {chan finalize, for close, error, close errror} -setup {
set res {}
} -constraints {testchannel thread} -body {
proc foo {args} {
lappend ::res $args
handle.initialize
error FOO
}
lappend res [set c [chan push [tempchan] foo]]
lappend res {*}[inthread $c {
lappend notes [catch {close $c} msg] $msg
notes
} c]
} -match glob -cleanup {
rename foo {}
} -result {{initialize rt* {read write}} file* {finalize rt*} 1 FOO}
test iortrans.tf-3.5 {chan finalize, for close, arbitrary result} -setup {
set res {}
} -constraints {testchannel thread} -match glob -body {
proc foo {args} {
lappend ::res $args
handle.initialize
return SOMETHING
}
lappend res [set c [chan push [tempchan] foo]]
lappend res {*}[inthread $c {
lappend notes [catch {close $c} msg] $msg
notes
} c]
} -cleanup {
rename foo {}
} -result {{initialize rt* {read write}} file* {finalize rt*} 0 {}}
test iortrans.tf-3.6 {chan finalize, for close, break, close error} -setup {
set res {}
} -constraints {testchannel thread} -match glob -body {
proc foo {args} {
lappend ::res $args
handle.initialize
return -code 3
}
lappend res [set c [chan push [tempchan] foo]]
lappend res {*}[inthread $c {
lappend notes [catch {close $c} msg] $msg
notes
} c]
} -cleanup {
rename foo {}
} -result {{initialize rt* {read write}} file* {finalize rt*} 1 *bad code*}
test iortrans.tf-3.7 {chan finalize, for close, continue, close error} -setup {
set res {}
} -constraints {testchannel thread} -match glob -body {
proc foo {args} {
lappend ::res $args
handle.initialize
return -code 4
}
lappend res [set c [chan push [tempchan] foo]]
lappend res {*}[inthread $c {
lappend notes [catch {close $c} msg] $msg
notes
} c]
} -cleanup {
rename foo {}
} -result {{initialize rt* {read write}} file* {finalize rt*} 1 *bad code*}
test iortrans.tf-3.8 {chan finalize, for close, custom code, close error} -setup {
set res {}
} -constraints {testchannel thread} -match glob -body {
proc foo {args} {
lappend ::res $args
handle.initialize
return -code 777 BANG
}
lappend res [set c [chan push [tempchan] foo]]
lappend res {*}[inthread $c {
lappend notes [catch {close $c} msg] $msg
notes
} c]
} -cleanup {
rename foo {}
} -result {{initialize rt* {read write}} file* {finalize rt*} 1 *bad code*}
test iortrans.tf-3.9 {chan finalize, for close, ignore level, close error} -setup {
set res {}
} -constraints {testchannel thread} -match glob -body {
proc foo {args} {
lappend ::res $args
handle.initialize
return -level 5 -code 777 BANG
}
lappend res [set c [chan push [tempchan] foo]]
lappend res {*}[inthread $c {
lappend notes [catch {close $c} msg opt] $msg
noteOpts $opt
notes
} c]
} -cleanup {
rename foo {}
} -result {{initialize rt* {read write}} file* {finalize rt*} 1 *bad code* {-code 1 -level 0 -errorcode NONE -errorline 1 -errorinfo *bad code*subcommand "finalize"*}}
# --- === *** ###########################
# method read
test iortrans.tf-4.1 {chan read, transform call and return} -setup {
set res {}
} -constraints {testchannel thread} -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
return snarf
}
set c [chan push [tempchan] foo]
lappend res {*}[inthread $c {
lappend notes [read $c 10]
close $c
notes
} c]
} -cleanup {
tempdone
rename foo {}
} -match glob -result {{read rt* {test data
}} snarf}
test iortrans.tf-4.2 {chan read, for non-readable channel} -setup {
set res {}
} -constraints {testchannel thread} -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args MUST_NOT_HAPPEN
}
set c [chan push [tempchan w] foo]
lappend res {*}[inthread $c {
lappend notes [catch {[read $c 2]} msg] $msg
close $c
notes
} c]
} -cleanup {
tempdone
rename foo {}
} -match glob -result {1 {channel "file*" wasn't opened for reading}}
test iortrans.tf-4.3 {chan read, error return} -setup {
set res {}
} -constraints {testchannel thread} -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
return -code error BOOM!
}
set c [chan push [tempchan] foo]
lappend res {*}[inthread $c {
lappend notes [catch {read $c 2} msg] $msg
close $c
notes
} c]
} -cleanup {
tempdone
rename foo {}
} -match glob -result {{read rt* {test data
}} 1 BOOM!}
test iortrans.tf-4.4 {chan read, break return is error} -setup {
set res {}
} -constraints {testchannel thread} -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
return -code break BOOM!
}
set c [chan push [tempchan] foo]
lappend res {*}[inthread $c {
lappend notes [catch {read $c 2} msg] $msg
close $c
notes
} c]
} -cleanup {
tempdone
rename foo {}
} -match glob -result {{read rt* {test data
}} 1 *bad code*}
test iortrans.tf-4.5 {chan read, continue return is error} -setup {
set res {}
} -constraints {testchannel thread} -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
return -code continue BOOM!
}
set c [chan push [tempchan] foo]
lappend res {*}[inthread $c {
lappend notes [catch {read $c 2} msg] $msg
close $c
notes
} c]
} -cleanup {
tempdone
rename foo {}
} -match glob -result {{read rt* {test data
}} 1 *bad code*}
test iortrans.tf-4.6 {chan read, custom return is error} -setup {
set res {}
} -constraints {testchannel thread} -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
return -code 777 BOOM!
}
set c [chan push [tempchan] foo]
lappend res {*}[inthread $c {
lappend notes [catch {read $c 2} msg] $msg
close $c
notes
} c]
} -cleanup {
tempdone
rename foo {}
} -match glob -result {{read rt* {test data
}} 1 *bad code*}
test iortrans.tf-4.7 {chan read, level is squashed} -setup {
set res {}
} -constraints {testchannel thread} -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
return -level 55 -code 777 BOOM!
}
set c [chan push [tempchan] foo]
lappend res {*}[inthread $c {
lappend notes [catch {read $c 2} msg opt] $msg
noteOpts $opt
close $c
notes
} c]
} -cleanup {
tempdone
rename foo {}
} -match glob -result {{read rt* {test data
}} 1 *bad code* {-code 1 -level 0 -errorcode NONE -errorline 1 -errorinfo *bad code*subcommand "read"*}}
# --- === *** ###########################
# method write
test iortrans.tf-5.1 {chan write, regular write} -setup {
set res {}
} -constraints {testchannel thread} -match glob -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
return transformresult
}
set c [chan push [tempchan] foo]
inthread $c {
puts -nonewline $c snarf
flush $c
close $c
} c
lappend res [tempview]
} -cleanup {
tempdone
rename foo {}
} -result {{write rt* snarf} transformresult}
test iortrans.tf-5.2 {chan write, no write is ok, no change to file} -setup {
set res {}
} -constraints {testchannel thread} -match glob -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
return
}
set c [chan push [tempchan] foo]
inthread $c {
puts -nonewline $c snarfsnarfsnarf
flush $c
close $c
} c
lappend res [tempview]; # This has to show the original data, as nothing was written
} -cleanup {
tempdone
rename foo {}
} -result {{write rt* snarfsnarfsnarf} {test data}}
test iortrans.tf-5.3 {chan write, failed write} -setup {
set res {}
} -constraints {testchannel thread} -match glob -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
return -code error FAIL!
}
set c [chan push [tempchan] foo]
lappend res {*}[inthread $c {
puts -nonewline $c snarfsnarfsnarf
lappend notes [catch {flush $c} msg] $msg
close $c
notes
} c]
} -cleanup {
tempdone
rename foo {}
} -result {{write rt* snarfsnarfsnarf} 1 FAIL!}
test iortrans.tf-5.4 {chan write, non-writable channel} -setup {
set res {}
} -constraints {testchannel thread} -match glob -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args MUST_NOT_HAPPEN
return
}
set c [chan push [tempchan r] foo]
lappend res {*}[inthread $c {
lappend notes [catch {
puts -nonewline $c snarfsnarfsnarf
flush $c
} msg] $msg
close $c
notes
} c]
} -cleanup {
tempdone
rename foo {}
} -result {1 {channel "file*" wasn't opened for writing}}
test iortrans.tf-5.5 {chan write, failed write, error return} -setup {
set res {}
} -constraints {testchannel thread} -match glob -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
return -code error BOOM!
}
set c [chan push [tempchan] foo]
lappend res {*}[inthread $c {
lappend notes [catch {
puts -nonewline $c snarfsnarfsnarf
flush $c
} msg] $msg
close $c
notes
} c]
} -cleanup {
tempdone
rename foo {}
} -result {{write rt* snarfsnarfsnarf} 1 BOOM!}
test iortrans.tf-5.6 {chan write, failed write, error return} -setup {
set res {}
} -constraints {testchannel thread} -match glob -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
error BOOM!
}
set c [chan push [tempchan] foo]
lappend res {*}[inthread $c {
lappend notes [catch {
puts -nonewline $c snarfsnarfsnarf
flush $c
} msg] $msg
close $c
notes
} c]
} -cleanup {
tempdone
rename foo {}
} -result {{write rt* snarfsnarfsnarf} 1 BOOM!}
test iortrans.tf-5.7 {chan write, failed write, break return is error} -setup {
set res {}
} -constraints {testchannel thread} -match glob -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
return -code break BOOM!
}
set c [chan push [tempchan] foo]
lappend res {*}[inthread $c {
lappend notes [catch {
puts -nonewline $c snarfsnarfsnarf
flush $c
} msg] $msg
close $c
notes
} c]
} -cleanup {
tempdone
rename foo {}
} -result {{write rt* snarfsnarfsnarf} 1 *bad code*}
test iortrans.tf-5.8 {chan write, failed write, continue return is error} -setup {
set res {}
} -constraints {testchannel thread} -match glob -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
return -code continue BOOM!
}
set c [chan push [tempchan] foo]
lappend res {*}[inthread $c {
lappend notes [catch {
puts -nonewline $c snarfsnarfsnarf
flush $c
} msg] $msg
close $c
notes
} c]
} -cleanup {
rename foo {}
} -result {{write rt* snarfsnarfsnarf} 1 *bad code*}
test iortrans.tf-5.9 {chan write, failed write, custom return is error} -setup {
set res {}
} -constraints {testchannel thread} -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
return -code 777 BOOM!
}
set c [chan push [tempchan] foo]
lappend res {*}[inthread $c {
lappend notes [catch {
puts -nonewline $c snarfsnarfsnarf
flush $c
} msg] $msg
close $c
notes
} c]
} -cleanup {
tempdone
rename foo {}
} -match glob -result {{write rt* snarfsnarfsnarf} 1 *bad code*}
test iortrans.tf-5.10 {chan write, failed write, level is ignored} -setup {
set res {}
} -constraints {testchannel thread} -match glob -body {
proc foo {args} {
handle.initialize
handle.finalize
lappend ::res $args
return -level 55 -code 777 BOOM!
}
set c [chan push [tempchan] foo]
lappend res {*}[inthread $c {
lappend notes [catch {
puts -nonewline $c snarfsnarfsnarf
flush $c
} msg opt] $msg
noteOpts $opt
close $c
notes
} c]
} -cleanup {
tempdone
rename foo {}
} -result {{write rt* snarfsnarfsnarf} 1 *bad code* {-code 1 -level 0 -errorcode NONE -errorline * -errorinfo *bad code*subcommand "write"*}}
# --- === *** ###########################
# method limit?, drain (via read)
test iortrans.tf-6.1 {chan read, read limits} -setup {
set res {}
} -constraints {testchannel thread} -match glob -body {
proc foo {args} {
handle.initialize limit?
handle.finalize
lappend ::res $args
handle.read
return 6
}
set c [chan push [tempchan] foo]
lappend res {*}[inthread $c {
lappend notes [read $c 10]
close $c
notes
} c]
} -cleanup {
tempdone
rename foo {}
} -result {{limit? rt*} {read rt* {test d}} {limit? rt*} {read rt* {ata
}} {limit? rt*} @@}
test iortrans.tf-6.2 {chan read, read transform drain on eof} -setup {
set res {}
} -constraints {testchannel thread} -match glob -body {
proc foo {args} {
handle.initialize drain
handle.finalize
lappend ::res $args
handle.read
handle.drain
return
}
set c [chan push [tempchan] foo]
lappend res {*}[inthread $c {
lappend notes [read $c]
lappend notes [close $c]
} c]
} -cleanup {
tempdone
rename foo {}
} -result {{read rt* {test data
}} {drain rt*} @<> {}}
# --- === *** ###########################
# method clear (via puts, seek)
test iortrans.tf-7.1 {chan write, write clears read buffers} -setup {
set res {}
} -constraints {testchannel thread} -match glob -body {
proc foo {args} {
handle.initialize clear
handle.finalize
lappend ::res $args
handle.clear
return transformresult
}
set c [chan push [tempchan] foo]
inthread $c {
puts -nonewline $c snarf
flush $c
close $c
} c
return $res
} -cleanup {
tempdone
rename foo {}
} -result {{clear rt*} {write rt* snarf}}
test iortrans.tf-7.2 {seek clears read buffers} -setup {
set res {}
} -constraints {testchannel thread} -match glob -body {
proc foo {args} {
handle.initialize clear
handle.finalize
lappend ::res $args
return
}
set c [chan push [tempchan] foo]
inthread $c {
seek $c 2
close $c
} c
return $res
} -cleanup {
tempdone
rename foo {}
} -result {{clear rt*}}
test iortrans.tf-7.3 {clear, any result is ignored} -setup {
set res {}
} -constraints {testchannel thread} -match glob -body {
proc foo {args} {
handle.initialize clear
handle.finalize
lappend ::res $args
return -code error "X"
}
set c [chan push [tempchan] foo]
inthread $c {
seek $c 2
close $c
} c
return $res
} -cleanup {
tempdone
rename foo {}
} -result {{clear rt*}}
# --- === *** ###########################
# method flush (via seek, close)
test iortrans.tf-8.1 {seek flushes write buffers, ignores data} -setup {
set res {}
} -constraints {testchannel thread} -match glob -body {
proc foo {args} {
handle.initialize flush
handle.finalize
lappend ::res $args
return X
}
set c [chan push [tempchan] foo]
lappend res {*}[inthread $c {
# Flush, no writing
seek $c 2
# The close flushes again, this modifies the file!
lappend notes | [close $c] |
# NOTE: The flush generated by the close is recorded immediately, the
# other note's here are deferred until after the thread is done. This
# changes the order of the result a bit from the non-threaded case
# (The first | moves one to the right). This is an artifact of the
# 'inthread' framework, not of the transformation itself.
notes
} c]
lappend res [tempview]
} -cleanup {
tempdone
rename foo {}
} -result {{flush rt*} {flush rt*} | {} | {teXt data}}
test iortrans.tf-8.2 {close flushes write buffers, writes data} -setup {
set res {}
} -constraints {testchannel thread} -match glob -body {
proc foo {args} {
handle.initialize flush
lappend ::res $args
handle.finalize
return .flushed.
}
set c [chan push [tempchan] foo]
inthread $c {
close $c
} c
lappend res [tempview]
} -cleanup {
tempdone
rename foo {}
} -result {{flush rt*} {finalize rt*} .flushed.}
# --- === *** ###########################
# method watch - removed from TIP (rev 1.12+)
# --- === *** ###########################
# method event - removed from TIP (rev 1.12+)
# --- === *** ###########################
# 'Pull the rug' tests. Create channel in a thread A, move to other thread B,
# destroy the origin thread (A) before or during access from B. Must not
# crash, must return proper errors.
test iortrans.tf-11.0 {origin thread of moved transform gone} -setup {
#puts <<$tcltest::mainThread>>main
set tida [thread::create -preserved]; #puts <<$tida>>
thread::send $tida {load {} Tcltest}
set tidb [thread::create -preserved]; #puts <<$tida>>
thread::send $tidb {load {} Tcltest}
} -constraints {testchannel thread} -match glob -body {
# Set up channel in thread
thread::send $tida $helperscript
thread::send $tidb $helperscript
set chan [thread::send $tida {
proc foo {args} {
handle.initialize clear drain flush limit? read write
handle.finalize
lappend ::res $args
return
}
set chan [chan push [tempchan] foo]
fconfigure $chan -buffering none
set chan
}]
# Move channel to 2nd thread, transform goes with it.
thread::send $tida [list testchannel cut $chan]
thread::send $tidb [list testchannel splice $chan]
# Kill origin thread, then access channel from 2nd thread.
thread::release -wait $tida
set res {}
lappend res [catch {thread::send $tidb [list puts $chan shoo]} msg] $msg
lappend res [catch {thread::send $tidb [list tell $chan]} msg] $msg
lappend res [catch {thread::send $tidb [list seek $chan 1]} msg] $msg
lappend res [catch {thread::send $tidb [list gets $chan]} msg] $msg
lappend res [catch {thread::send $tidb [list close $chan]} msg] $msg
# The 'tell' is ok, as it passed through the transform to the base
# channel without invoking the transform handler.
} -cleanup {
thread::send $tidb tempdone
thread::release $tidb
} -result {1 {Owner lost} 0 0 1 {Owner lost} 1 {Owner lost} 1 {Owner lost}}
test iortrans.tf-11.1 {origin thread of moved transform destroyed during access} -setup {
#puts <<$tcltest::mainThread>>main
set tida [thread::create -preserved]; #puts <<$tida>>
thread::send $tida {load {} Tcltest}
set tidb [thread::create -preserved]; #puts <<$tidb>>
thread::send $tidb {load {} Tcltest}
} -constraints {testchannel thread notValgrind} -match glob -body {
# Set up channel in thread
thread::send $tida $helperscript
thread::send $tidb $helperscript
set chan [thread::send $tida {
proc foo {args} {
handle.initialize clear drain flush limit? read write
handle.finalize
lappend ::res $args
# destroy thread during channel access
thread::exit
}
set chan [chan push [tempchan] foo]
fconfigure $chan -buffering none
set chan
}]
# Move channel to 2nd thread, transform goes with it.
thread::send $tida [list testchannel cut $chan]
thread::send $tidb [list testchannel splice $chan]
# Run access from thread B, wait for response from A (A is not using event
# loop at this point, so the event pile up in the queue.
thread::send $tidb [list set chan $chan]
thread::send $tidb [list set mid [thread::id]]
thread::send -async $tidb {
# Wait a bit, give the main thread the time to start its event loop to
# wait for the response from B
after 50
catch { puts $chan shoo } res
catch { close $chan }
thread::send -async $mid [list set ::res $res]
}
vwait ::res
set res
} -cleanup {
thread::send $tidb tempdone
thread::release $tidb
} -result {Owner lost}
test iortrans-ea69b0258a9833cb {
Crash when using a channel transformation on TCP client socket
"line two" does not make it into result. This issue should probably be
addressed, but it is outside the scope of this test.
} -setup {
set res {}
set read 0
} -body {
namespace eval reflector1 {
variable source "line one\nline two"
interp alias {} [namespace current]::dispatch {} [
namespace parent]::reflector [namespace current]
}
set chan [chan create read [namespace which reflector1::dispatch]]
chan configure $chan -blocking 0
chan push $chan inputfilter
chan event $chan read [list ::apply [list chan {
variable res
variable read
set gets [gets $chan]
append res $gets
incr read
} [namespace current]] $chan]
vwait [namespace current]::read
chan pop $chan
vwait [namespace current]::read
return $res
} -cleanup {
catch {unset read}
close $chan
} -result {line one}
cleanupTests
return
|