From f7c54d073761a0a35445faf458922dd8f17f5266 Mon Sep 17 00:00:00 2001 From: Ulf Wendel Date: Mon, 20 Sep 2010 18:26:11 +0000 Subject: [PATCH] Align test to the style used in the other tests --- ext/mysqli/tests/bug52891.phpt | 118 +++++++++++++++++++++------------ 1 file changed, 74 insertions(+), 44 deletions(-) diff --git a/ext/mysqli/tests/bug52891.phpt b/ext/mysqli/tests/bug52891.phpt index 1d832bc636..49abc662e5 100644 --- a/ext/mysqli/tests/bug52891.phpt +++ b/ext/mysqli/tests/bug52891.phpt @@ -8,51 +8,78 @@ require_once('skipifconnectfailure.inc'); --FILE-- query("DROP TABLE IF EXISTS tuint") || + !$link->query("DROP TABLE IF EXISTS tsint")) { + printf("[002] [%d] %s\n", $link->errno, $link->error); } - var_dump($link->query("DROP TABLE IF EXISTS tuint")); - var_dump($link->query("DROP TABLE IF EXISTS tsint")); - var_dump($link->query("CREATE TABLE tuint(a bigint unsigned) ENGINE=".$engine)); - var_dump($link->query("CREATE TABLE tsint(a bigint) ENGINE=".$engine)); - - $stmt = $link->prepare("INSERT INTO tuint VALUES(?)"); - $stmt2 = $link->prepare("INSERT INTO tsint VALUES(?)"); + + if (!$link->query("CREATE TABLE tuint(a BIGINT UNSIGNED) ENGINE=" . $engine) || + !$link->query("CREATE TABLE tsint(a BIGINT) ENGINE=" . $engine)) { + printf("[003] [%d] %s\n", $link->errno, $link->error); + } + + + if (!$stmt1 = $link->prepare("INSERT INTO tuint VALUES(?)")) + printf("[004] [%d] %s\n", $link->errno, $link->error); + + if (!$stmt2 = $link->prepare("INSERT INTO tsint VALUES(?)")) + printf("[005] [%d] %s\n", $link->errno, $link->error); + $param = 42; - $stmt->bind_param("i", $param); - $stmt2->bind_param("i", $param); + + if (!$stmt1->bind_param("i", $param)) + printf("[006] [%d] %s\n", $stmt1->errno, $stmt1->error); + + if (!$stmt2->bind_param("i", $param)) + printf("[007] [%d] %s\n", $stmt2->errno, $stmt2->error); /* first insert normal value to force initial send of types */ - var_dump($stmt->execute()); - var_dump($stmt2->execute()); + if (!$stmt1->execute()) + printf("[008] [%d] %s\n", $stmt1->errno, $stmt1->error); + + if (!$stmt2->execute()) + printf("[009] [%d] %s\n", $stmt2->errno, $stmt2->error); /* now try values that don't fit in long, on 32bit, new types should be sent or 0 will be inserted */ $param = -4294967297; - var_dump($stmt2->execute()); + if (!$stmt2->execute()) + printf("[010] [%d] %s\n", $stmt2->errno, $stmt2->error); /* again normal value */ $param = 43; - var_dump($stmt->execute()); - var_dump($stmt2->execute()); + + if (!$stmt1->execute()) + printf("[011] [%d] %s\n", $stmt1->errno, $stmt1->error); + + if (!$stmt2->execute()) + printf("[012] [%d] %s\n", $stmt2->errno, $stmt2->error); /* again conversion */ $param = -4294967295; - var_dump($stmt2->execute()); + if (!$stmt2->execute()) + printf("[013] [%d] %s\n", $stmt2->errno, $stmt2->error); $param = 4294967295; - var_dump($stmt->execute()); - var_dump($stmt2->execute()); + if (!$stmt1->execute()) + printf("[014] [%d] %s\n", $stmt1->errno, $stmt1->error); + + if (!$stmt2->execute()) + printf("[015] [%d] %s\n", $stmt2->errno, $stmt2->error); $param = 4294967297; - var_dump($stmt->execute()); - var_dump($stmt2->execute()); + if (!$stmt1->execute()) + printf("[016] [%d] %s\n", $stmt1->errno, $stmt1->error); - $result = $link->query("SELECT * FROM tsint ORDER BY a"); - $result2 = $link->query("SELECT * FROM tuint ORDER BY a"); + if (!$stmt2->execute()) + printf("[017] [%d] %s\n", $stmt2->errno, $stmt2->error); - var_dump($link->query("DROP TABLE tsint")); - var_dump($link->query("DROP TABLE tuint")); + $result = $link->query("SELECT * FROM tsint ORDER BY a ASC"); + $result2 = $link->query("SELECT * FROM tuint ORDER BY a ASC"); echo "tsint:\n"; while ($row = $result->fetch_assoc()) { @@ -62,26 +89,29 @@ require_once('skipifconnectfailure.inc'); while ($row = $result2->fetch_assoc()) { var_dump($row); } - + echo "done"; ?> +--CLEAN-- + --EXPECTF-- -bool(true) -bool(true) -bool(true) -bool(true) -bool(true) -bool(true) -bool(true) -bool(true) -bool(true) -bool(true) -bool(true) -bool(true) -bool(true) -bool(true) -bool(true) -bool(true) tsint: array(1) { ["a"]=> @@ -124,4 +154,4 @@ array(1) { ["a"]=> string(10) "4294967297" } -done +done \ No newline at end of file -- 2.40.0