????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.55 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/pdo/tests/ |
Upload File : |
<?php
# PDO test framework utilities
if (getenv('PDOTEST_DSN') === false) {
$common = '';
$append = false;
foreach(file(dirname($_SERVER['PHP_SELF']).'/common.phpt') as $line) {
if ($append) {
$common .= $line;
} elseif (trim($line) == '--REDIRECTTEST--') {
$append = true;
}
}
$conf = eval($common);
foreach($conf['ENV'] as $n=>$v) putenv("$n=$v");
}
class PDOTest {
// create an instance of the PDO driver, based on
// the current environment
static function factory($classname = 'PDO', $drop_test_tables = true) {
$dsn = getenv('PDOTEST_DSN');
$user = getenv('PDOTEST_USER');
$pass = getenv('PDOTEST_PASS');
$attr = getenv('PDOTEST_ATTR');
if (is_string($attr) && strlen($attr)) {
$attr = unserialize($attr);
} else {
$attr = null;
}
if ($user === false) $user = NULL;
if ($pass === false) $pass = NULL;
$db = new $classname($dsn, $user, $pass, $attr);
if (!$db) {
die("Could not create PDO object (DSN=$dsn, user=$user)\n");
}
// clean up any crufty test tables we might have left behind
// on a previous run
static $test_tables = array(
'test',
'test2',
'classtypes'
);
if ($drop_test_tables) {
foreach ($test_tables as $table) {
$db->exec("DROP TABLE $table");
}
}
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING);
$db->setAttribute(PDO::ATTR_CASE, PDO::CASE_LOWER);
$db->setAttribute(PDO::ATTR_STRINGIFY_FETCHES, true);
return $db;
}
static function skip() {
try {
$db = PDOTest::factory();
} catch (PDOException $e) {
die("skip " . $e->getMessage());
}
}
static function test_factory($file) {
$config = self::get_config($file);
foreach ($config['ENV'] as $k => $v) {
putenv("$k=$v");
}
return self::factory();
}
static function get_config($file) {
$data = file_get_contents($file);
$data = preg_replace('/^.*--REDIRECTTEST--/s', '', $data);
$config = eval($data);
return $config;
}
}
?>