mysqli_reap_async_query.phpt 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. --TEST--
  2. mysqli_reap_async_query()
  3. --SKIPIF--
  4. <?php
  5. require_once('skipif.inc');
  6. require_once('skipifemb.inc');
  7. require_once('connect.inc');
  8. require_once('skipifconnectfailure.inc');
  9. if (!$IS_MYSQLND)
  10. die("skip mysqlnd only feature, compile PHP using --with-mysqli=mysqlnd");
  11. ?>
  12. --FILE--
  13. <?php
  14. require_once('connect.inc');
  15. function get_connection() {
  16. global $host, $user, $passwd, $db, $port, $socket;
  17. if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
  18. printf("[001] [%d] %s\n", mysqli_connect_errno(), mysqli_connect_error());
  19. return $link;
  20. }
  21. if (!$link = get_connection())
  22. printf("[001] [%d] %s\n", mysqli_connect_errno(), mysqli_connect_error());
  23. if (NULL !== ($tmp = @mysqli_reap_async_query()))
  24. printf("[002] Expecting NULL got %s\n", var_export($tmp, true));
  25. $l = array($link);
  26. if (NULL !== ($tmp = @mysqli_reap_async_query($l)))
  27. printf("[003] Expecting NULL got %s\n", var_export($tmp, true));
  28. if (NULL !== ($tmp = @mysqli_reap_async_query($link, $link)))
  29. printf("[004] Expecting NULL got %s\n", var_export($tmp, true));
  30. function poll_async($offset, $link, $links, $errors, $reject, $exp_ready, $use_oo_syntax) {
  31. if ($exp_ready !== ($tmp = mysqli_poll($links, $errors, $reject, 0, 1000)))
  32. printf("[%03d + 1] There should be %d links ready to read from, %d ready\n",
  33. $offset, $exp_ready, $tmp);
  34. foreach ($links as $mysqli) {
  35. if ($use_oo_syntax) {
  36. $res = $mysqli->reap_async_query();
  37. } else {
  38. $res = mysqli_reap_async_query($mysqli);
  39. }
  40. if (is_object($res)) {
  41. printf("[%03d + 2] %s\n", $offset, var_export($res->fetch_assoc(), true));
  42. } else if (mysqli_errno($mysqli) > 0) {
  43. printf("[%03d + 3] Error indicated through links array: %d/%s",
  44. $offset, mysqli_errno($mysqli), mysqli_error($mysqli));
  45. } else {
  46. printf("[%03d + 4] Cannot fetch and no error set - non resultset query (no SELECT)!\n", $offset);
  47. }
  48. }
  49. foreach ($errors as $mysqli)
  50. printf("[%03d + 5] Error on %d: %d/%s\n",
  51. $offset, mysqli_thread_id($mysqli), mysqli_errno($mysqli), mysqli_error($mysqli));
  52. foreach ($reject as $mysqli)
  53. printf("[%03d + 6] Rejecting thread %d: %d/%s\n",
  54. $offset, mysqli_thread_id($mysqli), mysqli_errno($mysqli), mysqli_error($mysqli));
  55. }
  56. // Connections on which no query has been send - 1
  57. $link = get_connection();
  58. $link->query("SELECT 1 AS _one", MYSQLI_ASYNC | MYSQLI_STORE_RESULT);
  59. $links = array($link);
  60. $errors = array($link);
  61. $reject = array($link);
  62. poll_async(12, $link, $links, $errors, $reject, 1, false);
  63. mysqli_close($link);
  64. $link = get_connection();
  65. $link->query("SELECT 2 AS _two", MYSQLI_ASYNC | MYSQLI_USE_RESULT);
  66. $links = array($link);
  67. $errors = array($link);
  68. $reject = array($link);
  69. poll_async(13, $link, $links, $errors, $reject, 1, true);
  70. mysqli_close($link);
  71. print "done!";
  72. ?>
  73. --EXPECTF--
  74. [012 + 2] array (
  75. '_one' => '1',
  76. )
  77. [013 + 2] array (
  78. '_two' => '2',
  79. )
  80. done!