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 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565
|
# Copyright (c) 2018, cPanel, LLC.
# All rights reserved.
# http://cpanel.net
#
# This is free software; you can redistribute it and/or modify it under the
# same terms as Perl itself. See L<perlartistic>.
package Test::MockFile;
use strict;
use warnings;
# perl -MFcntl -E'eval "say q{$_: } . $_" foreach sort {eval "$a" <=> eval "$b"} qw/O_RDONLY O_WRONLY O_RDWR O_CREAT O_EXCL O_NOCTTY O_TRUNC O_APPEND O_NONBLOCK O_NDELAY O_EXLOCK O_SHLOCK O_DIRECTORY O_NOFOLLOW O_SYNC O_BINARY O_LARGEFILE/'
use Fcntl; # O_RDONLY, etc.
use constant SUPPORTED_SYSOPEN_MODES => O_RDONLY | O_WRONLY | O_RDWR | O_APPEND | O_TRUNC | O_EXCL | O_CREAT | O_NOFOLLOW;
use constant BROKEN_SYMLINK => bless {}, "A::BROKEN::SYMLINK";
use constant CIRCULAR_SYMLINK => bless {}, "A::CIRCULAR::SYMLINK";
# we're going to use carp but the errors should come from outside of our package.
use Carp qw(carp confess croak);
BEGIN {
$Carp::Internal{ (__PACKAGE__) }++;
$Carp::Internal{'Overload::FileCheck'}++;
}
use Cwd ();
use IO::File ();
use Test::MockFile::FileHandle ();
use Test::MockFile::DirHandle ();
use Text::Glob ();
use Scalar::Util ();
use Symbol;
use Overload::FileCheck '-from-stat' => \&_mock_stat, q{:check};
use Errno qw/EPERM ENOENT ELOOP EEXIST EISDIR ENOTDIR EINVAL/;
use constant FOLLOW_LINK_MAX_DEPTH => 10;
=head1 NAME
Test::MockFile - Allows tests to validate code that can interact with
files without touching the file system.
=head1 VERSION
Version 0.037
=cut
our $VERSION = '0.037';
our %files_being_mocked;
# From http://man7.org/linux/man-pages/man7/inode.7.html
use constant S_IFMT => 0170000; # bit mask for the file type bit field
use constant S_IFPERMS => 07777; # bit mask for file perms.
use constant S_IFSOCK => 0140000; # socket
use constant S_IFLNK => 0120000; # symbolic link
use constant S_IFREG => 0100000; # regular file
use constant S_IFBLK => 0060000; # block device
use constant S_IFDIR => 0040000; # directory
use constant S_IFCHR => 0020000; # character device
use constant S_IFIFO => 0010000; # FIFO
=head1 SYNOPSIS
Intercepts file system calls for specific files so unit testing can
take place without any files being altered on disk.
This is useful for L<small
tests|https://testing.googleblog.com/2010/12/test-sizes.html> where
file interaction is discouraged.
A strict mode is even provided (and turned on by default) which can
throw a die when files are accessed during your tests!
# Loaded before Test::MockFile so uses the core perl functions without any hooks.
use Module::I::Dont::Want::To::Alter;
# strict mode by default
use Test::MockFile ();
# non-strict mode
use Test::MockFile qw< nostrict >;
# Load with one or more plugins
use Test::MockFile plugin => 'FileTemp';
use Test::MockFile plugin => [ 'FileTemp', ... ];
# Be sure to assign the output of mocks, they disappear when they go out of scope
my $foobar = Test::MockFile->file( "/foo/bar", "contents\ngo\nhere" );
open my $fh, '<', '/foo/bar' or die; # Does not actually open the file on disk
say '/foo/bar exists' if -e $fh;
close $fh;
say '/foo/bar is a file' if -f '/foo/bar';
say '/foo/bar is THIS BIG: ' . -s '/foo/bar';
my $foobaz = Test::MockFile->file('/foo/baz'); # File starts out missing
my $opened = open my $baz_fh, '<', '/foo/baz'; # File reports as missing so fails
say '/foo/baz does not exist yet' if !-e '/foo/baz';
open $baz_fh, '>', '/foo/baz' or die; # open for writing
print {$baz_fh} "first line\n";
open $baz_fh, '>>', '/foo/baz' or die; # open for append.
print {$baz_fh} "second line";
close $baz_fh;
say "Contents of /foo/baz:\n>>" . $foobaz->contents() . '<<';
# Unmock your file.
# (same as the variable going out of scope
undef $foobaz;
# The file check will now happen on file system now the file is no longer mocked.
say '/foo/baz is missing again (no longer mocked)' if !-e '/foo/baz';
my $quux = Test::MockFile->file( '/foo/bar/quux.txt', '' );
my @matches = </foo/bar/*.txt>;
# ( '/foo/bar/quux.txt' )
say "Contents of /foo/bar directory: " . join "\n", @matches;
@matches = glob('/foo/bar/*.txt');
# same as above
say "Contents of /foo/bar directory (using glob()): " . join "\n", @matches;
=head1 IMPORT
When the module is loaded with no parameters, strict mode is turned on.
Any file checks, C<open>, C<sysopen>, C<opendir>, C<stat>, or C<lstat>
will throw a die.
For example:
use Test::MockFile;
# This will not die.
my $file = Test::MockFile->file("/bar", "...");
my $symlink = Test::MockFile->symlink("/foo", "/bar");
-l '/foo' or print "ok\n";
open my $fh, '>', '/foo';
# All of these will die
open my $fh, '>', '/unmocked/file'; # Dies
sysopen my $fh, '/other/file', O_RDONLY;
opendir my $fh, '/dir';
-e '/file';
-l '/file';
If we want to load the module without strict mode:
use Test::MockFile qw< nostrict >;
Relative paths are not supported:
use Test::MockFile;
# Checking relative vs absolute paths
$file = Test::MockFile->file( '/foo/../bar', '...' ); # not ok - relative path
$file = Test::MockFile->file( '/bar', '...' ); # ok - absolute path
$file = Test::MockFile->file( 'bar', '...' ); # ok - current dir
=cut
use constant STRICT_MODE_DISABLED => 1;
use constant STRICT_MODE_ENABLED => 2;
use constant STRICT_MODE_UNSET => 4;
use constant STRICT_MODE_DEFAULT => STRICT_MODE_ENABLED | STRICT_MODE_UNSET; # default state when unset by user
our $STRICT_MODE_STATUS;
BEGIN {
$STRICT_MODE_STATUS = STRICT_MODE_DEFAULT;
}
# Perl understands barewords are filehandles during compilation and
# parsing. If we override the functions, Perl will not show these as
# filehandles, but as strings
# We can try to convert it to the typeglob in the right namespace
sub _upgrade_barewords {
my @args = @_;
my $caller = caller(1);
# Add bareword information to the args
# Default: no
unshift @args, 0;
# Ignore variables
# Barewords are provided as strings, which means they're read-only
# (Of course, readonly scalars here will fool us...)
Internals::SvREADONLY( $_[0] )
or return @args;
# Upgrade the handle
my $handle;
{
no strict 'refs';
my $caller_pkg = caller(1);
$handle = *{"$caller_pkg\::$args[1]"};
}
# Check that the upgrading worked
ref \$handle eq 'GLOB'
or return @args;
# Set to bareword
$args[0] = 1;
# Override original handle variable/string
$args[1] = $handle;
return @args;
}
=head2 authorized_strict_mode_for_package( $pkg )
Add a package namespace to the list of authorize namespaces.
authorized_strict_mode_for_package( 'Your::Package' );
=cut
our %authorized_strict_mode_packages;
sub authorized_strict_mode_for_package {
my ($pkg) = @_;
$authorized_strict_mode_packages{$pkg} = 1;
return;
}
BEGIN {
authorized_strict_mode_for_package($_) for qw{ DynaLoader lib };
}
=head2 file_arg_position_for_command
Args: ($command)
Provides a hint with the position of the argument most likely holding
the file name for the current C<$command> call.
This is used internaly to provide better error messages. This can be
used when plugging hooks to know what's the filename we currently try
to access.
=cut
my $_file_arg_post;
sub file_arg_position_for_command { # can also be used by user hooks
my ( $command, $at_under_ref ) = @_;
$_file_arg_post //= {
'chmod' => 1,
'chown' => 2,
'lstat' => 0,
'mkdir' => 0,
'open' => 2,
'opendir' => 1,
'readlink' => 0,
'rmdir' => 0,
'stat' => 0,
'sysopen' => 1,
'unlink' => 0,
'readdir' => 0,
};
return -1 unless defined $command && defined $_file_arg_post->{$command};
# exception for open
return 1 if $command eq 'open' && ref $at_under_ref && scalar @$at_under_ref == 2;
return $_file_arg_post->{$command};
}
use constant _STACK_ITERATION_MAX => 100;
sub _get_stack {
my @stack;
foreach my $stack_level ( 1 .. _STACK_ITERATION_MAX ) {
@stack = caller($stack_level);
last if !scalar @stack;
last if !defined $stack[0]; # We don't know when this would ever happen.
next if $stack[0] eq __PACKAGE__;
next if $stack[0] eq 'Overload::FileCheck'; # companion package
return if $authorized_strict_mode_packages{ $stack[0] };
last;
}
return @stack;
}
=head2 add_strict_rule( $command_rule, $file_rule, $action )
Args: ($command_rule, $file_rule, $action)
Add a custom rule to validate strictness mode. This is the fundation to
add strict rules. You should use it, when none of the other helper to
add rules work for you.
=over
=item C<$command_rule> a string or regexp or list of any to indicate
which command to match
=itemC<$file_rule> a string or regexp or undef or list of any to indicate
which files your rules apply to.
=item C<$action> a CODE ref or scalar to handle the exception.
Returning '1' skip all other rules and indicate an exception.
=back
# Check open() on /this/file
add_strict_rule( 'open', '/this/file', sub { ... } );
# always bypass the strict rule
add_strict_rule( 'open', '/this/file', 1 );
# all available options
add_strict_rule( 'open', '/this/file', sub {
my ($context) = @_;
return; # Skip this rule and continue from the next one
return 0; # Strict violation, stop testing rules and die
return 1; # Strict passing, stop testing rules
} );
# Disallow open(), close() on everything in /tmp/
add_strict_rule(
[ qw< open close > ],
qr{^/tmp}xms,
0,
);
# Disallow open(), close() on everything (ignore filenames)
# Use add_strict_rule_for_command() instead!
add_strict_rule(
[ qw< open close > ],
undef,
0,
);
=cut
my @STRICT_RULES;
sub add_strict_rule {
my ( $command_rule, $file_rule, $action ) = @_;
defined $command_rule
or croak("add_strict_rule( COMMAND, PATH, ACTION )");
croak("Invalid rule: missing action code") unless defined $action;
my @commands = ref $command_rule eq 'ARRAY' ? @{$command_rule} : ($command_rule);
my @files = ref $file_rule eq 'ARRAY' ? @{$file_rule} : ($file_rule);
foreach my $c_rule (@commands) {
foreach my $f_rule (@files) {
push @STRICT_RULES, {
'command_rule' => ref $c_rule eq 'Regexp' ? $c_rule : qr/^\Q$c_rule\E$/,
'file_rule' => ( ref $f_rule eq 'Regexp' || !defined $f_rule ) ? $f_rule : qr/^\Q$f_rule\E$/,
'action' => $action,
};
}
}
return;
}
=head2 clear_strict_rules()
Args: none
Clear all previously defined rules. (Mainly used for testing purpose)
=cut
sub clear_strict_rules {
@STRICT_RULES = ();
return;
}
=head2 add_strict_rule_for_filename( $file_rule, $action )
Args: ($file_rule, $action)
Prefer using that helper when trying to add strict rules targeting
files.
Apply a rule to one or more files.
add_strict_rule_for_filename( '/that/file' => sub { ... } );
add_strict_rule_for_filename( [ qw{list of files} ] => sub { ... } );
add_strict_rule_for_filename( qr{*\.t$} => sub { ... } );
add_strict_rule_for_filename( [ $dir, qr{^${dir}/} ] => 1 );
=cut
sub add_strict_rule_for_filename {
my ( $file_rule, $action ) = @_;
return add_strict_rule( qr/.*/, $file_rule, $action );
}
=head2 add_strict_rule_for_command( $command_rule, $action )
Args: ($command_rule, $action)
Prefer using that helper when trying to add strict rules targeting
specici commands.
Apply a rule to one or more files.
add_strict_rule_for_command( 'open' => sub { ... } );
add_strict_rule_for_command( [ qw{open readdir} ] => sub { ... } );
add_strict_rule_for_command( qr{open.*} => sub { ... } );
Test::MockFile::add_strict_rule_for_command(
[qw{ readdir closedir readlink }],
sub {
my ($ctx) = @_;
my $command = $ctx->{command} // 'unknown';
warn( "Ignoring strict mode violation for $command" );
return 1;
}
);
=cut
sub add_strict_rule_for_command {
my ( $command_rule, $action, $extra ) = @_;
if ($extra) {
die q[Syntax not supported (extra arg) for 'add_strict_rule_for_command', please consider using 'add_strict_rule' instead.];
}
return add_strict_rule( $command_rule, undef, $action );
}
=head2 add_strict_rule_generic( $action )
Args: ($action)
Prefer using that helper when adding a rule which is global and does
not apply to a specific command or file.
Apply a rule to one or more files.
add_strict_rule_generic( sub { ... } );
add_strict_rule_generic( sub {
my ($ctx) = @_;
my $filename = $ctx->{filename};
return unless defined $filename;
return 1 if UNIVERSAL::isa( $filename, 'GLOB' );
return;
} );
=cut
sub add_strict_rule_generic {
my ($action) = @_;
return add_strict_rule( qr/.*/, undef, $action );
}
=head2 is_strict_mode
Boolean helper to determine if strict mode is currently enabled.
=cut
sub is_strict_mode {
return $STRICT_MODE_STATUS & STRICT_MODE_ENABLED ? 1 : 0;
}
sub _strict_mode_violation {
my ( $command, $at_under_ref ) = @_;
return unless is_strict_mode();
# These commands deal with dir handles we should have already been in violation when we opened the thing originally.
return if grep { $command eq $_ } qw/readdir telldir rewinddir seekdir closedir/;
my @stack = _get_stack();
return unless scalar @stack; # skip the package
my $filename;
# check it later so we give priority to authorized_strict_mode_packages
my $file_arg = file_arg_position_for_command( $command, $at_under_ref );
if ( $file_arg >= 0 ) {
$filename = scalar @$at_under_ref <= $file_arg ? '<not specified>' : $at_under_ref->[$file_arg];
}
# Ignore stats on STDIN, STDOUT, STDERR
return if defined $filename && $filename =~ m/^\*?(?:main::)?[<*&+>]*STD(?:OUT|IN|ERR)$/;
# The filename passed is actually a handle. This means that, usually,
# we don't need to check if it's a violation since something else should
# have opened it first. open and sysopen, though, require special care.
#
if ( UNIVERSAL::isa( $filename, 'GLOB' ) ) {
return if $command ne 'open' && $command ne 'sysopen';
}
# open >& is for file dups. this isn't a real file access.
return if $command eq 'open' && $at_under_ref->[1] && $at_under_ref->[1] =~ m/&/;
my $path = _abs_path_to_file($filename);
my $context = {
command => $command,
filename => $path,
at_under_ref => $at_under_ref
}; # object
my $pass = _validate_strict_rules($context);
return if $pass;
croak("Unknown strict mode violation for $command") if $file_arg == -1;
confess("Use of $command to access unmocked file or directory '$filename' in strict mode at $stack[1] line $stack[2]");
}
sub _validate_strict_rules {
my ($context) = @_;
# rules dispatch
foreach my $rule (@STRICT_RULES) {
# This is when a rule was added without a filename at all
# intending to match whether there's a filename available or not
# (open() can be used on a scalar, for example)
if ( defined $rule->{'file_rule'} ) {
defined $context->{'filename'} && $context->{'filename'} =~ $rule->{'file_rule'}
or next;
}
$context->{'command'} =~ $rule->{'command_rule'}
or next;
my $answer = ref $rule->{'action'} ? $rule->{'action'}->($context) : $rule->{'action'};
defined $answer
and return $answer;
}
# We say it failed even though it didn't
# It's because we want to test the internal violation rule check
return;
}
my @plugins;
sub import {
my ( $class, @args ) = @_;
my $strict_mode = ( grep { $_ eq 'nostrict' } @args ) ? STRICT_MODE_DISABLED : STRICT_MODE_ENABLED;
if (
defined $STRICT_MODE_STATUS
&& !( $STRICT_MODE_STATUS & STRICT_MODE_UNSET ) # mode is set by user
&& $STRICT_MODE_STATUS != $strict_mode
) {
# could consider using authorized_strict_mode_packages for all packages
die q[Test::MockFile is imported multiple times with different strict modes (not currently supported) ] . $class;
}
$STRICT_MODE_STATUS = $strict_mode;
while ( my $opt = shift @args ) {
next unless defined $opt && $opt eq 'plugin';
my $what = shift @args;
require Test::MockFile::Plugins;
push @plugins, Test::MockFile::Plugins::load_plugin($what);
}
return;
}
=head1 SUBROUTINES/METHODS
=head2 file
Args: ($file, $contents, $stats)
This will make cause $file to be mocked in all file checks, opens, etc.
C<undef> contents means that the file should act like it's not there.
You can only set the stats if you provide content.
If you give file content, the directory inside it will be mocked as
well.
my $f = Test::MockFile->file( '/foo/bar' );
-d '/foo' # not ok
my $f = Test::MockFile->file( '/foo/bar', 'some content' );
-d '/foo' # ok
See L<Mock Stats> for what goes into the stats hashref.
=cut
sub file {
my ( $class, $file, $contents, @stats ) = @_;
( defined $file && length $file ) or confess("No file provided to instantiate $class");
_is_path_mocked($file) and confess("It looks like $file is already being mocked. We don't support double mocking yet.");
my $path = _abs_path_to_file($file);
_validate_path($_) for $file, $path;
if ( @stats > 1 ) {
confess(
sprintf 'Unkownn arguments (%s) passed to file() as stats',
join ', ', @stats
);
}
!defined $contents && @stats
and confess("You cannot set stats for non-existent file '$path'");
my %stats;
if (@stats) {
ref $stats[0] eq 'HASH'
or confess('->file( FILE_NAME, FILE_CONTENT, { STAT_INFORMATION } )');
%stats = %{ $stats[0] };
}
my $perms = S_IFPERMS & ( defined $stats{'mode'} ? int( $stats{'mode'} ) : 0666 );
$stats{'mode'} = ( $perms ^ umask ) | S_IFREG;
# Check if directory for this file is an object we're mocking
# If so, mark it now as having content
# which is this file or - if this file is undef, . and ..
( my $dirname = $path ) =~ s{ / [^/]+ $ }{}xms;
if ( defined $contents && $files_being_mocked{$dirname} ) {
$files_being_mocked{$dirname}{'has_content'} = 1;
}
return $class->new(
{
'path' => $path,
'contents' => $contents,
%stats
}
);
}
=head2 file_from_disk
Args: C<($file_to_mock, $file_on_disk, $stats)>
This will make cause C<$file> to be mocked in all file checks, opens,
etc.
If C<file_on_disk> isn't present, then this will die.
See L<Mock Stats> for what goes into the stats hashref.
=cut
sub file_from_disk {
my ( $class, $file, $file_on_disk, @stats ) = @_;
my $fh;
local $!;
if ( !CORE::open( $fh, '<', $file_on_disk ) ) {
$file_on_disk //= '<no file specified>';
confess("Sorry, I cannot read from $file_on_disk to mock $file. It doesn't appear to be present ($!)");
}
local $/;
my $contents = <$fh>; # Slurp!
close $fh;
return __PACKAGE__->file( $file, $contents, @stats );
}
=head2 symlink
Args: ($readlink, $file )
This will cause $file to be mocked in all file checks, opens, etc.
C<$readlink> indicates what "fake" file it points to. If the file
C<$readlink> points to is not mocked, it will act like a broken link,
regardless of what's on disk.
If C<$readlink> is undef, then the symlink is mocked but not
present.(lstat $file is empty.)
Stats are not able to be specified on instantiation but can in theory
be altered after the object is created. People don't normally mess with
the permissions on a symlink.
=cut
sub symlink {
my ( $class, $readlink, $file ) = @_;
( defined $file && length $file ) or confess("No file provided to instantiate $class");
( !defined $readlink || length $readlink ) or confess("No file provided for $file to point to in $class");
_is_path_mocked($file) and confess("It looks like $file is already being mocked. We don't support double mocking yet.");
# Check if directory for this file is an object we're mocking
# If so, mark it now as having content
# which is this file or - if this file is undef, . and ..
( my $dirname = $file ) =~ s{ / [^/]+ $ }{}xms;
if ( $files_being_mocked{$dirname} ) {
$files_being_mocked{$dirname}{'has_content'} = 1;
}
return $class->new(
{
'path' => $file,
'contents' => undef,
'readlink' => $readlink,
'mode' => 07777 | S_IFLNK,
}
);
}
sub _validate_path {
my $path = shift;
# Reject the following:
# ./ ../ /. /.. /./ /../
if ( $path =~ m{ ( ^ | / ) \.{2} ( / | $ ) }xms ) {
confess('Relative paths are not supported');
}
return;
}
=head2 dir
Args: ($dir)
This will cause $dir to be mocked in all file checks, and C<opendir>
interactions.
The directory name is normalized so any trailing slash is removed.
$dir = Test::MockFile->dir( 'mydir/', ... ); # ok
$dir->path(); # mydir
If there were previously mocked files (within the same scope), the
directory will exist. Otherwise, the directory will be nonexistent.
my $dir = Test::MockFile->dir('/etc');
-d $dir; # not ok since directory wasn't created yet
$dir->contents(); # undef
# Now we can create an empty directory
mkdir '/etc';
$dir_etc->contents(); # . ..
# Alternatively, we can already create files with ->file()
$dir_log = Test::MockFile->dir('/var');
$file_log = Test::MockFile->file( '/var/log/access_log', $some_content );
$dir_log->contents(); # . .. access_log
# If you create a nonexistent file but then give it content, it will create
# the directory for you
my $file = Test::MockFile->file('/foo/bar');
my $dir = Test::MockFile->dir('/foo');
-d '/foo' # false
-e '/foo/bar'; # false
$dir->contents(); # undef
$file->contents('hello');
-e '/foo/bar'; # true
-d '/foo'; # true
$dir->contents(); # . .. bar
NOTE: Because C<.> and C<..> will always be the first things C<readdir>
returns, These files are automatically inserted at the front of the
array. The order of files is sorted.
If you want to affect the stat information of a directory, you need to
use the available core Perl keywords. (We might introduce a special
helper method for it in the future.)
$d = Test::MockFile->dir( '/foo', [], { 'mode' => 0755 } ); # dies
$d = Test::MockFile->dir( '/foo', undef, { 'mode' => 0755 } ); # dies
$d = Test::MockFile->dir('/foo');
mkdir $d, 0755; # ok
=cut
sub dir {
my ( $class, $dirname ) = @_;
( defined $dirname && length $dirname ) or confess("No directory name provided to instantiate $class");
_is_path_mocked($dirname) and confess("It looks like $dirname is already being mocked. We don't support double mocking yet.");
my $path = _abs_path_to_file($dirname);
_validate_path($_) for $dirname, $path;
# Cleanup trailing forward slashes
$path ne '/'
and $path =~ s{[/\\]$}{}xmsg;
@_ > 2
and confess("You cannot set stats for nonexistent dir '$path'");
my $perms = S_IFPERMS & 0777;
my %stats = ( 'mode' => ( $perms ^ umask ) | S_IFDIR );
# TODO: Add stat information
# FIXME: Quick and dirty: provide a helper method?
my $has_content = grep m{^\Q$path/\E}xms, %files_being_mocked;
return $class->new(
{
'path' => $path,
'has_content' => $has_content,
%stats
}
);
}
=head2 new_dir
# short form
$new_dir = Test::MockFile->new_dir( '/path' );
$new_dir = Test::MockFile->new_dir( '/path', { 'mode' => 0755 } );
# longer form 1
$dir = Test::MockFile->dir('/path');
mkdir $dir->path(), 0755;
# longer form 2
$dir = Test::MockFile->dir('/path');
mkdir $dir->path();
chmod $dir->path();
This creates a new directory with an optional mode. This is a
short-hand that might be removed in the future when a stable, new
interface is introduced.
=cut
sub new_dir {
my ( $class, $dirname, $opts ) = @_;
my $mode;
my @args = $opts ? $opts : ();
if ( ref $opts eq 'HASH' && $opts->{'mode'} ) {
$mode = delete $opts->{'mode'};
# This is to make sure the error checking still happens as expected
if ( keys %{$opts} == 0 ) {
@args = ();
}
}
my $dir = $class->dir( $dirname, @args );
if ($mode) {
__mkdir( $dirname, $mode );
}
else {
__mkdir($dirname);
}
return $dir;
}
=head2 Mock Stats
When creating mocked files or directories, we default their stats to:
my $attrs = Test::MockFile->file( $file, $contents, {
'dev' => 0, # stat[0]
'inode' => 0, # stat[1]
'mode' => $mode, # stat[2]
'nlink' => 0, # stat[3]
'uid' => int $>, # stat[4]
'gid' => int $), # stat[5]
'rdev' => 0, # stat[6]
'atime' => $now, # stat[8]
'mtime' => $now, # stat[9]
'ctime' => $now, # stat[10]
'blksize' => 4096, # stat[11]
'fileno' => undef, # fileno()
} );
You'll notice that mode, size, and blocks have been left out of this.
Mode is set to 666 (for files) or 777 (for directories), xored against
the current umask. Size and blocks are calculated based on the size of
'contents' a.k.a. the fake file.
When you want to override one of the defaults, all you need to do is
specify that when you declare the file or directory. The rest will
continue to default.
my $mfile = Test::MockFile->file("/root/abc", "...", {inode => 65, uid => 123, mtime => int((2000-1970) * 365.25 * 24 * 60 * 60 }));
my $mdir = Test::MockFile->dir("/sbin", "...", { mode => 0700 }));
=head2 new
This class method is called by file/symlink/dir. There is no good
reason to call this directly.
=cut
sub new {
my $class = shift @_;
my %opts;
if ( scalar @_ == 1 && ref $_[0] ) {
%opts = %{ $_[0] };
}
elsif ( scalar @_ % 2 ) {
confess( sprintf( "Unknown args (%d) passed to new", scalar @_ ) );
}
else {
%opts = @_;
}
my $path = $opts{'path'} or confess("Mock file created without a path (filename or dirname)!");
if ( $path !~ m{^/} ) {
$path = $opts{'path'} = _abs_path_to_file($path);
}
my $now = time;
my $self = bless {
'dev' => 0, # stat[0]
'inode' => 0, # stat[1]
'mode' => 0, # stat[2]
'nlink' => 0, # stat[3]
'uid' => int $>, # stat[4]
'gid' => int $), # stat[5]
'rdev' => 0, # stat[6]
# 'size' => undef, # stat[7] -- Method call
'atime' => $now, # stat[8]
'mtime' => $now, # stat[9]
'ctime' => $now, # stat[10]
'blksize' => 4096, # stat[11]
# 'blocks' => 0, # stat[12] -- Method call
'fileno' => undef, # fileno()
'tty' => 0, # possibly this is already provided in mode?
'readlink' => '', # what the symlink points to.
'path' => undef,
'contents' => undef,
'has_content' => undef,
}, $class;
foreach my $key ( keys %opts ) {
# Ignore Stuff that's not a valid key for this class.
next unless exists $self->{$key};
# If it's passed in, we override them.
$self->{$key} = $opts{$key};
}
$self->{'fileno'} //= _unused_fileno();
$files_being_mocked{$path} = $self;
Scalar::Util::weaken( $files_being_mocked{$path} );
return $self;
}
#Overload::FileCheck::mock_stat(\&mock_stat);
sub _mock_stat {
my ( $type, $file_or_fh ) = @_;
$type or confess("_mock_stat called without a stat type");
my $follow_link =
$type eq 'stat' ? 1
: $type eq 'lstat' ? 0
: confess("Unexpected stat type '$type'");
# Overload::FileCheck should always send 2 args.
if ( scalar @_ != 2 ) {
_real_file_access_hook( $type, [$file_or_fh] );
return FALLBACK_TO_REAL_OP();
}
# Overload::FileCheck should always send something and be handling undef on its own??
if ( !defined $file_or_fh || !length $file_or_fh ) {
_real_file_access_hook( $type, [$file_or_fh] );
return FALLBACK_TO_REAL_OP();
}
# Find the path, following the symlink if required.
my $file = _find_file_or_fh( $file_or_fh, $follow_link );
return [] if defined $file && defined BROKEN_SYMLINK && $file eq BROKEN_SYMLINK; # Allow an ELOOP to fall through here.
return [] if defined $file && defined CIRCULAR_SYMLINK && $file eq CIRCULAR_SYMLINK; # Allow an ELOOP to fall through here.
if ( !defined $file or !length $file ) {
_real_file_access_hook( $type, [$file_or_fh] );
return FALLBACK_TO_REAL_OP();
}
my $file_data = _get_file_object($file);
if ( !$file_data ) {
_real_file_access_hook( $type, [$file_or_fh] ) unless ref $file_or_fh;
return FALLBACK_TO_REAL_OP();
}
# File is not present so no stats for you!
return [] if !$file_data->is_link && !defined $file_data->contents();
# Make sure the file size is correct in the stats before returning its contents.
return [ $file_data->stat ];
}
sub _is_path_mocked {
my ($file_path) = @_;
my $absolute_path_to_file = _find_file_or_fh($file_path) or return;
return $files_being_mocked{$absolute_path_to_file} ? 1 : 0;
}
sub _get_file_object {
my ($file_path) = @_;
my $file = _find_file_or_fh($file_path) or return;
return $files_being_mocked{$file};
}
# This subroutine finds the absolute path to a file, returning the absolute path of what it ultimately points to.
# If it is a broken link or what was passed in is undef or '', then we return undef.
sub _find_file_or_fh {
my ( $file_or_fh, $follow_link, $depth ) = @_;
# Find the file handle or fall back to just using the abs path of $file_or_fh
my $absolute_path_to_file = _fh_to_file($file_or_fh) // _abs_path_to_file($file_or_fh) // '';
$absolute_path_to_file ne '/'
and $absolute_path_to_file =~ s{[/\\]$}{}xmsg;
# Get the pointer to the object.
my $mock_object = $files_being_mocked{$absolute_path_to_file};
# If we're following a symlink and the path we came to is a dead end (broken symlink), then return BROKEN_SYMLINK up the stack.
return BROKEN_SYMLINK if $depth and !$mock_object;
# If the link we followed isn't a symlink, then return it.
return $absolute_path_to_file unless $mock_object && $mock_object->is_link;
# ##############
# From here on down we're only dealing with symlinks.
# ##############
# If we weren't told to follow the symlink then SUCCESS!
return $absolute_path_to_file unless $follow_link;
# This is still a symlink keep going. Bump our depth counter.
$depth++;
#Protect against circular symlink loops.
if ( $depth > FOLLOW_LINK_MAX_DEPTH ) {
$! = ELOOP;
return CIRCULAR_SYMLINK;
}
return _find_file_or_fh( $mock_object->readlink, 1, $depth );
}
# Tries to find $fh as a open file handle in one of the mocked files.
sub _fh_to_file {
my ($fh) = @_;
return unless defined $fh && length $fh;
# See if $fh is a file handle. It might be a path.
foreach my $path ( sort keys %files_being_mocked ) {
my $mock_fh = $files_being_mocked{$path}->{'fh'};
next unless $mock_fh; # File isn't open.
next unless "$mock_fh" eq "$fh"; # This mock doesn't have this file handle open.
return $path;
}
return;
}
sub _files_in_dir {
my $dirname = shift;
my @files_in_dir = @files_being_mocked{
grep m{^\Q$dirname/\E},
keys %files_being_mocked
};
return @files_in_dir;
}
sub _abs_path_to_file {
my ($path) = shift;
return unless defined $path;
my $match = 1;
while ($match) {
$match = 0;
$match = 1 if $path =~ s{//+}{/}xmsg; # cleanup multiple slashes
$match = 1 if $path =~ s{/\.$}{/};
$match = 1 if $path =~ s{(?:[^/]+)/\.\.(/|$)}{$1};
$match = 1 if $path =~ s{/$}{};
}
return q[/] if $path eq q[/..];
return $path if $path =~ m{^/}xms;
# ~
# ~/...
# ~sawyer
if ( $path =~ m{ ^(~ ([^/]+)? ) }xms ) {
my $req_homedir = $1;
my $username = $2 || getpwuid($<);
my $pw_homedir;
# Reset iterator so we *definitely* start from the first one
# Then reset when done looping over pw entries
endpwent;
while ( my @pwdata = getpwent ) {
if ( $pwdata[0] eq $username ) {
$pw_homedir = $pwdata[7];
endpwent;
last;
}
}
endpwent;
$pw_homedir
or die;
$path =~ s{\Q$req_homedir\E}{$pw_homedir};
return $path;
}
my $cwd = Cwd::getcwd();
return $cwd if $path eq '.';
return Cwd::getcwd() . "/$path";
}
sub DESTROY {
my ($self) = @_;
ref $self or return;
# This is just a safety. It doesn't make much sense if we get here but
# $self doesn't have a path. Either way we can't delete it.
my $path = $self->{'path'};
defined $path or return;
# If the object survives into global destruction, the object which is
# the value of $files_being_mocked{$path} might destroy early.
# As a result, don't worry about the self == check just delete the key.
if ( defined $files_being_mocked{$path} ) {
$self == $files_being_mocked{$path} or confess("Tried to destroy object for $path ($self) but something else is mocking it?");
}
delete $files_being_mocked{$path};
}
=head2 contents
Optional Arg: $contents
Retrieves or updates the current contents of the file.
Only retrieves the content of the directory (as an arrayref). You can
set directory contents with calling the C<file()> method described
above.
Symlinks have no contents.
=cut
sub contents {
my ( $self, $new_contents ) = @_;
$self or confess;
$self->is_link
and confess("checking or setting contents on a symlink is not supported");
# handle directories
if ( $self->is_dir() ) {
$new_contents
and confess('To change the contents of the dir, you must work on its files');
$self->{'has_content'}
or return;
# TODO: Quick and dirty, but works (maybe provide a ->basename()?)
# Retrieve the files in this directory and removes prefix
my $dirname = $self->path();
my @existing_files = sort map {
# strip directory from the path
( my $basename = $_->path() ) =~ s{^\Q$dirname/\E}{}xms;
# Is this content within another directory? strip that out
$basename =~ s{^( [^/]+ ) / .*}{$1}xms;
defined $_->{'contents'} || $_->is_link() || $_->is_dir() ? ($basename) : ();
} _files_in_dir($dirname);
my %uniq;
$uniq{$_}++ for @existing_files;
return [ '.', '..', sort keys %uniq ];
}
# handle files
if ( $self->is_file() ) {
if ( defined $new_contents ) {
ref $new_contents
and confess('File contents must be a simple string');
# XXX Why use $_[1] directly?
$self->{'contents'} = $_[1];
}
return $self->{'contents'};
}
confess('This seems to be neither a file nor a dir - what is it?');
}
=head2 filename
Deprecated. Same as C<path>.
=cut
sub filename {
carp('filename() is deprecated, use path() instead');
goto &path;
}
=head2 path
The path (filename or dirname) of the file or directory this mock
object is controlling.
=cut
sub path {
my ($self) = @_;
$self or confess("path is a method");
return $self->{'path'};
}
=head2 unlink
Makes the virtual file go away. NOTE: This also works for directories.
=cut
sub unlink {
my ($self) = @_;
$self or confess("unlink is a method");
if ( !$self->exists ) {
$! = ENOENT;
return 0;
}
if ( $self->is_dir ) {
if ( $] < 5.019 && ( $^O eq 'darwin' or $^O =~ m/bsd/i ) ) {
$! = EPERM;
}
else {
$! = EISDIR;
}
return 0;
}
if ( $self->is_link ) {
$self->{'readlink'} = undef;
}
else {
$self->{'has_content'} = undef;
$self->{'contents'} = undef;
}
return 1;
}
=head2 touch
Optional Args: ($epoch_time)
This function acts like the UNIX utility touch. It sets atime, mtime,
ctime to $epoch_time.
If no arguments are passed, $epoch_time is set to time(). If the file
does not exist, contents are set to an empty string.
=cut
sub touch {
my ( $self, $now ) = @_;
$self or confess("touch is a method");
$now //= time;
$self->is_file or confess("touch only supports files");
my $pre_size = $self->size();
if ( !defined $pre_size ) {
$self->contents('');
}
# TODO: Should this happen any time contents goes from undef to existing? Should we be setting perms?
# Normally I'd say yes but it might not matter much for a .005 second test.
$self->mtime($now);
$self->ctime($now);
$self->atime($now);
return 1;
}
=head2 stat
Returns the stat of a mocked file (does not follow symlinks.)
=cut
sub stat {
my $self = shift;
return (
$self->{'dev'}, # stat[0]
$self->{'inode'}, # stat[1]
$self->{'mode'}, # stat[2]
$self->{'nlink'}, # stat[3]
$self->{'uid'}, # stat[4]
$self->{'gid'}, # stat[5]
$self->{'rdev'}, # stat[6]
$self->size, # stat[7]
$self->{'atime'}, # stat[8]
$self->{'mtime'}, # stat[9]
$self->{'ctime'}, # stat[10]
$self->{'blksize'}, # stat[11]
$self->blocks, # stat[12]
);
}
sub _unused_fileno {
return 900; # TODO
}
=head2 readlink
Optional Arg: $readlink
Returns the stat of a mocked file (does not follow symlinks.) You can
also use this to change what your symlink is pointing to.
=cut
sub readlink {
my ( $self, $readlink ) = @_;
$self->is_link or confess("readlink is only supported for symlinks");
if ( scalar @_ == 2 ) {
if ( defined $readlink && ref $readlink ) {
confess("readlink can only be set to simple strings.");
}
$self->{'readlink'} = $readlink;
}
return $self->{'readlink'};
}
=head2 is_link
returns true/false, depending on whether this object is a symlink.
=cut
sub is_link {
my ($self) = @_;
return ( defined $self->{'readlink'} && length $self->{'readlink'} && $self->{'mode'} & S_IFLNK ) ? 1 : 0;
}
=head2 is_dir
returns true/false, depending on whether this object is a directory.
=cut
sub is_dir {
my ($self) = @_;
return ( ( $self->{'mode'} & S_IFMT ) == S_IFDIR ) ? 1 : 0;
}
=head2 is_file
returns true/false, depending on whether this object is a regular file.
=cut
sub is_file {
my ($self) = @_;
return ( ( $self->{'mode'} & S_IFMT ) == S_IFREG ) ? 1 : 0;
}
=head2 size
returns the size of the file based on its contents.
=cut
sub size {
my ($self) = @_;
# Lstat for a symlink returns 1 for its size.
return 1 if $self->is_link;
# length undef is 0 not undef in perl 5.10
if ( $] < 5.012 ) {
return undef unless $self->exists;
}
return length $self->contents;
}
=head2 exists
returns true or false based on if the file exists right now.
=cut
sub exists {
my ($self) = @_;
$self->is_link()
and return defined $self->{'readlink'} ? 1 : 0;
$self->is_file()
and return defined $self->{'contents'} ? 1 : 0;
$self->is_dir()
and return $self->{'has_content'} ? 1 : 0;
return 0;
}
=head2 blocks
Calculates the block count of the file based on its size.
=cut
sub blocks {
my ($self) = @_;
my $blocks = int( $self->size / abs( $self->{'blksize'} ) + 1 );
if ( int($blocks) > $blocks ) {
$blocks = int($blocks) + 1;
}
return $blocks;
}
=head2 chmod
Optional Arg: $perms
Allows you to alter the permissions of a file. This only allows you to
change the C<07777> bits of the file permissions. The number passed
should be the octal C<0755> form, not the alphabetic C<"755"> form
=cut
sub chmod {
my ( $self, $mode ) = @_;
$mode = ( int($mode) & S_IFPERMS ) ^ umask;
$self->{'mode'} = ( $self->{'mode'} & S_IFMT ) + $mode;
return $mode;
}
=head2 permissions
Returns the permissions of the file.
=cut
sub permissions {
my ($self) = @_;
return int( $self->{'mode'} ) & S_IFPERMS;
}
=head2 mtime
Optional Arg: $new_epoch_time
Returns and optionally sets the mtime of the file if passed as an
integer.
=cut
sub mtime {
my ( $self, $time ) = @_;
if ( scalar @_ == 2 && defined $time && $time =~ m/^[0-9]+$/ ) {
$self->{'mtime'} = $time;
}
return $self->{'mtime'};
}
=head2 ctime
Optional Arg: $new_epoch_time
Returns and optionally sets the ctime of the file if passed as an
integer.
=cut
sub ctime {
my ( $self, $time ) = @_;
if ( @_ == 2 && defined $time && $time =~ m/^[0-9]+$/ ) {
$self->{'ctime'} = $time;
}
return $self->{'ctime'};
}
=head2 atime
Optional Arg: $new_epoch_time
Returns and optionally sets the atime of the file if passed as an
integer.
=cut
sub atime {
my ( $self, $time ) = @_;
if ( @_ == 2 && defined $time && $time =~ m/^[0-9]+$/ ) {
$self->{'atime'} = $time;
}
return $self->{'atime'};
}
=head2 add_file_access_hook
Args: ( $code_ref )
You can use B<add_file_access_hook> to add a code ref that gets called
every time a real file (not mocked) operation happens. We use this for
strict mode to die if we detect your program is unexpectedly accessing
files. You are welcome to use it for whatever you like.
Whenever the code ref is called, we pass 2 arguments:
C<$code-E<gt>($access_type, $at_under_ref)>. Be aware that altering the
variables in C<$at_under_ref> will affect the variables passed to open
/ sysopen, etc.
One use might be:
Test::MockFile::add_file_access_hook(sub { my $type = shift; print "$type called at: " . Carp::longmess() } );
=cut
# always use the _strict_mode_violation
my @_public_access_hooks;
my @_internal_access_hooks = ( \&_strict_mode_violation );
sub add_file_access_hook {
my ($code_ref) = @_;
( $code_ref && ref $code_ref eq 'CODE' ) or confess("add_file_access_hook needs to be passed a code reference.");
push @_public_access_hooks, $code_ref;
return 1;
}
=head2 clear_file_access_hooks
Calling this subroutine will clear everything that was passed to
B<add_file_access_hook>
=cut
sub clear_file_access_hooks {
@_public_access_hooks = ();
return 1;
}
# This code is called whenever an unmocked file is accessed. Any hooks that are setup get called from here.
sub _real_file_access_hook {
my ( $access_type, $at_under_ref ) = @_;
foreach my $code ( @_internal_access_hooks, @_public_access_hooks ) {
$code->( $access_type, $at_under_ref );
}
return 1;
}
=head2 How this mocking is done:
Test::MockFile uses 2 methods to mock file access:
=head3 -X via L<Overload::FileCheck>
It is currently not possible in pure perl to override
L<stat|http://perldoc.perl.org/functions/stat.html>,
L<lstat|http://perldoc.perl.org/functions/lstat.html> and L<-X
operators|http://perldoc.perl.org/functions/-X.html>. In conjunction
with this module, we've developed L<Overload::FileCheck>.
This enables us to intercept calls to stat, lstat and -X operators
(like -e, -f, -d, -s, etc.) and pass them to our control. If the file
is currently being mocked, we return the stat (or lstat) information on
the file to be used to determine the answer to whatever check was made.
This even works for things like C<-e _>. If we do not control the file
in question, we return C<FALLBACK_TO_REAL_OP()> which then makes a
normal check.
=head3 CORE::GLOBAL:: overrides
Since 5.10, it has been possible to override function calls by defining
them. like:
*CORE::GLOBAL::open = sub(*;$@) {...}
Any code which is loaded B<AFTER> this happens will use the alternate
open. This means you can place your C<use Test::MockFile> statement
after statements you don't want to be mocked and there is no risk that
the code will ever be altered by Test::MockFile.
We oveload the following statements and then return tied handles to
enable the rest of the IO functions to work properly. Only B<open> /
B<sysopen> are needed to address file operations. However B<opendir>
file handles were never setup for tie so we have to override all of
B<opendir>'s related functions.
=over
=item * open
=item * sysopen
=item * opendir
=item * readdir
=item * telldir
=item * seekdir
=item * rewinddir
=item * closedir
=back
=cut
# goto doesn't work below 5.16
#
# goto messed up refcount between 5.22 and 5.26.
# Broken in 7bdb4ff0943cf93297712faf504cdd425426e57f
# Fixed in https://rt.perl.org/Public/Bug/Display.html?id=115814
sub _goto_is_available {
return 0 if $] < 5.015;
return 1 if $] < 5.021;
return 1 if $] > 5.027;
return 0; # 5.
}
############
# KEYWORDS #
############
sub __glob {
my $spec = shift;
# Text::Glob does not understand multiple patterns
my @patterns = split /\s+/xms, $spec;
# Text::Glob does not accept directories in globbing
# But csh (and thus, Perl) does, so we need to add them
my @mocked_files = grep $files_being_mocked{$_}->exists(), keys %files_being_mocked;
@mocked_files = map /^(.+)\/[^\/]+$/xms ? ( $_, $1 ) : ($_), @mocked_files;
# Might as well be consistent
@mocked_files = sort @mocked_files;
my @results = map Text::Glob::match_glob( $_, @mocked_files ), @patterns;
return @results;
}
sub __open (*;$@) {
my $likely_bareword;
my $arg0;
if ( defined $_[0] && !ref $_[0] ) {
# We need to remember the first arg to override the typeglob for barewords
$arg0 = $_[0];
( $likely_bareword, @_ ) = _upgrade_barewords(@_);
}
# We need to take out the mode and file
# but we must keep using $_[0] for the file-handle to update the caller
my ( undef, $mode, $file ) = @_;
my $arg_count = @_;
# Normalize two-arg to three-arg
if ( $arg_count == 2 ) {
# The order here matters, so '>>' won't turn into '>'
if ( $_[1] =~ /^ ( >> | [+]?> | [+]?< ) (.+) $/xms ) {
$mode = $1;
$file = $2;
}
elsif ( $_[1] =~ /^[\.\/\\\w\d\-]+$/xms ) {
$mode = '<';
$file = $_[1];
}
elsif ( $_[1] =~ /^\|/xms ) {
$mode = '|-';
$file = $_[1];
}
elsif ( $_[1] =~ /\|$/xms ) {
$mode = '-|';
$file = $_[1];
}
else {
die "Unsupported two-way open: $_[1]\n";
}
# We have all args
$arg_count++;
}
# We're not supporting 1 arg opens yet
if ( $arg_count != 3 ) {
_real_file_access_hook( "open", \@_ );
goto \&CORE::open if _goto_is_available();
if ( @_ == 1 ) {
return CORE::open( $_[0] );
}
elsif ( @_ == 2 ) {
return CORE::open( $_[0], $_[1] );
}
elsif ( @_ >= 3 ) {
return CORE::open( $_[0], $_[1], @_[ 2 .. $#_ ] );
}
}
# Allows for scalar file handles.
if ( ref $file && ref $file eq 'SCALAR' ) {
goto \&CORE::open if _goto_is_available();
return CORE::open( $_[0], $mode, $file );
}
my $abs_path = _find_file_or_fh( $file, 1 ); # Follow the link.
confess() if !$abs_path && $mode ne '|-' && $mode ne '-|';
confess() if $abs_path eq BROKEN_SYMLINK;
my $mock_file = _get_file_object($abs_path);
# For now we're going to just strip off the binmode and hope for the best.
$mode =~ s/(:.+$)//;
my $encoding_mode = $1;
# TODO: We don't yet support |- or -|
# TODO: We don't yet support modes outside of > < >> +< +> +>>
# We just pass through to open if we're not mocking the file right now.
if ( ( $mode eq '|-' || $mode eq '-|' )
or !grep { $_ eq $mode } qw/> < >> +< +> +>>/
or !defined $mock_file ) {
_real_file_access_hook( "open", \@_ );
goto \&CORE::open if _goto_is_available();
if ( @_ == 1 ) {
return CORE::open( $_[0] );
}
elsif ( @_ == 2 ) {
return CORE::open( $_[0], $_[1] );
}
elsif ( @_ >= 3 ) {
return CORE::open( $_[0], $_[1], @_[ 2 .. $#_ ] );
}
}
# At this point we're mocking the file. Let's do it!
# If contents is undef, we act like the file isn't there.
if ( !defined $mock_file->contents() && grep { $mode eq $_ } qw/< +</ ) {
$! = ENOENT;
return;
}
my $rw = '';
$rw .= 'r' if grep { $_ eq $mode } qw/+< +> +>> </;
$rw .= 'w' if grep { $_ eq $mode } qw/+< +> +>> > >>/;
my $filefh = IO::File->new;
tie *{$filefh}, 'Test::MockFile::FileHandle', $abs_path, $rw;
if ($likely_bareword) {
my $caller = caller();
no strict;
*{"${caller}::$arg0"} = $filefh;
@_ = ( $filefh, $_[1] ? @_[ 1 .. $#_ ] : () );
}
else {
$_[0] = $filefh;
}
# This is how we tell if the file is open by something.
$mock_file->{'fh'} = $_[0];
Scalar::Util::weaken( $mock_file->{'fh'} ) if ref $_[0]; # Will this make it go out of scope?
# Fix tell based on open options.
if ( $mode eq '>>' or $mode eq '+>>' ) {
$mock_file->{'contents'} //= '';
seek $_[0], length( $mock_file->{'contents'} ), 0;
}
elsif ( $mode eq '>' or $mode eq '+>' ) {
$mock_file->{'contents'} = '';
}
return 1;
}
# sysopen FILEHANDLE, FILENAME, MODE, MASK
# sysopen FILEHANDLE, FILENAME, MODE
# We curently support:
# 1 - O_RDONLY - Read only.
# 2 - O_WRONLY - Write only.
# 3 - O_RDWR - Read and write.
# 6 - O_APPEND - Append to the file.
# 7 - O_TRUNC - Truncate the file.
# 5 - O_EXCL - Fail if the file already exists.
# 4 - O_CREAT - Create the file if it doesn't exist.
# 8 - O_NOFOLLOW - Fail if the last path component is a symbolic link.
sub __sysopen (*$$;$) {
my $mock_file = _get_file_object( $_[1] );
if ( !$mock_file ) {
_real_file_access_hook( "sysopen", \@_ );
goto \&CORE::sysopen if _goto_is_available();
return CORE::sysopen( $_[0], $_[1], @_[ 2 .. $#_ ] );
}
my $sysopen_mode = $_[2];
# Not supported by my linux vendor: O_EXLOCK | O_SHLOCK
if ( ( $sysopen_mode & SUPPORTED_SYSOPEN_MODES ) != $sysopen_mode ) {
confess( sprintf( "Sorry, can't open %s with 0x%x permissions. Some of your permissions are not yet supported by %s", $_[1], $sysopen_mode, __PACKAGE__ ) );
}
# O_NOFOLLOW
if ( ( $sysopen_mode & O_NOFOLLOW ) == O_NOFOLLOW && $mock_file->is_link ) {
$! = 40;
return undef;
}
# O_EXCL
if ( $sysopen_mode & O_EXCL && $sysopen_mode & O_CREAT && defined $mock_file->{'contents'} ) {
$! = EEXIST;
return;
}
# O_CREAT
if ( $sysopen_mode & O_CREAT && !defined $mock_file->{'contents'} ) {
$mock_file->{'contents'} = '';
}
# O_TRUNC
if ( $sysopen_mode & O_TRUNC && defined $mock_file->{'contents'} ) {
$mock_file->{'contents'} = '';
}
my $rd_wr_mode = $sysopen_mode & 3;
my $rw =
$rd_wr_mode == O_RDONLY ? 'r'
: $rd_wr_mode == O_WRONLY ? 'w'
: $rd_wr_mode == O_RDWR ? 'rw'
: confess("Unexpected sysopen read/write mode ($rd_wr_mode)"); # O_WRONLY| O_RDWR mode makes no sense and we should die.
# If contents is undef, we act like the file isn't there.
if ( !defined $mock_file->{'contents'} && $rd_wr_mode == O_RDONLY ) {
$! = ENOENT;
return;
}
my $abs_path = $mock_file->{'path'};
$_[0] = IO::File->new;
tie *{ $_[0] }, 'Test::MockFile::FileHandle', $abs_path, $rw;
# This is how we tell if the file is open by something.
$files_being_mocked{$abs_path}->{'fh'} = $_[0];
Scalar::Util::weaken( $files_being_mocked{$abs_path}->{'fh'} ) if ref $_[0]; # Will this make it go out of scope?
# O_TRUNC
if ( $sysopen_mode & O_TRUNC ) {
$mock_file->{'contents'} = '';
}
# O_APPEND
if ( $sysopen_mode & O_APPEND ) {
seek $_[0], length $mock_file->{'contents'}, 0;
}
return 1;
}
sub __opendir (*$) {
# Upgrade but ignore bareword indicator
( undef, @_ ) = _upgrade_barewords(@_) if defined $_[0] && !ref $_[9];
my $mock_dir = _get_file_object( $_[1] );
# 1 arg Opendir doesn't work??
if ( scalar @_ != 2 or !defined $_[1] ) {
_real_file_access_hook( "opendir", \@_ );
goto \&CORE::opendir if _goto_is_available();
return CORE::opendir( $_[0], @_[ 1 .. $#_ ] );
}
if ( !$mock_dir ) {
_real_file_access_hook( "opendir", \@_ );
goto \&CORE::opendir if _goto_is_available();
return CORE::opendir( $_[0], $_[1] );
}
if ( !defined $mock_dir->contents ) {
$! = ENOENT;
return undef;
}
if ( !( $mock_dir->{'mode'} & S_IFDIR ) ) {
$! = ENOTDIR;
return undef;
}
if ( !defined $_[0] ) {
$_[0] = Symbol::gensym;
}
elsif ( ref $_[0] ) {
no strict 'refs';
*{ $_[0] } = Symbol::geniosym;
}
# This is how we tell if the file is open by something.
my $abs_path = $mock_dir->{'path'};
$mock_dir->{'obj'} = Test::MockFile::DirHandle->new( $abs_path, $mock_dir->contents() );
$mock_dir->{'fh'} = "$_[0]";
return 1;
}
sub __readdir (*) {
# Upgrade but ignore bareword indicator
( undef, @_ ) = _upgrade_barewords(@_) if defined $_[0] && !ref $_[9];
my $mocked_dir = _get_file_object( $_[0] );
if ( !$mocked_dir ) {
_real_file_access_hook( 'readdir', \@_ );
goto \&CORE::readdir if _goto_is_available();
return CORE::readdir( $_[0] );
}
my $obj = $mocked_dir->{'obj'};
if ( !$obj ) {
confess("Read on a closed handle");
}
if ( !defined $obj->{'files_in_readdir'} ) {
confess("Did a readdir on an empty dir. This shouldn't have been able to have been opened!");
}
if ( !defined $obj->{'tell'} ) {
confess("readdir called on a closed dirhandle");
}
# At EOF for the dir handle.
return undef if $obj->{'tell'} > $#{ $obj->{'files_in_readdir'} };
if (wantarray) {
my @return;
foreach my $pos ( $obj->{'tell'} .. $#{ $obj->{'files_in_readdir'} } ) {
push @return, $obj->{'files_in_readdir'}->[$pos];
}
$obj->{'tell'} = $#{ $obj->{'files_in_readdir'} } + 1;
return @return;
}
return $obj->{'files_in_readdir'}->[ $obj->{'tell'}++ ];
}
sub __telldir (*) {
# Upgrade but ignore bareword indicator
( undef, @_ ) = _upgrade_barewords(@_) if defined $_[0] && !ref $_[9];
my ($fh) = @_;
my $mocked_dir = _get_file_object($fh);
if ( !$mocked_dir || !$mocked_dir->{'obj'} ) {
_real_file_access_hook( 'telldir', \@_ );
goto \&CORE::telldir if _goto_is_available();
return CORE::telldir($fh);
}
my $obj = $mocked_dir->{'obj'};
if ( !defined $obj->{'files_in_readdir'} ) {
confess("Did a telldir on an empty dir. This shouldn't have been able to have been opened!");
}
if ( !defined $obj->{'tell'} ) {
confess("telldir called on a closed dirhandle");
}
return $obj->{'tell'};
}
sub __rewinddir (*) {
# Upgrade but ignore bareword indicator
( undef, @_ ) = _upgrade_barewords(@_) if defined $_[0] && !ref $_[9];
my ($fh) = @_;
my $mocked_dir = _get_file_object($fh);
if ( !$mocked_dir || !$mocked_dir->{'obj'} ) {
_real_file_access_hook( 'rewinddir', \@_ );
goto \&CORE::rewinddir if _goto_is_available();
return CORE::rewinddir( $_[0] );
}
my $obj = $mocked_dir->{'obj'};
if ( !defined $obj->{'files_in_readdir'} ) {
confess("Did a rewinddir on an empty dir. This shouldn't have been able to have been opened!");
}
if ( !defined $obj->{'tell'} ) {
confess("rewinddir called on a closed dirhandle");
}
$obj->{'tell'} = 0;
return 1;
}
sub __seekdir (*$) {
# Upgrade but ignore bareword indicator
( undef, @_ ) = _upgrade_barewords(@_) if defined $_[0] && !ref $_[9];
my ( $fh, $goto ) = @_;
my $mocked_dir = _get_file_object($fh);
if ( !$mocked_dir || !$mocked_dir->{'obj'} ) {
_real_file_access_hook( 'seekdir', \@_ );
goto \&CORE::seekdir if _goto_is_available();
return CORE::seekdir( $fh, $goto );
}
my $obj = $mocked_dir->{'obj'};
if ( !defined $obj->{'files_in_readdir'} ) {
confess("Did a seekdir on an empty dir. This shouldn't have been able to have been opened!");
}
if ( !defined $obj->{'tell'} ) {
confess("seekdir called on a closed dirhandle");
}
return $obj->{'tell'} = $goto;
}
sub __closedir (*) {
# Upgrade but ignore bareword indicator
( undef, @_ ) = _upgrade_barewords(@_) if defined $_[0] && !ref $_[9];
my ($fh) = @_;
my $mocked_dir = _get_file_object($fh);
if ( !$mocked_dir || !$mocked_dir->{'obj'} ) {
_real_file_access_hook( 'closedir', \@_ );
goto \&CORE::closedir if _goto_is_available();
return CORE::closedir($fh);
}
delete $mocked_dir->{'obj'};
delete $mocked_dir->{'fh'};
return 1;
}
sub __unlink (@) {
my @files_to_unlink = @_;
my $files_deleted = 0;
foreach my $file (@files_to_unlink) {
my $mock = _get_file_object($file);
if ( !$mock ) {
_real_file_access_hook( "unlink", [$file] );
$files_deleted += CORE::unlink($file);
}
else {
$files_deleted += $mock->unlink;
}
}
return $files_deleted;
}
sub __readlink (_) {
my ($file) = @_;
if ( !defined $file ) {
carp('Use of uninitialized value in readlink');
if ( $^O eq 'freebsd' ) {
$! = EINVAL;
}
else {
$! = ENOENT;
}
return;
}
my $mock_object = _get_file_object($file);
if ( !$mock_object ) {
_real_file_access_hook( 'readlink', \@_ );
goto \&CORE::readlink if _goto_is_available();
return CORE::readlink($file);
}
if ( !$mock_object->is_link ) {
$! = EINVAL;
return;
}
return $mock_object->readlink;
}
# $file is always passed because of the prototype.
sub __mkdir (_;$) {
my ( $file, $perms ) = @_;
$perms = ( $perms // 0777 ) & S_IFPERMS;
if ( !defined $file ) {
# mkdir warns if $file is undef
carp("Use of uninitialized value in mkdir");
$! = ENOENT;
return 0;
}
my $mock = _get_file_object($file);
if ( !$mock ) {
_real_file_access_hook( 'mkdir', \@_ );
goto \&CORE::mkdir if _goto_is_available();
return CORE::mkdir(@_);
}
# File or directory, this exists and should fail
if ( $mock->exists ) {
$! = EEXIST;
return 0;
}
# If the mock was a symlink or a file, we've just made it a dir.
$mock->{'mode'} = ( $perms ^ umask ) | S_IFDIR;
delete $mock->{'readlink'};
# This should now start returning content
$mock->{'has_content'} = 1;
return 1;
}
# $file is always passed because of the prototype.
sub __rmdir (_) {
my ($file) = @_;
# technically this is a minor variation from core. We don't seem to be able to
# detect when they didn't pass an arg like core can.
# Core sometimes warns: 'Use of uninitialized value $_ in rmdir'
if ( !defined $file ) {
carp('Use of uninitialized value in rmdir');
return 0;
}
my $mock = _get_file_object($file);
if ( !$mock ) {
_real_file_access_hook( 'rmdir', \@_ );
goto \&CORE::rmdir if _goto_is_available();
return CORE::rmdir($file);
}
# Because we've mocked this to be a file and it doesn't exist we are going to die here.
# The tester needs to fix this presumably.
if ( $mock->exists ) {
if ( $mock->is_file ) {
$! = ENOTDIR;
return 0;
}
if ( $mock->is_link ) {
$! = ENOTDIR;
return 0;
}
}
if ( !$mock->exists ) {
$! = ENOENT;
return 0;
}
if ( _files_in_dir($file) ) {
$! = 39;
return 0;
}
$mock->{'has_content'} = undef;
return 1;
}
sub __chown (@) {
my ( $uid, $gid, @files ) = @_;
$^O eq 'MSWin32'
and return 0; # does nothing on Windows
# Not an error, report we changed zero files
@files
or return 0;
my %mocked_files = map +( $_ => _get_file_object($_) ), @files;
my @unmocked_files = grep !$mocked_files{$_}, @files;
my @mocked_files = map ref $_ ? $_->{'path'} : (), values %mocked_files;
# The idea is that if some are mocked and some are not,
# it's probably a mistake
if ( @mocked_files && @mocked_files != @files ) {
confess(
sprintf 'You called chown() on a mix of mocked (%s) and unmocked files (%s) ' . ' - this is very likely a bug on your side',
( join ', ', @mocked_files ),
( join ', ', @unmocked_files ),
);
}
# -1 means "keep as is"
$uid == -1 and $uid = $>;
$gid == -1 and $gid = $);
my $is_root = $> == 0 || $) =~ /( ^ | \s ) 0 ( \s | $)/xms;
my $is_in_group = grep /(^ | \s ) \Q$gid\E ( \s | $ )/xms, $);
# TODO: Perl has an odd behavior that -1, -1 on a file that isn't owned by you still works
# Not sure how to write a test for it though...
my $set_error;
my $num_changed = 0;
foreach my $file (@files) {
my $mock = $mocked_files{$file};
# If this file is not mocked, none of the files are
# which means we can send them all and let the CORE function handle it
if ( !$mock ) {
_real_file_access_hook( 'chown', \@_ );
goto \&CORE::chown if _goto_is_available();
return CORE::chown(@files);
}
# Even if you're root, nonexistent file is nonexistent
if ( !$mock->exists() ) {
# Only set the error once
$set_error
or $! = ENOENT;
next;
}
# root can do anything, but you can't
# and if we are here, no point in keep trying
if ( !$is_root ) {
if ( $> != $uid || !$is_in_group ) {
$set_error
or $! = EPERM;
last;
}
}
$mock->{'uid'} = $uid;
$mock->{'gid'} = $gid;
$num_changed++;
}
return $num_changed;
}
sub __chmod (@) {
my ( $mode, @files ) = @_;
# Not an error, report we changed zero files
@files
or return 0;
# Grab numbers - nothing means "0" (which is the behavior of CORE::chmod)
# (This will issue a warning, that's also the expected behavior)
{
no warnings;
$mode =~ /^[0-9]+/xms
or warn "Argument \"$mode\" isn't numeric in chmod";
$mode = int $mode;
}
my %mocked_files = map +( $_ => _get_file_object($_) ), @files;
my @unmocked_files = grep !$mocked_files{$_}, @files;
my @mocked_files = map ref $_ ? $_->{'path'} : (), values %mocked_files;
# The idea is that if some are mocked and some are not,
# it's probably a mistake
if ( @mocked_files && @mocked_files != @files ) {
confess(
sprintf 'You called chmod() on a mix of mocked (%s) and unmocked files (%s) ' . ' - this is very likely a bug on your side',
( join ', ', @mocked_files ),
( join ', ', @unmocked_files ),
);
}
my $num_changed = 0;
foreach my $file (@files) {
my $mock = $mocked_files{$file};
if ( !$mock ) {
_real_file_access_hook( 'chmod', \@_ );
goto \&CORE::chmod if _goto_is_available();
return CORE::chmod(@files);
}
# chmod is less specific in such errors
# chmod $mode, '/foo/' still yields ENOENT
if ( !$mock->exists() ) {
$! = ENOENT;
next;
}
$mock->{'mode'} = ( $mock->{'mode'} & S_IFMT ) + $mode;
$num_changed++;
}
return $num_changed;
}
BEGIN {
*CORE::GLOBAL::glob = !$^V || $^V lt 5.18.0
? sub {
pop;
goto &__glob;
}
: sub (_;) { goto &__glob; };
*CORE::GLOBAL::open = \&__open;
*CORE::GLOBAL::sysopen = \&__sysopen;
*CORE::GLOBAL::opendir = \&__opendir;
*CORE::GLOBAL::readdir = \&__readdir;
*CORE::GLOBAL::telldir = \&__telldir;
*CORE::GLOBAL::rewinddir = \&__rewinddir;
*CORE::GLOBAL::seekdir = \&__seekdir;
*CORE::GLOBAL::closedir = \&__closedir;
*CORE::GLOBAL::unlink = \&__unlink;
*CORE::GLOBAL::readlink = \&__readlink;
*CORE::GLOBAL::mkdir = \&__mkdir;
*CORE::GLOBAL::rmdir = \&__rmdir;
*CORE::GLOBAL::chown = \&__chown;
*CORE::GLOBAL::chmod = \&__chmod;
}
=head1 CAEATS AND LIMITATIONS
=head2 DEBUGGER UNDER STRICT MODE
If you want to use the Perl debugger (L<perldebug>) on any code that
uses L<Test::MockFile> in strict mode, you will need to load
L<Term::ReadLine> beforehand, because it loads a file. Under the
debugger, the debugger will load the module after L<Test::MockFile> and
get mad.
# Load it from the command line
perl -MTerm::ReadLine -d code.pl
# Or alternatively, add this to the top of your code:
use Term::ReadLine
=head2 FILENO IS UNSUPPORTED
Filehandles can provide the file descriptor (in number) using the
C<fileno> keyword but this is purposefully unsupported in
L<Test::MockFile>.
The reaosn is that by mocking a file, we're creating an alternative
file system. Returning a C<fileno> (file descriptor number) would
require creating file descriptor numbers that would possibly conflict
with the file desciptors you receive from the real filesystem.
In short, this is a recipe for buggy tests or worse - truly destructive
behavior. If you have a need for a real file, we suggest L<File::Temp>.
=head2 BAREWORD FILEHANDLE FAILURES
There is a particular type of bareword filehandle failures that cannot
be fixed.
These errors occur because there's compile-time code that uses bareword
filehandles in a function call that cannot be expressed by this
module's prototypes for core functions.
The only solution to these is loading `Test::MockFile` after the other
code:
This will fail:
# This will fail because Test2::V0 will eventually load Term::Table::Util
# which calls open() with a bareword filehandle that is misparsed by this module's
# opendir prototypes
use Test::MockFile ();
use Test2::V0;
This will succeed:
# This will succeed because open() will be parsed by perl
# and only then we override those functions
use Test2::V0;
use Test::MockFile ();
(Using strict-mode will not fix it, even though you should use it.)
=head1 AUTHOR
Todd Rinaldo, C<< <toddr at cpan.org> >>
=head1 BUGS
Please report any bugs or feature requests to
L<https://github.com/CpanelInc/Test-MockFile>.
=head1 SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Test::MockFile
You can also look for information at:
=over 4
=item * CPAN Ratings
L<https://cpanratings.perl.org/d/Test-MockFile>
=item * Search CPAN
L<https://metacpan.org/release/Test-MockFile>
=back
=head1 ACKNOWLEDGEMENTS
Thanks to Nicolas R., C<< <atoomic at cpan.org> >> for help with
L<Overload::FileCheck>. This module could not have been completed
without it.
=head1 LICENSE AND COPYRIGHT
Copyright 2018 cPanel L.L.C.
All rights reserved.
L<http://cpanel.net>
This is free software; you can redistribute it and/or modify it under
the same terms as Perl itself. See L<perlartistic>.
=cut
1; # End of Test::MockFile
|