fstat_variation8.phpt 759 B

12345678910111213141516171819202122232425262728293031
  1. --TEST--
  2. Test function fstat() by calling it with its expected arguments
  3. --FILE--
  4. <?php
  5. $stat_result = stat(__FILE__);
  6. clearstatcache();
  7. $fp = fopen (__FILE__, 'r');
  8. $fstat_result = fstat($fp);
  9. fclose($fp);
  10. $isWin = (substr(PHP_OS, 0, 3) == 'WIN');
  11. $failed = false;
  12. foreach($stat_result as $key =>$value) {
  13. if ($isWin && ($key === 0 || $key === 6 || $key === 'dev' || $key === 'rdev')) {
  14. // windows, dev and rdev will not match this is expected
  15. }
  16. else {
  17. if ($fstat_result[$key] != $value) {
  18. echo "FAIL: stat differs at '$key'. $fstat_result[$key] -- $value\n";
  19. $failed = true;
  20. }
  21. }
  22. }
  23. if ($failed !== true) {
  24. echo "PASSED: all elements are the same\n";
  25. }
  26. ?>
  27. --EXPECT--
  28. PASSED: all elements are the same