ftruncate_bug76422.phpt 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. --TEST--
  2. Bug #76422 ftruncate fails on files > 2GB
  3. --SKIPIF--
  4. <?php
  5. if (PHP_INT_SIZE < 8) {
  6. die('skip.. only valid for 64-bit');
  7. }
  8. if (disk_free_space(__DIR__) <= 4.1 * 1024 * 1024 * 1024 ) {
  9. // Add a bit of extra overhead for other processes, temporary files created while running tests, etc.
  10. die('skip.. This test requires over 4GB of free disk space on this disk partition');
  11. }
  12. ?>
  13. --FILE--
  14. <?php
  15. $fn = __DIR__ . DIRECTORY_SEPARATOR . "test76422";
  16. $file_handle = fopen($fn,'cb');
  17. if (false === $file_handle) {
  18. die('Cannot open test file :/');
  19. }
  20. /* Check if ftruncate() with 2GB works. If it doesn't, it's likely that large files are
  21. * generally not supported (EFBIG). */
  22. $truncate_offset = 2 * 1024 * 1024 * 1024;
  23. $ftruncate_result = ftruncate($file_handle, $truncate_offset);
  24. if (false === $ftruncate_result) {
  25. var_dump(true);
  26. fclose($file_handle);
  27. unlink($fn);
  28. return;
  29. }
  30. $truncate_offset = 4 * 1024 * 1024 * 1024 + 1;
  31. $ftruncate_result = ftruncate($file_handle, $truncate_offset);
  32. if (false === $ftruncate_result) {
  33. // NOTE: unlink() is deliberately repeated - If this test runs out of disk space attempting to reserve space for this temporary file,
  34. // then the--CLEAN-- script can't be run (if we don't delete the file),
  35. // because there wouldn't be any free disk space to save a new php file.
  36. fclose($file_handle);
  37. unlink($fn);
  38. die('Truncate has failed :/');
  39. }
  40. fclose($file_handle);
  41. var_dump(filesize($fn) >= $truncate_offset);
  42. unlink($fn);
  43. ?>
  44. --CLEAN--
  45. <?php
  46. $fn = __DIR__ . "/test76422";
  47. unlink($fn);
  48. ?>
  49. --EXPECT--
  50. bool(true)