userwrapper.phpt 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. --TEST--
  2. Userstream unlink, rename, mkdir, rmdir, and url_stat.
  3. --FILE--
  4. <?php
  5. class test {
  6. function unlink($file) {
  7. print "Unlinking file: $file\n";
  8. }
  9. function rename($from, $to) {
  10. print "Renaming $from to $to\n";
  11. }
  12. function mkdir($directory, $mode, $options) {
  13. printf("Making directory: %s as %o%s\n", $directory, $mode, $options & STREAM_MKDIR_RECURSIVE ? " recursively" : "");
  14. }
  15. function rmdir($directory, $options) {
  16. print "Removing directory: $directory\n";
  17. }
  18. function url_stat($path, $options) {
  19. /* By printing out a notice that we are actively stating the file
  20. then subsequently performing multiple stat operations on it
  21. we effectively test the stat cache mechanism */
  22. print "Stating file: $path\n";
  23. return array('dev'=>1, 'ino'=>2, 'mode'=>0644, 'nlink'=>3,
  24. 'uid'=>100, 'gid'=>1000, 'rdev'=>-1, 'size'=>31337,
  25. 'atime'=>1234567890, 'mtime'=>1231231231, 'ctime'=>1234564564,
  26. 'blksize'=>-1, 'blocks'=>-1);
  27. }
  28. }
  29. stream_wrapper_register('test', 'test');
  30. unlink('test://example.com/path/to/file');
  31. rename('test://example.com/path/to/from', 'test://example.com/path/to/to');
  32. /* We *want* this to fail and thus not output the watch statement */
  33. @rename('test://example.com/path/to/from', 'http://example.com/path/to/to');
  34. mkdir('test://example.com/path/to/directory', 0755);
  35. rmdir('test://example.com/path/to/directory');
  36. print_r(stat('test://example.com/path/to/file'));
  37. echo "Filesize = " . filesize('test://example.com/path/to/file') . "\n";
  38. echo "filemtime = " . filemtime('test://example.com/path/to/file') . "\n";
  39. ?>
  40. --EXPECT--
  41. Unlinking file: test://example.com/path/to/file
  42. Renaming test://example.com/path/to/from to test://example.com/path/to/to
  43. Making directory: test://example.com/path/to/directory as 755
  44. Removing directory: test://example.com/path/to/directory
  45. Stating file: test://example.com/path/to/file
  46. Array
  47. (
  48. [0] => 1
  49. [1] => 2
  50. [2] => 420
  51. [3] => 3
  52. [4] => 100
  53. [5] => 1000
  54. [6] => -1
  55. [7] => 31337
  56. [8] => 1234567890
  57. [9] => 1231231231
  58. [10] => 1234564564
  59. [11] => -1
  60. [12] => -1
  61. [dev] => 1
  62. [ino] => 2
  63. [mode] => 420
  64. [nlink] => 3
  65. [uid] => 100
  66. [gid] => 1000
  67. [rdev] => -1
  68. [size] => 31337
  69. [atime] => 1234567890
  70. [mtime] => 1231231231
  71. [ctime] => 1234564564
  72. [blksize] => -1
  73. [blocks] => -1
  74. )
  75. Filesize = 31337
  76. filemtime = 1231231231