fopencookie.phpt 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. --TEST--
  2. fopencookie detected and working (or cast mechanism works)
  3. --FILE--
  4. <?php
  5. /* This test verifies that the casting mechanism is working correctly.
  6. * On systems with fopencookie, a FILE* is created around the user
  7. * stream and that is passed back to the ZE to include.
  8. * On systems without fopencookie, the stream is fed into a temporary
  9. * file, and that temporary file is passed back to the ZE.
  10. * The important thing here is really fopencookie; the glibc people
  11. * changed the binary interface, so if haven't detected it correctly,
  12. * you can expect this test to segfault.
  13. *
  14. * FIXME: the test really needs something to fseek(3) on the FILE*
  15. * used internally for this test to be really effective.
  16. */
  17. class userstream {
  18. public $position = 0;
  19. public $data = "If you can read this, it worked";
  20. function stream_open($path, $mode, $options, &$opened_path)
  21. {
  22. return true;
  23. }
  24. function stream_read($count)
  25. {
  26. $ret = substr($this->data, $this->position, $count);
  27. $this->position += strlen($ret);
  28. return $ret;
  29. }
  30. function stream_tell()
  31. {
  32. return $this->position;
  33. }
  34. function stream_eof()
  35. {
  36. return $this->position >= strlen($this->data);
  37. }
  38. function stream_seek($offset, $whence)
  39. {
  40. switch($whence) {
  41. case SEEK_SET:
  42. if ($offset < strlen($this->data) && $offset >= 0) {
  43. $this->position = $offset;
  44. return true;
  45. } else {
  46. return false;
  47. }
  48. break;
  49. case SEEK_CUR:
  50. if ($offset >= 0) {
  51. $this->position += $offset;
  52. return true;
  53. } else {
  54. return false;
  55. }
  56. break;
  57. case SEEK_END:
  58. if (strlen($this->data) + $offset >= 0) {
  59. $this->position = strlen($this->data) + $offset;
  60. return true;
  61. } else {
  62. return false;
  63. }
  64. break;
  65. default:
  66. return false;
  67. }
  68. }
  69. function stream_stat() {
  70. return array('size' => strlen($this->data));
  71. }
  72. function stream_set_option($option, $arg1, $arg2) {
  73. return false;
  74. }
  75. }
  76. stream_wrapper_register("cookietest", "userstream");
  77. include("cookietest://foo");
  78. ?>
  79. --EXPECT--
  80. If you can read this, it worked