connect.inc 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <?php
  2. /*
  3. Default values are "localhost", "root",
  4. database "stest" and empty password.
  5. Change the MYSQL_TEST environment values
  6. if you want to use another configuration
  7. */
  8. $driver = new mysqli_driver;
  9. $host = getenv("MYSQL_TEST_HOST") ? getenv("MYSQL_TEST_HOST") : "127.0.0.1";
  10. $port = getenv("MYSQL_TEST_PORT") ? getenv("MYSQL_TEST_PORT") : 3306;
  11. $user = getenv("MYSQL_TEST_USER") ? getenv("MYSQL_TEST_USER") : "root";
  12. $passwd = getenv("MYSQL_TEST_PASSWD") ? getenv("MYSQL_TEST_PASSWD") : "";
  13. $db = getenv("MYSQL_TEST_DB") ? getenv("MYSQL_TEST_DB") : "test";
  14. $engine = getenv("MYSQL_TEST_ENGINE") ? getenv("MYSQL_TEST_ENGINE") : "MyISAM";
  15. $socket = getenv("MYSQL_TEST_SOCKET") ? getenv("MYSQL_TEST_SOCKET") : null;
  16. $skip_on_connect_failure = getenv("MYSQL_TEST_SKIP_CONNECT_FAILURE") ? getenv("MYSQL_TEST_SKIP_CONNECT_FAILURE") : true;
  17. $connect_flags = getenv("MYSQL_TEST_CONNECT_FLAGS") ? (int)getenv("MYSQL_TEST_CONNECT_FLAGS") : 0;
  18. if ($socket) {
  19. ini_set('mysqli.default_socket', $socket);
  20. }
  21. /* Development setting: test experimal features and/or feature requests that never worked before? */
  22. $TEST_EXPERIMENTAL = (in_array(getenv("MYSQL_TEST_EXPERIMENTAL"), array(0, 1))) ?
  23. ((1 == getenv("MYSQL_TEST_EXPERIMENTAL")) ? true : false) :
  24. false;
  25. $IS_MYSQLND = stristr(mysqli_get_client_info(), "mysqlnd");
  26. if (!$IS_MYSQLND) {
  27. $MYSQLND_VERSION = NULL;
  28. } else {
  29. /*
  30. The formatting of the version reported by mysqli_get_client_info()
  31. has changed significantly in the past. To get tests working properly
  32. with PHP 5.3.0 and up, we set everything that looks like prior to
  33. PHP 5.3.0 to version 5.0.4 = 5 * 10000 + 0 * 100 + 4 = 50004.
  34. PHP 5.3.0 reports mysqlnd 5.0.5 dev (= 5 * 10000 + 0 * 100 + 5 = 50005.
  35. */
  36. if (preg_match('@Revision:\s+(\d+)\s*\$@ism', mysqli_get_client_info(), $matches)) {
  37. /* something prior to PHP 5.3.0 */
  38. $MYSQLND_VERSION = 50004;
  39. } else if (preg_match('@^mysqlnd (\d+)\.(\d+)\.(\d+).*@ism', mysqli_get_client_info(), $matches)) {
  40. /* formatting schema used by PHP 5.3.0 */
  41. $MYSQLND_VERSION = (int)$matches[1] * 10000 + (int)$matches[2] * 100 + (int)$matches[3];
  42. } else if (preg_match('@^mysqlnd/PHP 6.0.0-dev@ism', mysqli_get_client_info(), $matches)) {
  43. /*
  44. PHP 6.0 at the time of the first PHP 5.3.0 release.
  45. HEAD and 5.3 have been in sync when 5.3.0 was released.
  46. It is at least 5.0.5-dev.
  47. */
  48. $MYSQLND_VERSION = 50005;
  49. } else {
  50. /* unknown */
  51. $MYSQLND_VERSION = -1;
  52. }
  53. }
  54. if (!function_exists('sys_get_temp_dir')) {
  55. function sys_get_temp_dir() {
  56. if (!empty($_ENV['TMP']))
  57. return realpath( $_ENV['TMP'] );
  58. if (!empty($_ENV['TMPDIR']))
  59. return realpath( $_ENV['TMPDIR'] );
  60. if (!empty($_ENV['TEMP']))
  61. return realpath( $_ENV['TEMP'] );
  62. $temp_file = tempnam(md5(uniqid(rand(), TRUE)), '');
  63. if ($temp_file) {
  64. $temp_dir = realpath(dirname($temp_file));
  65. unlink($temp_file);
  66. return $temp_dir;
  67. }
  68. return FALSE;
  69. }
  70. }
  71. if (!function_exists('my_mysqli_connect')) {
  72. /**
  73. * Whenever possible, please use this wrapper to make testing ot MYSQLI_CLIENT_COMPRESS (and potentially SSL) possible
  74. *
  75. * @param enable_env_flags Enable setting of connection flags through env(MYSQL_TEST_CONNECT_FLAGS)?
  76. */
  77. function my_mysqli_connect($host, $user, $passwd, $db, $port, $socket, $enable_env_flags = true) {
  78. global $connect_flags;
  79. $flags = $enable_env_flags? $connect_flags:0;
  80. if ($flags !== 0) {
  81. $link = mysqli_init();
  82. if (!mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket, $flags))
  83. $link = false;
  84. } else {
  85. $link = mysqli_connect($host, $user, $passwd, $db, $port, $socket);
  86. }
  87. return $link;
  88. }
  89. /**
  90. * Whenever possible, please use this wrapper to make testing ot MYSQLI_CLIENT_COMPRESS (and potentially SSL) possible
  91. *
  92. * @param enable_env_flags Enable setting of connection flags through env(MYSQL_TEST_CONNECT_FLAGS)
  93. */
  94. function my_mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket, $flags = 0, $enable_env_flags = true) {
  95. global $connect_flags;
  96. if ($enable_env_flags)
  97. $flags = $flags | $connect_flags;
  98. return mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket, $flags);
  99. }
  100. class my_mysqli extends mysqli {
  101. public function __construct($host, $user, $passwd, $db, $port, $socket, $enable_env_flags = true) {
  102. global $connect_flags;
  103. $flags = ($enable_env_flags) ? $connect_flags : 0;
  104. if ($flags !== false) {
  105. parent::init();
  106. $this->real_connect($host, $user, $passwd, $db, $port, $socket, $flags);
  107. } else {
  108. parent::__construct($host, $user, $passwd, $db, $port, $socket);
  109. }
  110. }
  111. }
  112. function have_innodb($link) {
  113. if (($res = $link->query("SHOW VARIABLES LIKE 'have_innodb'")) &&
  114. ($row = $res->fetch_row()) &&
  115. !empty($row)) {
  116. if ($row[1] == "DISABLED" || $row[1] == "NO") {
  117. return false;
  118. }
  119. return true;
  120. } else {
  121. /* MySQL 5.6.1+ */
  122. if ($res = $link->query("SHOW ENGINES")) {
  123. while ($row = $res->fetch_assoc()) {
  124. if (!isset($row['Engine']) || !isset($row['Support']))
  125. return false;
  126. if (('InnoDB' == $row['Engine']) &&
  127. (('YES' == $row['Support']) || ('DEFAULT' == $row['Support']))
  128. ) {
  129. return true;
  130. }
  131. }
  132. return false;
  133. } else {
  134. return false;
  135. }
  136. }
  137. return false;
  138. }
  139. } else {
  140. printf("skip Eeeek/BUG/FIXME - connect.inc included twice! skipif bug?\n");
  141. }
  142. function handle_catchable_fatal($errno, $error, $file, $line) {
  143. static $errcodes = array();
  144. if (empty($errcodes)) {
  145. $constants = get_defined_constants();
  146. foreach ($constants as $name => $value) {
  147. if (substr($name, 0, 2) == "E_")
  148. $errcodes[$value] = $name;
  149. }
  150. }
  151. printf("[%s] %s in %s on line %s\n",
  152. (isset($errcodes[$errno])) ? $errcodes[$errno] : $errno,
  153. $error, $file, $line);
  154. return true;
  155. }
  156. ?>