PageRenderTime 49ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/hphp/test/zend/bad/ext/mysqli/tests/mysqli_pconn_conn_multiple.php

http://github.com/facebook/hiphop-php
PHP | 129 lines | 88 code | 41 blank | 0 comment | 38 complexity | a31ce99a5a8f66ea88042878f7133a88 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. require_once("connect.inc");
  3. $phost = 'p:' . $host;
  4. if (!$link = my_mysqli_connect($phost, $user, $passwd, $db, $port, $socket))
  5. printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
  6. $phost, $user, $db, $port, $socket);
  7. if (!$thread_id = $link->thread_id)
  8. printf("[002] Cannot determine thread id, test will fail, [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  9. if (true !== ($tmp = my_mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket)))
  10. printf("[003] Expecting boolean/true got %s/%s\n", gettype($tmp), $tmp);
  11. if (!is_int($new_thread_id = mysqli_thread_id($link)) || ($new_thread_id < 0))
  12. printf("[004] Expecting int/any got %s/%s\n", gettype($tmp), $tmp);
  13. if ($thread_id == $new_thread_id)
  14. printf("[005] Expecting new connection and new thread id. Old thread id %d, new thread id %d\n", $thread_id, $new_thread_id);
  15. if (!($res = mysqli_query($link, "SELECT 'ok' AS it_works")) ||
  16. !($row = mysqli_fetch_assoc($res)))
  17. printf("[006] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  18. var_dump($row);
  19. mysqli_free_result($res);
  20. mysqli_close($link);
  21. if (!$link = new my_mysqli($phost, $user, $passwd, $db, $port, $socket))
  22. printf("[007] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
  23. $phost, $user, $db, $port, $socket);
  24. if (!$thread_id = $link->thread_id)
  25. printf("[008] Cannot determine thread id, test will fail, [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  26. if (true !== ($tmp = $link->real_connect($host, $user, $passwd, $db, $port, $socket)))
  27. printf("[009] Expecting boolean/true got %s/%s\n", gettype($tmp), $tmp);
  28. if (!is_int($new_thread_id = $link->thread_id) || ($new_thread_id < 0))
  29. printf("[010] Expecting int/any got %s/%s\n", gettype($tmp), $tmp);
  30. if ($thread_id == $new_thread_id)
  31. printf("[011] Expecting new connection and new thread id. Old thread id %d, new thread id %d\n", $thread_id, $new_thread_id);
  32. if (!($res = $link->query("SELECT 'works also with oo' AS syntax")) ||
  33. !($row = $res->fetch_assoc()))
  34. printf("[012] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  35. var_dump($row);
  36. mysqli_free_result($res);
  37. mysqli_close($link);
  38. if (NULL !== ($tmp = $link->connect($phost, $user, $passwd, $db, $port, $socket)))
  39. printf("[013] Expecting NULL got %s/%s\n", gettype($tmp), $tmp);
  40. if (!$link = mysqli_connect($phost, $user, $passwd, $db, $port, $socket))
  41. printf("[014] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
  42. $phost, $user, $db, $port, $socket);
  43. if (NULL !== ($tmp = $link->connect($host, $user, $passwd, $db, $port, $socket)))
  44. printf("[015] Expecting NULL got %s/%s\n", gettype($tmp), $tmp);
  45. printf("Flipping phost/host order\n");
  46. if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
  47. printf("[016] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
  48. $host, $user, $db, $port, $socket);
  49. if (!$thread_id = mysqli_thread_id($link))
  50. printf("[017] Cannot determine thread id, test will fail, [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  51. if (true !== ($tmp = my_mysqli_real_connect($link, $phost, $user, $passwd, $db, $port, $socket)))
  52. printf("[018] Expecting boolean/true got %s/%s\n", gettype($tmp), $tmp);
  53. if (!is_int($new_thread_id = mysqli_thread_id($link)) || ($new_thread_id < 0))
  54. printf("[019] Expecting int/any got %s/%s\n", gettype($tmp), $tmp);
  55. if ($thread_id == $new_thread_id)
  56. printf("[020] Expecting new connection and new thread id. Old thread id %d, new thread id %d\n", $thread_id, $new_thread_id);
  57. if (!($res = mysqli_query($link, "SELECT 'ok' AS it_works")) ||
  58. !($row = mysqli_fetch_assoc($res)))
  59. printf("[021] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  60. var_dump($row);
  61. mysqli_free_result($res);
  62. mysqli_close($link);
  63. if (!$link = new my_mysqli($host, $user, $passwd, $db, $port, $socket))
  64. printf("[022] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
  65. $host, $user, $db, $port, $socket);
  66. if (!$thread_id = $link->thread_id)
  67. printf("[023] Cannot determine thread id, test will fail, [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  68. if (true !== ($tmp = $link->real_connect($phost, $user, $passwd, $db, $port, $socket)))
  69. printf("[024] Expecting boolean/true got %s/%s\n", gettype($tmp), $tmp);
  70. if (!is_int($new_thread_id = $link->thread_id) || ($new_thread_id < 0))
  71. printf("[025] Expecting int/any got %s/%s\n", gettype($tmp), $tmp);
  72. if ($thread_id == $new_thread_id)
  73. printf("[026] Expecting new connection and new thread id. Old thread id %d, new thread id %d\n", $thread_id, $new_thread_id);
  74. if (!($res = $link->query("SELECT 'works also with oo' AS syntax")) ||
  75. !($row = $res->fetch_assoc()))
  76. printf("[027] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  77. var_dump($row);
  78. mysqli_free_result($res);
  79. mysqli_close($link);
  80. if (NULL !== ($tmp = $link->connect($host, $user, $passwd, $db, $port, $socket)))
  81. printf("[028] Expecting NULL got %s/%s\n", gettype($tmp), $tmp);
  82. if (!$link = mysqli_connect($host, $user, $passwd, $db, $port, $socket))
  83. printf("[029] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
  84. $host, $user, $db, $port, $socket);
  85. if (NULL !== ($tmp = $link->connect($phost, $user, $passwd, $db, $port, $socket)))
  86. printf("[030] Expecting NULL got %s/%s\n", gettype($tmp), $tmp);
  87. print "done!";
  88. ?>