php-src/ext/pdo_mysql/tests/pdo_mysql_attr_errmode.phpt
Peter Kokot d679f02295 Sync leading and final newlines in *.phpt sections
This patch adds missing newlines, trims multiple redundant final
newlines into a single one, and trims redundant leading newlines in all
*.phpt sections.

According to POSIX, a line is a sequence of zero or more non-' <newline>'
characters plus a terminating '<newline>' character. [1] Files should
normally have at least one final newline character.

C89 [2] and later standards [3] mention a final newline:
"A source file that is not empty shall end in a new-line character,
which shall not be immediately preceded by a backslash character."

Although it is not mandatory for all files to have a final newline
fixed, a more consistent and homogeneous approach brings less of commit
differences issues and a better development experience in certain text
editors and IDEs.

[1] http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_206
[2] https://port70.net/~nsz/c/c89/c89-draft.html#2.1.1.2
[3] https://port70.net/~nsz/c/c99/n1256.html#5.1.1.2
2018-10-15 04:33:09 +02:00

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 %s server version for the right syntax to use near '%s' at line %d in %s on line %d
end of execution