userstreams_005.phpt 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. --TEST--
  2. User-space streams: stream_truncate()
  3. --FILE--
  4. <?php
  5. class test_wrapper_base {
  6. public $mode;
  7. function stream_open($path, $mode, $openedpath) {
  8. return true;
  9. }
  10. function stream_eof() {
  11. return false;
  12. }
  13. }
  14. class test_wrapper extends test_wrapper_base {
  15. function stream_truncate($new_size) {
  16. echo "truncation with new_size=$new_size\n";
  17. return true;
  18. }
  19. }
  20. class test_wrapper_bad extends test_wrapper_base {
  21. function stream_truncate($new_size) {
  22. echo "truncation with new_size=$new_size\n";
  23. return "kkk";
  24. }
  25. }
  26. function test($name, $fd, $dest_size) {
  27. echo "------ $name: -------\n";
  28. var_dump(ftruncate($fd, $dest_size));
  29. }
  30. var_dump(stream_wrapper_register('test', 'test_wrapper'));
  31. var_dump(stream_wrapper_register('test2', 'test_wrapper_base'));
  32. var_dump(stream_wrapper_register('test3', 'test_wrapper_bad'));
  33. $fd = fopen("test://foo","r");
  34. $fd2 = fopen("test2://foo","r");
  35. $fd3 = fopen("test3://foo","r");
  36. test("stream_truncate not implemented", $fd2, 0);
  37. test("stream_truncate size 0", $fd, 0);
  38. test("stream_truncate size 10", $fd, 10);
  39. try {
  40. test("stream_truncate negative size", $fd, -1);
  41. } catch (\ValueError $e) {
  42. echo $e->getMessage() . \PHP_EOL;
  43. }
  44. test("stream_truncate bad return", $fd3, 0);
  45. ?>
  46. --EXPECTF--
  47. bool(true)
  48. bool(true)
  49. bool(true)
  50. ------ stream_truncate not implemented: -------
  51. Warning: ftruncate(): Can't truncate this stream! in %s on line %d
  52. bool(false)
  53. ------ stream_truncate size 0: -------
  54. truncation with new_size=0
  55. bool(true)
  56. ------ stream_truncate size 10: -------
  57. truncation with new_size=10
  58. bool(true)
  59. ------ stream_truncate negative size: -------
  60. ftruncate(): Argument #2 ($size) must be greater than or equal to 0
  61. ------ stream_truncate bad return: -------
  62. truncation with new_size=0
  63. Warning: ftruncate(): test_wrapper_bad::stream_truncate did not return a boolean! in %s on line %d
  64. bool(false)