Skip to content

Commit ebcd023

Browse files
committed
ext/standard: Add Directory test with messed up internal state
1 parent d8e7f36 commit ebcd023

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
--TEST--
2+
Changing Directory::$handle property
3+
--FILE--
4+
<?php
5+
6+
$d = dir(__DIR__);
7+
$ao = new ArrayObject($d);
8+
9+
try {
10+
$ao['handle'] = STDERR;
11+
} catch (\Throwable $e) {
12+
echo $e::class, ': ', $e->getMessage(), PHP_EOL;
13+
}
14+
var_dump($d->handle);
15+
16+
try {
17+
$s = $d->read();
18+
var_dump($s);
19+
} catch (\Throwable $e) {
20+
echo $e::class, ': ', $e->getMessage(), PHP_EOL;
21+
}
22+
23+
try {
24+
unset($ao['handle']);
25+
var_dump($d->handle);
26+
} catch (\Throwable $e) {
27+
echo $e::class, ': ', $e->getMessage(), PHP_EOL;
28+
}
29+
30+
?>
31+
--EXPECT--
32+
resource(3) of type (stream)
33+
TypeError: Directory::read(): Argument #1 must be a valid Directory resource
34+
Error: Typed property Directory::$handle must not be accessed before initialization

0 commit comments

Comments
 (0)