php-src/ext/sqlite3/tests/sqlite3_15_open_error.phpt

24 lines
569 B
PHP

--TEST--
SQLite3::open error test
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--FILE--
<?php
$unreadable = dirname(__FILE__) . '/unreadable.db';
touch($unreadable);
chmod($unreadable, 0200);
try {
$db = new SQLite3($unreadable);
} catch (Exception $e) {
echo $e . "\n";
}
echo "Done\n";
unlink($unreadable);
?>
--EXPECTF--
exception 'Exception' with message 'Unable to open database: unable to open database file' in %s/sqlite3_15_open_error.php:%d
Stack trace:
#0 %s/sqlite3_15_open_error.php(%d): SQLite3->__construct('%s')
#1 {main}
Done