mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
34 lines
764 B
PHP
34 lines
764 B
PHP
--TEST--
|
|
SQLite3::open error test
|
|
--SKIPIF--
|
|
<?php
|
|
if(substr(PHP_OS, 0, 3) == 'WIN' ) {
|
|
die('skip non windows test');
|
|
}
|
|
require_once(__DIR__ . '/skipif.inc');
|
|
if (!function_exists('posix_geteui')) {
|
|
die('SKIP posix_geteuid() not defined so cannot check if run as root');
|
|
}
|
|
if (posix_geteuid() == 0) {
|
|
die('SKIP Cannot run test as root.');
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$unreadable = __DIR__ . '/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: Unable to open database: %s in %ssqlite3_15_open_error.php:%d
|
|
Stack trace:
|
|
#0 %ssqlite3_15_open_error.php(%d): SQLite3->__construct('%s')
|
|
#1 {main}
|
|
Done
|