PageRenderTime 41ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/hphp/test/zend/bad/ext/mysql/tests/mysql_info.php

http://github.com/facebook/hiphop-php
PHP | 63 lines | 45 code | 17 blank | 1 comment | 28 complexity | 76c5058f20758a302f50297e4be48118 MD5 | raw file
Possible License(s): LGPL-2.1, BSD-2-Clause, BSD-3-Clause, MPL-2.0-no-copyleft-exception, MIT, LGPL-2.0, Apache-2.0
  1. <?php
  2. include "connect.inc";
  3. if (false !== ($tmp = @mysql_info()))
  4. printf("[001] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  5. if (NULL !== ($tmp = @mysql_info(NULL)))
  6. printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  7. require "table.inc";
  8. if (!$res = mysql_query("INSERT INTO test(id, label) VALUES (100, 'a')", $link))
  9. printf("[003] [%d] %s\n", mysql_errno($link), mysql_error($link));
  10. if (false !== ($tmp = mysql_info($link)))
  11. printf("[004] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  12. if (!$res = mysql_query("INSERT INTO test(id, label) VALUES (101, 'a'), (102, 'b')", $link))
  13. printf("[005] [%d] %s\n", mysql_errno($link), mysql_error($link));
  14. if (!is_string($tmp = mysql_info($link)) || ('' == $tmp))
  15. printf("[006] Expecting string/any_non_empty, got %s/%s\n", gettype($tmp), $tmp);
  16. if (!$res = mysql_query('INSERT INTO test(id, label) SELECT id + 200, label FROM test', $link))
  17. printf("[007] [%d] %s\n", mysql_errno($link), mysql_error($link));
  18. if (!is_string($tmp = mysql_info($link)) || ('' == $tmp))
  19. printf("[008] Expecting string/any_non_empty, got %s/%s\n", gettype($tmp), $tmp);
  20. if (!$res = mysql_query('ALTER TABLE test MODIFY label CHAR(2)', $link))
  21. printf("[009] [%d] %s\n", mysql_errno($link), mysql_error($link));
  22. if (!is_string($tmp = mysql_info($link)) || ('' == $tmp))
  23. printf("[010] Expecting string/any_non_empty, got %s/%s\n", gettype($tmp), $tmp);
  24. if (!$res = mysql_query("UPDATE test SET label = 'b' WHERE id >= 100", $link))
  25. printf("[011] [%d] %s\n", mysql_errno($link), mysql_error($link));
  26. if (!is_string($tmp = mysql_info($link)) || ('' == $tmp))
  27. printf("[012] Expecting string/any_non_empty, got %s/%s\n", gettype($tmp), $tmp);
  28. if ((version_compare(PHP_VERSION, '5.9.9', '>') == 1) && !is_unicode($tmp)) {
  29. printf("[013] Expecting Unicode!\n");
  30. var_inspect($info);
  31. }
  32. if (!is_string($def_tmp = mysql_info()) || ('' == $def_tmp))
  33. printf("[014] Expecting string/any_non_empty, got %s/%s\n", gettype($def_tmp), $def_tmp);
  34. if ($def_tmp !== $tmp) {
  35. printf("[015] Results differ for default link and specified link, [%d] %s\n",
  36. mysql_errno(), mysql_error());
  37. var_inspect($tmp);
  38. var_inspect($def_tmp);
  39. }
  40. // NOTE: no LOAD DATA INFILE test
  41. print "done!";
  42. ?>
  43. <?php error_reporting(0); ?>
  44. <?php
  45. require_once("clean_table.inc");
  46. ?>