From ed84676c15503273c4405e5bae39a5343951a1cb Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Thu, 14 Nov 2002 14:25:36 +0000 Subject: [PATCH] Add note about shortcomings of this test. --- ext/standard/tests/file/fopencookie.phpt | 36 ++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/ext/standard/tests/file/fopencookie.phpt b/ext/standard/tests/file/fopencookie.phpt index 7fc9dd79e9..4043f85f89 100644 --- a/ext/standard/tests/file/fopencookie.phpt +++ b/ext/standard/tests/file/fopencookie.phpt @@ -12,6 +12,9 @@ fopencookie detected and working (or cast mechanism works) * The important thing here is really fopencookie; the glibc people * changed the binary interface, so if haven't detected it correctly, * you can expect this test to segfault. + * + * FIXME: the test really needs something to fseek(3) on the FILE* + * used internally for this test to be really effective. */ class userstream { @@ -39,6 +42,39 @@ class userstream { { return $this->position >= strlen($this->data); } + + function stream_seek($offset, $whence) + { + switch($whence) { + case SEEK_SET: + if ($offset < strlen($this->data) && $offset >= 0) { + $this->position = $offset; + return true; + } else { + return false; + } + break; + case SEEK_CUR: + if ($offset >= 0) { + $this->position += $offset; + return true; + } else { + return false; + } + break; + case SEEK_END: + if (strlen($this->data) + $offset >= 0) { + $this->position = strlen($this->data) + $offset; + return true; + } else { + return false; + } + break; + default: + return false; + } + } + } stream_register_wrapper("cookietest", "userstream"); -- 2.50.1