mysql_connect.phpt 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. --TEST--
  2. mysql_connect()
  3. --SKIPIF--
  4. <?php
  5. require_once('skipif.inc');
  6. require_once('skipifconnectfailure.inc');
  7. ?>
  8. --FILE--
  9. <?php
  10. include_once "connect.inc";
  11. $tmp = NULL;
  12. $link = NULL;
  13. // mysql_connect ( [string server [, string username [, string password [, bool new_link [, int client_flags]]]]] )
  14. if (NULL !== ($tmp = @mysql_connect($link, $link, $link, $link, $link, $link)))
  15. printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  16. $myhost = (is_null($socket)) ? ((is_null($port)) ? $host : $host . ':' . $port) : $host . ':' . $socket;
  17. if (!$link = mysql_connect($myhost, $user, $passwd, true))
  18. printf("[002] Cannot connect to the server using host=%s/%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
  19. $host, $myhost, $user, $db, $port, $socket);
  20. mysql_close($link);
  21. if (!$link = mysql_connect($myhost, $user, $passwd, true))
  22. printf("[003] Cannot connect to the server using host=%s/%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
  23. $host, $myhost, $user, $db, $port, $socket);
  24. mysql_close();
  25. if ($link = mysql_connect($myhost, $user . 'unknown_really', $passwd . 'non_empty', true))
  26. printf("[004] Can connect to the server using host=%s/%s, user=%s, passwd=***non_empty, dbname=%s, port=%s, socket=%s\n",
  27. $host, $myhost, $user . 'unknown_really', $db, $port, $socket);
  28. if (false !== $link)
  29. printf("[005] Expecting boolean/false, got %s/%s\n", gettype($link), $link);
  30. // Run the following tests without an anoynmous MySQL user and use a password for the test user!
  31. ini_set('mysql.default_socket', $socket);
  32. if (!is_null($socket)) {
  33. if (!is_resource($link = mysql_connect($host, $user, $passwd, true))) {
  34. printf("[006] Usage of mysql.default_socket failed\n");
  35. } else {
  36. mysql_close($link);
  37. }
  38. }
  39. if (!ini_get('sql.safe_mode')) {
  40. ini_set('mysql.default_port', $port);
  41. if (!is_null($port)) {
  42. if (!is_resource($link = mysql_connect($host, $user, $passwd, true))) {
  43. printf("[007] Usage of mysql.default_port failed\n");
  44. } else {
  45. mysql_close($link);
  46. }
  47. }
  48. ini_set('mysql.default_password', $passwd);
  49. if (!is_resource($link = mysql_connect($myhost, $user))) {
  50. printf("[008] Usage of mysql.default_password failed\n");
  51. } else {
  52. mysql_close($link);
  53. }
  54. ini_set('mysql.default_user', $user);
  55. if (!is_resource($link = mysql_connect($myhost))) {
  56. printf("[009] Usage of mysql.default_user failed\n");
  57. } else {
  58. mysql_close($link);
  59. }
  60. ini_set('mysql.default_host', $myhost);
  61. if (!is_resource($link = mysql_connect())) {
  62. printf("[010] Usage of mysql.default_host failed\n") ;
  63. } else {
  64. mysql_close($link);
  65. }
  66. if (!is_resource($link = mysql_connect()) || !is_resource($link2 = mysql_connect())) {
  67. printf("[011] Usage of mysql.default_host failed\n") ;
  68. } else {
  69. mysql_close();
  70. mysql_close($link2);
  71. }
  72. if (!stristr(PHP_OS, 'win') && !stristr(PHP_OS, 'netware')) {
  73. ini_set('mysql.default_port', -1);
  74. if (putenv(sprintf('MYSQL_TCP_PORT=%d', $port))) {
  75. if (!is_resource($link = mysql_connect())) {
  76. printf("[012] Usage of env MYSQL_TCP_PORT failed\n") ;
  77. } else {
  78. mysql_close($link);
  79. }
  80. } else if (putenv(sprintf('MYSQL_TCP_PORT=%d', $port + 1))) {
  81. if (!is_resource($link = mysql_connect())) {
  82. printf("[013] Usage of env MYSQL_TCP_PORT=%d should have failed\n", $port + 1) ;
  83. mysql_close($link);
  84. }
  85. }
  86. }
  87. }
  88. print "done!";
  89. ?>
  90. --EXPECTF--
  91. Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in %s on line %d
  92. Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in %s on line %d
  93. Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in %s on line %d
  94. Warning: mysql_connect(): Access denied for user '%s'@'%s' (using password: YES) in %s on line %d
  95. Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in %s on line %d
  96. Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in %s on line %d
  97. Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in %s on line %d
  98. Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in %s on line %d
  99. Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in %s on line %d
  100. Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in %s on line %d
  101. Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in %s on line %d
  102. done!