php-src/Zend/tests/gh9916-007.phpt
Arnaud Le Blanc 1173c2e64a
Prevent dtor of generator in suspended fiber (#10462)
Generators that suspended a fiber should not be dtor because they will be
executed during the fiber dtor.

Fiber dtor throws an exception in the fiber's context in order to unwind and
execute finally blocks, which will also properly dtor the generator.

Fixes GH-9916
2023-01-27 19:32:25 +01:00

58 lines
1.0 KiB
PHP

--TEST--
Bug GH-9916 007 (Entering shutdown sequence with a fiber suspended in a Generator emits an unavoidable fatal error or crashes)
--FILE--
<?php
$it = new class implements Iterator
{
public function current(): mixed
{
return null;
}
public function key(): mixed
{
return 0;
}
public function next(): void
{
}
public function rewind(): void
{
try {
print "Before suspend\n";
Fiber::suspend();
print "Not executed\n";
} finally {
print "Finally (iterator)\n";
}
}
public function valid(): bool
{
return true;
}
};
$gen = (function() use ($it) {
try {
yield from $it;
print "Not executed\n";
} finally {
print "Finally\n";
}
})();
$fiber = new Fiber(function() use ($gen, &$fiber) {
$gen->current();
print "Not executed";
});
$fiber->start();
?>
==DONE==
--EXPECT--
Before suspend
==DONE==
Finally (iterator)
Finally