1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/ext/sqlite3/tests/sqlite3_15_open_error.phpt
George Peter Banyard 1f118aa24c Fix SKIPIF section for SQLite3 test
Test is borked if the posix_geteui() function is unavailable.
2020-09-12 22:36:50 +02:00

35 lines
761 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