php-src/ext/spl/tests/heap_004.phpt
Gabriel Caruso ded3d984c6 Use EXPECT instead of EXPECTF when possible
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
2018-02-20 21:53:48 +01:00

68 lines
1.3 KiB
PHP

--TEST--
SPL: SplHeap: exceptions
--FILE--
<?php
class myHeap extends SplHeap {
public function compare($a, $b) {
throw new exception("foo");
}
}
$h = new myHeap;
try {
$h->insert(1);
echo "inserted 1\n";
$h->insert(2);
echo "inserted 2\n";
$h->insert(3);
echo "inserted 3\n";
} catch(Exception $e) {
echo "Exception: ".$e->getMessage()."\n";
}
try {
$h->insert(4);
echo "inserted 4\n";
} catch(Exception $e) {
echo "Exception: ".$e->getMessage()."\n";
}
try {
var_dump($h->extract());
} catch(Exception $e) {
echo "Exception: ".$e->getMessage()."\n";
}
try {
var_dump($h->extract());
} catch(Exception $e) {
echo "Exception: ".$e->getMessage()."\n";
}
echo "Recovering..\n";
$h->recoverFromCorruption();
try {
var_dump($h->extract());
} catch(Exception $e) {
echo "Exception: ".$e->getMessage()."\n";
}
try {
var_dump($h->extract());
} catch(Exception $e) {
echo "Exception: ".$e->getMessage()."\n";
}
?>
===DONE===
<?php exit(0); ?>
--EXPECT--
inserted 1
Exception: foo
Exception: Heap is corrupted, heap properties are no longer ensured.
Exception: Heap is corrupted, heap properties are no longer ensured.
Exception: Heap is corrupted, heap properties are no longer ensured.
Recovering..
int(1)
int(2)
===DONE===