mirror of
https://github.com/php/php-src.git
synced 2025-01-25 05:04:20 +08:00
be0793d2e7
pecl#12794, pecl#12401 # Running the tests: # (Note: Doesn't work currnetly on HEAD, see: # http://news.php.net/php.qa/64378) # # PDO_MYSQL_TEST_DSN - DSN # For example: mysql:dbname=test;host=localhost;port=3306 # # PDO_MYSQL_TEST_HOST - database host # PDO_MYSQL_TEST_DB - database (schema) name # PDO_MYSQL_TEST_SOCKET - database server socket # PDO_MYSQL_TEST_ENGINE - storage engine to use # PDO_MYSQL_TEST_USER - database user # PDO_MYSQL_TEST_PASS - database user password # PDO_MYSQL_TEST_CHARSET - database charset # # NOTE: if any of PDO_MYSQL_TEST_[HOST|DB|SOCKET|ENGINE|CHARSET] is # part of PDO_MYSQL_TEST_DSN, the values must match. That is, for example, # for PDO_MYSQL_TEST_DSN = mysql:dbname=test you MUST set PDO_MYSQL_TEST_DB=test.
166 lines
5.4 KiB
PHP
166 lines
5.4 KiB
PHP
--TEST--
|
|
PDO::ATTR_ERRMODE
|
|
--SKIPIF--
|
|
<?php
|
|
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'skipif.inc');
|
|
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'mysql_pdo_test.inc');
|
|
MySQLPDOTest::skip();
|
|
$db = MySQLPDOTest::factory();
|
|
?>
|
|
--INI--
|
|
error_reporting=E_ALL
|
|
--FILE--
|
|
<?php
|
|
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'mysql_pdo_test.inc');
|
|
$db = MySQLPDOTest::factory();
|
|
|
|
$valid = array(PDO::ERRMODE_SILENT, PDO::ERRMODE_WARNING, PDO::ERRMODE_EXCEPTION);
|
|
do {
|
|
$invalid = mt_rand(-1000, 1000);
|
|
} while (in_array($invalid, $valid));
|
|
|
|
|
|
$tmp = array();
|
|
if (false != @$db->setAttribute(PDO::ATTR_ERRMODE, $tmp))
|
|
printf("[001] Maybe PDO could indicate that this is not a proper way of setting the ERRMODE...\n");
|
|
|
|
$tmp = new stdClass();
|
|
$ret = @$db->setAttribute(PDO::ATTR_ERRMODE, $tmp);
|
|
if (false != $ret)
|
|
printf("[002] Maybe PDO could indicate that this is not a proper way of setting the ERRMODE...%s\n",
|
|
var_export($ret, true));
|
|
|
|
$ret = @$db->setAttribute(PDO::ATTR_ERRMODE, 'pdo');
|
|
if (false != $ret)
|
|
printf("[003] Maybe PDO could indicate that this is not a proper way of setting the ERRMODE...%s\n",
|
|
var_export($ret, true));
|
|
|
|
if (false != @$db->setAttribute(PDO::ATTR_ERRMODE, $invalid))
|
|
printf("[004] Invalid ERRMODE should be rejected\n");
|
|
|
|
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_SILENT);
|
|
// no message for any PDO call but...
|
|
$db->query('THIS IS NOT VALID SQL');
|
|
// ... still messages for everything else
|
|
$code = $db->errorCode();
|
|
$info = $db->errorInfo();
|
|
|
|
if ($code != '42000')
|
|
printf("[005] Expecting SQL code 42000 got '%s'\n", $code);
|
|
if ($code !== $info[0])
|
|
printf("[006] Code and info should be identical, got errorCode() = %s, errorInfo()[0] = %s\n",
|
|
$code, $info[0]);
|
|
if ('' == $info[1])
|
|
printf("[007] Driver specific error code not set\n");
|
|
if ('' == $info[2])
|
|
printf("[008] Driver specific error message not set\n");
|
|
|
|
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING);
|
|
$db->query('THIS IS NOT VALID SQL');
|
|
|
|
$code = $db->errorCode();
|
|
$info = $db->errorInfo();
|
|
|
|
if ($code != '42000')
|
|
printf("[009] Expecting SQL code 42000 got '%s'\n", $code);
|
|
if ($code !== $info[0])
|
|
printf("[010] Code and info should be identical, got errorCode() = %s, errorInfo()[0] = %s\n",
|
|
$code, $info[0]);
|
|
if ('' == $info[1])
|
|
printf("[011] Driver specific error code not set\n");
|
|
if ('' == $info[2])
|
|
printf("[012] Driver specific error message not set\n");
|
|
|
|
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
|
|
try {
|
|
$line = __LINE__ + 1;
|
|
$db->query('THIS IS NOT VALID SQL');
|
|
} catch (PDOException $e) {
|
|
|
|
$code = $db->errorCode();
|
|
$info = $db->errorInfo();
|
|
|
|
if ($code != '42000')
|
|
printf("[013] Expecting SQL code 42000 got '%s'\n", $code);
|
|
if ($code !== $info[0])
|
|
printf("[014] Code and info should be identical, got errorCode() = %s, errorInfo()[0] = %s\n",
|
|
$code, $info[0]);
|
|
if ('' == $info[1])
|
|
printf("[015] Driver specific error code not set\n");
|
|
if ('' == $info[2])
|
|
printf("[016] Driver specific error message not set\n");
|
|
|
|
if ($e->getCode() !== $code)
|
|
printf("[017] Exception code '%s' differs from errorCode '%s'\n",
|
|
$e->getCode(), $code);
|
|
|
|
$msg = $e->getMessage();
|
|
foreach ($info as $k => $v) {
|
|
if (false === stristr($msg, (string)$v)) {
|
|
printf("[018] Cannot find all parts of the error info ('%s') in the exception message '%s'\n",
|
|
$v, $msg);
|
|
}
|
|
}
|
|
|
|
if ($e->getLine() !== $line)
|
|
printf("[019] Exception has been thrown in line %d, exception object reports line %d\n",
|
|
$line, $e->getLine());
|
|
|
|
if ($e->getFile() !== __FILE__)
|
|
printf("[020] Exception has been thrown in file '%s', exception object reports file '%s'\n",
|
|
__FILE__, $e->getFile());
|
|
|
|
}
|
|
|
|
function my_handler($e) {
|
|
global $db, $line;
|
|
|
|
$code = $db->errorCode();
|
|
$info = $db->errorInfo();
|
|
|
|
if ($code != '42000')
|
|
printf("[021] Expecting SQL code 42000 got '%s'\n", $code);
|
|
if ($code !== $info[0])
|
|
printf("[022] Code and info should be identical, got errorCode() = %s, errorInfo()[0] = %s\n",
|
|
$code, $info[0]);
|
|
if ('' == $info[1])
|
|
printf("[023] Driver specific error code not set\n");
|
|
if ('' == $info[2])
|
|
printf("[024] Driver specific error message not set\n");
|
|
|
|
if ($e->getCode() !== $code)
|
|
printf("[025] Exception code '%s' differs from errorCode '%s'\n",
|
|
$e->getCode(), $code);
|
|
|
|
$msg = $e->getMessage();
|
|
foreach ($info as $k => $v) {
|
|
if (false === stristr($msg, (string)$v)) {
|
|
printf("[026] Cannot find all parts of the error info ('%s') in the exception message '%s'\n",
|
|
$v, $msg);
|
|
}
|
|
}
|
|
|
|
if ($e->getLine() !== $line)
|
|
printf("[027] Exception has been thrown in line %d, exception object reports line %d\n",
|
|
$line, $e->getLine());
|
|
|
|
if ($e->getFile() !== __FILE__)
|
|
printf("[028] Exception has been thrown in file '%s', exception object reports file '%s'\n",
|
|
__FILE__, $e->getFile());
|
|
|
|
if (get_class($e) != 'PDOException')
|
|
printf("[029] Expecting PDO exception got exception of type '%s'\n", get_class($e));
|
|
|
|
print "\nend of execution";
|
|
}
|
|
set_exception_handler('my_handler');
|
|
$line = __LINE__ + 1;
|
|
$db->query('THIS IS NOT VALID SQL');
|
|
|
|
print "done!\n";
|
|
--EXPECTF--
|
|
[003] Maybe PDO could indicate that this is not a proper way of setting the ERRMODE...true
|
|
|
|
Warning: PDO::query(): SQLSTATE[42000]: Syntax error or access violation: %d You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '%s' at line %d in %s on line %d
|
|
|
|
end of execution
|