mysql_create_db.phpt 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. --TEST--
  2. mysql_create_db()
  3. --SKIPIF--
  4. <?php
  5. require_once('skipif.inc');
  6. if (!function_exists('mysql_create_db'))
  7. die("Skip mysql_create_db() exists only in old versions of the libmysql.");
  8. ?>
  9. --FILE--
  10. <?php
  11. include "connect.inc";
  12. $link = NULL;
  13. $tmp = null;
  14. if (false !== ($tmp = mysql_create_db()))
  15. printf("[001] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  16. if (false !== ($tmp = mysql_create_db($link, $link, $link)))
  17. printf("[002] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  18. if ($link = my_mysql_connect($host, $user, $passwd, $db, $port, $socket))
  19. printf("[003] Can connect to the server using host=%s, user=%s, passwd=***non_empty, dbname=%s, port=%s, socket=%s\n",
  20. $host, $user . 'unknown_really', $db, $port, $socket);
  21. if (!mysql_query("CREATE DATABASE mysqlcreatedb", $link))
  22. die(sprintf("[004] Cannot create database, aborting test, [%d] %s\n", mysql_errno($link), mysql_error($link)));
  23. if (!mysql_query("DROP DATABASE mysqlcreatedb", $link))
  24. printf("[005] [%d] %s\n", mysql_errno($link), mysql_error($link));
  25. if (true !== ($tmp = mysql_create_db("mysqlcreatedb", $link)))
  26. printf("[006] Expecting boolean/true, got %s/%s, [%d] %s\n", gettype($tmp), $tmp, mysql_errno($link), mysql_error($link));
  27. if (false !== ($tmp = mysql_create_db("mysqlcreatedb", $link)))
  28. printf("[007] Expecting boolean/false, got %s/%s, [%d] %s\n", gettype($tmp), $tmp, mysql_errno($link), mysql_error($link));
  29. if (!mysql_query("DROP DATABASE mysqlcreatedb", $link))
  30. printf("[008] [%d] %s\n", mysql_errno($link), mysql_error($link));
  31. print "done!";
  32. ?>
  33. --CLEAN--
  34. <?php
  35. require_once('connect.inc');
  36. if (!$link = my_mysql_connect($host, $user, $passwd, $db, $port, $socket))
  37. printf("[c001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
  38. $host, $user, $db, $port, $socket);
  39. if (!mysql_query("DROP DATABASE IF EXISTS mysqlcreatedb", $link))
  40. printf("[c002] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  41. mysql_close($link);
  42. ?>
  43. --EXPECTF--
  44. 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
  45. 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
  46. done!