userstreams_002.phpt 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. --TEST--
  2. User-space streams: stream_cast()
  3. --FILE--
  4. <?php
  5. class test_wrapper_base {
  6. public $return_value;
  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_cast($castas) {
  16. return $this->return_value;
  17. }
  18. }
  19. function test($name, $fd, $return_value) {
  20. echo "\n------ $name: -------\n";
  21. $data = stream_get_meta_data($fd);
  22. $data['wrapper_data']->return_value = $return_value;
  23. $r = array($fd);
  24. $w = $e = null;
  25. try {
  26. var_dump(stream_select($r, $w, $e, 0) !== false);
  27. } catch (TypeError|ValueError $e) {
  28. echo $e->getMessage(), "\n";
  29. }
  30. }
  31. var_dump(stream_wrapper_register('test', 'test_wrapper'));
  32. var_dump(stream_wrapper_register('test2', 'test_wrapper_base'));
  33. $fd = fopen("test://foo","r");
  34. $fd2 = fopen("test2://foo","r");
  35. test("valid stream", $fd, STDIN);
  36. test("stream_cast not implemented", $fd2, null);
  37. test("return value is false", $fd, false);
  38. test("return value not a stream resource", $fd, "foo");
  39. test("return value is stream itself", $fd, $fd);
  40. test("return value cannot be casted", $fd, $fd2);
  41. ?>
  42. --EXPECTF--
  43. bool(true)
  44. bool(true)
  45. ------ valid stream: -------
  46. bool(true)
  47. ------ stream_cast not implemented: -------
  48. Warning: stream_select(): test_wrapper_base::stream_cast is not implemented! in %s
  49. Warning: stream_select(): Cannot represent a stream of type user-space as a select()able descriptor in %s
  50. No stream arrays were passed
  51. ------ return value is false: -------
  52. Warning: stream_select(): Cannot represent a stream of type user-space as a select()able descriptor in %s
  53. No stream arrays were passed
  54. ------ return value not a stream resource: -------
  55. Warning: stream_select(): test_wrapper::stream_cast must return a stream resource in %s
  56. Warning: stream_select(): Cannot represent a stream of type user-space as a select()able descriptor in %s
  57. No stream arrays were passed
  58. ------ return value is stream itself: -------
  59. Warning: stream_select(): test_wrapper::stream_cast must not return itself in %s
  60. Warning: stream_select(): Cannot represent a stream of type user-space as a select()able descriptor in %s
  61. No stream arrays were passed
  62. ------ return value cannot be casted: -------
  63. Warning: stream_select(): test_wrapper_base::stream_cast is not implemented! in %s
  64. Warning: stream_select(): Cannot represent a stream of type user-space as a select()able descriptor in %s
  65. Warning: stream_select(): Cannot represent a stream of type user-space as a select()able descriptor in %s
  66. No stream arrays were passed