php-src/ext/mysqli/tests/mysqli_stmt_attr_get.phpt
Andrey Hristov caf3e9c3f1 Fixed a bunch of bugs reported in
Bug #44352 mysqli_connect_error() false negative for host errors
From now on the mysqli object doesn't have that magic properties, like
error, which were readable but not visible through isset(), property_exists()
and var_dump(). All other ext/mysqli classes were fixed too.
Now it will be easier to debug mysqli based applications.
2008-03-18 16:57:31 +00:00

67 lines
1.9 KiB
PHP

--TEST--
mysqli_stmt_attr_get()
--SKIPIF--
<?php
require_once('skipif.inc');
require_once('skipifemb.inc');
require_once('skipifconnectfailure.inc');
?>
--FILE--
<?php
include "connect.inc";
$tmp = NULL;
$link = NULL;
if (!is_null($tmp = @mysqli_stmt_attr_get()))
printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
if (!is_null($tmp = @mysqli_stmt_attr_get($link)))
printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
if (!is_null($tmp = @mysqli_stmt_attr_get($link, $link)))
printf("[003] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
require('table.inc');
if (!is_null($tmp = @mysqli_stmt_attr_get($link, $link)))
printf("[004] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
$valid_attr = array("max_length" => MYSQLI_STMT_ATTR_UPDATE_MAX_LENGTH);
if (mysqli_get_client_version() > 50003)
$valid_attr["cursor_type"] = MYSQLI_STMT_ATTR_CURSOR_TYPE;
if ($IS_MYSQLND && mysqli_get_client_version() > 50007)
$valid_attr["prefetch_rows"] = MYSQLI_STMT_ATTR_PREFETCH_ROWS;
do {
$invalid_attr = mt_rand(0, 10000);
} while (in_array($invalid_attr, $valid_attr));
$stmt = mysqli_stmt_init($link);
mysqli_stmt_prepare($stmt, 'SELECT * FROM test');
if (false !== ($tmp = @mysqli_stmt_attr_get($stmt, $invalid_attr)))
printf("[005] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
foreach ($valid_attr as $k => $attr) {
if (false === ($tmp = mysqli_stmt_attr_get($stmt, $attr))) {
printf("[006] Expecting any type, but not boolean/false, got %s/%s for attribute %s/%s\n",
gettype($tmp), $tmp, $k, $attr);
}
}
$stmt->close();
foreach ($valid_attr as $k => $attr) {
if (!is_null($tmp = @mysqli_stmt_attr_get($stmt, $attr))) {
printf("[007] Expecting NULL/NULL, got %s/%s for attribute %s/%s\n",
gettype($tmp), $tmp, $k, $attr);
}
}
mysqli_close($link);
print "done!";
?>
--EXPECTF--
done!