uw Wed Jul 11 15:13:10 2007 UTC Modified files: /php-src/ext/mysql/tests mysql_info.phpt Log: Whitespace only http://cvs.php.net/viewvc.cgi/php-src/ext/mysql/tests/mysql_info.phpt?r1=1.1&r2=1.2&diff_format=u Index: php-src/ext/mysql/tests/mysql_info.phpt diff -u php-src/ext/mysql/tests/mysql_info.phpt:1.1 php-src/ext/mysql/tests/mysql_info.phpt:1.2 --- php-src/ext/mysql/tests/mysql_info.phpt:1.1 Sun Nov 19 12:14:44 2006 +++ php-src/ext/mysql/tests/mysql_info.phpt Wed Jul 11 15:13:10 2007 @@ -2,66 +2,65 @@ mysql_info() --SKIPIF-- <?php require_once('skipif.inc'); ?> -<?php require_once('skipifemb.inc'); ?> --FILE-- <?php - include "connect.inc"; - - if (false !== ($tmp = @mysql_info())) - printf("[001] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp); - - if (NULL !== ($tmp = @mysql_info(NULL))) - printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp); - - require "table.inc"; - if (!$res = mysql_query('INSERT INTO test(id, label) VALUES (100, "a")', $link)) - printf("[003] [%d] %s\n", mysql_errno($link), mysql_error($link)); - - if (false !== ($tmp = mysql_info($link))) - printf("[004] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp); - - if (!$res = mysql_query('INSERT INTO test(id, label) VALUES (101, "a"), (102, "b")', $link)) - printf("[005] [%d] %s\n", mysql_errno($link), mysql_error($link)); - - if (!is_string($tmp = mysql_info($link)) || ('' == $tmp)) - printf("[006] Expecting string/any_non_empty, got %s/%s\n", gettype($tmp), $tmp); - - if (!$res = mysql_query('INSERT INTO test(id, label) SELECT id + 200, label FROM test', $link)) - printf("[007] [%d] %s\n", mysql_errno($link), mysql_error($link)); - - if (!is_string($tmp = mysql_info($link)) || ('' == $tmp)) - printf("[008] Expecting string/any_non_empty, got %s/%s\n", gettype($tmp), $tmp); - - if (!$res = mysql_query('ALTER TABLE test MODIFY label CHAR(2)', $link)) - printf("[009] [%d] %s\n", mysql_errno($link), mysql_error($link)); - - if (!is_string($tmp = mysql_info($link)) || ('' == $tmp)) - printf("[010] Expecting string/any_non_empty, got %s/%s\n", gettype($tmp), $tmp); - - if (!$res = mysql_query('UPDATE test SET label = "b" WHERE id >= 100', $link)) - printf("[011] [%d] %s\n", mysql_errno($link), mysql_error($link)); - - if (!is_string($tmp = mysql_info($link)) || ('' == $tmp)) - printf("[012] Expecting string/any_non_empty, got %s/%s\n", gettype($tmp), $tmp); - - if (ini_get('unicode.semantics') && !is_unicode($tmp)) { - printf("[013] Expecting Unicode!\n"); - var_inspect($info); - } - - if (!is_string($def_tmp = mysql_info()) || ('' == $def_tmp)) - printf("[014] Expecting string/any_non_empty, got %s/%s\n", gettype($def_tmp), $def_tmp); - - if ($def_tmp !== $tmp) { - printf("[015] Results differ for default link and specified link, [%d] %s\n", - mysql_errno(), mysql_error()); - var_inspect($tmp); - var_inspect($def_tmp); - } - - // NOTE: no LOAD DATA INFILE test +include "connect.inc"; - print "done!"; +if (false !== ($tmp = @mysql_info())) + printf("[001] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp); + +if (NULL !== ($tmp = @mysql_info(NULL))) + printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp); + +require "table.inc"; +if (!$res = mysql_query('INSERT INTO test(id, label) VALUES (100, "a")', $link)) + printf("[003] [%d] %s\n", mysql_errno($link), mysql_error($link)); + +if (false !== ($tmp = mysql_info($link))) + printf("[004] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp); + +if (!$res = mysql_query('INSERT INTO test(id, label) VALUES (101, "a"), (102, "b")', $link)) + printf("[005] [%d] %s\n", mysql_errno($link), mysql_error($link)); + +if (!is_string($tmp = mysql_info($link)) || ('' == $tmp)) + printf("[006] Expecting string/any_non_empty, got %s/%s\n", gettype($tmp), $tmp); + +if (!$res = mysql_query('INSERT INTO test(id, label) SELECT id + 200, label FROM test', $link)) + printf("[007] [%d] %s\n", mysql_errno($link), mysql_error($link)); + +if (!is_string($tmp = mysql_info($link)) || ('' == $tmp)) + printf("[008] Expecting string/any_non_empty, got %s/%s\n", gettype($tmp), $tmp); + +if (!$res = mysql_query('ALTER TABLE test MODIFY label CHAR(2)', $link)) + printf("[009] [%d] %s\n", mysql_errno($link), mysql_error($link)); + +if (!is_string($tmp = mysql_info($link)) || ('' == $tmp)) + printf("[010] Expecting string/any_non_empty, got %s/%s\n", gettype($tmp), $tmp); + +if (!$res = mysql_query('UPDATE test SET label = "b" WHERE id >= 100', $link)) + printf("[011] [%d] %s\n", mysql_errno($link), mysql_error($link)); + +if (!is_string($tmp = mysql_info($link)) || ('' == $tmp)) + printf("[012] Expecting string/any_non_empty, got %s/%s\n", gettype($tmp), $tmp); + +if (ini_get('unicode.semantics') && !is_unicode($tmp)) { + printf("[013] Expecting Unicode!\n"); + var_inspect($info); +} + +if (!is_string($def_tmp = mysql_info()) || ('' == $def_tmp)) + printf("[014] Expecting string/any_non_empty, got %s/%s\n", gettype($def_tmp), $def_tmp); + +if ($def_tmp !== $tmp) { + printf("[015] Results differ for default link and specified link, [%d] %s\n", + mysql_errno(), mysql_error()); + var_inspect($tmp); + var_inspect($def_tmp); +} + +// NOTE: no LOAD DATA INFILE test + +print "done!"; ?> --EXPECTF-- done! \ No newline at end of file
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php