userstreams_004.phpt 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. --TEST--
  2. User-space streams: stream_lock()
  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_lock($mode) {
  16. $this->mode = $mode;
  17. }
  18. }
  19. function test($name, $fd, $mode) {
  20. echo "------ $name: -------\n";
  21. flock($fd, $mode);
  22. $data = stream_get_meta_data($fd);
  23. var_dump($data['wrapper_data']->mode === $mode);
  24. }
  25. var_dump(stream_wrapper_register('test', 'test_wrapper'));
  26. var_dump(stream_wrapper_register('test2', 'test_wrapper_base'));
  27. $fd = fopen("test://foo","r");
  28. $fd2 = fopen("test2://foo","r");
  29. test("stream_lock not implemented", $fd2, LOCK_EX);
  30. foreach(array("LOCK_SH","LOCK_EX","LOCK_UN") as $mode) {
  31. test("fclock($mode)", $fd, constant($mode));
  32. test("fclock($mode|LOCK_NB)", $fd, constant($mode)|LOCK_NB);
  33. }
  34. ?>
  35. --EXPECTF--
  36. bool(true)
  37. bool(true)
  38. ------ stream_lock not implemented: -------
  39. Warning: flock(): test_wrapper_base::stream_lock is not implemented! in %s
  40. bool(false)
  41. ------ fclock(LOCK_SH): -------
  42. bool(true)
  43. ------ fclock(LOCK_SH|LOCK_NB): -------
  44. bool(true)
  45. ------ fclock(LOCK_EX): -------
  46. bool(true)
  47. ------ fclock(LOCK_EX|LOCK_NB): -------
  48. bool(true)
  49. ------ fclock(LOCK_UN): -------
  50. bool(true)
  51. ------ fclock(LOCK_UN|LOCK_NB): -------
  52. bool(true)