mysqli_debug.phpt 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. --TEST--
  2. mysqli_debug()
  3. --SKIPIF--
  4. <?php
  5. require_once('skipif.inc');
  6. require_once('skipifemb.inc');
  7. require_once('skipifconnectfailure.inc');
  8. if (!function_exists('mysqli_debug'))
  9. die("skip: mysqli_debug() not available");
  10. if (!defined('MYSQLI_DEBUG_TRACE_ENABLED'))
  11. die("skip: can't say for sure if mysqli_debug works");
  12. if (defined('MYSQLI_DEBUG_TRACE_ENABLED') && !MYSQLI_DEBUG_TRACE_ENABLED)
  13. die("skip: debug functionality not enabled");
  14. ?>
  15. --FILE--
  16. <?php
  17. require_once('connect.inc');;
  18. if (NULL !== ($tmp = @mysqli_debug()))
  19. printf("[001] Expecting NULL/NULL, got %s/%s\n", gettype($tmp), $tmp);
  20. // NOTE: documentation is not clear on this: function always return NULL or TRUE
  21. if (true !== ($tmp = mysqli_debug(sprintf('d:t:O,%s/mysqli_debug_phpt.trace', sys_get_temp_dir()))))
  22. printf("[002] Expecting boolean/true, got %s/%s\n", gettype($tmp), $tmp);
  23. if ($IS_MYSQLND) {
  24. // let's make this mysqlnd only - for libmysql we need debug installation
  25. // table.inc will create a database connection and run some SQL queries, therefore
  26. // the debug file should have entries
  27. require_once('table.inc');
  28. clearstatcache();
  29. $trace_file = sprintf('%s/mysqli_debug_phpt.trace', sys_get_temp_dir());
  30. if (!file_exists($trace_file))
  31. printf("[003] Trace file '%s' has not been created\n", $trace_file);
  32. if (filesize($trace_file) < 50)
  33. printf("[004] Trace file '%s' is very small. filesize() reports only %d bytes. Please check.\n",
  34. $trace_file,
  35. filesize($trace_file));
  36. // will mysqli_debug() mind if the trace file gets removed?
  37. unlink($trace_file);
  38. clearstatcache();
  39. if (!$res = mysqli_query($link, 'SELECT * FROM test'))
  40. printf("[005] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  41. else
  42. mysqli_free_result($res);
  43. mysqli_close($link);
  44. clearstatcache();
  45. if (!file_exists($trace_file))
  46. printf("[006] Trace file '%s' does not exist\n", $trace_file);
  47. unlink($trace_file);
  48. }
  49. print "done!";
  50. ?>
  51. --CLEAN--
  52. <?php
  53. require_once("clean_table.inc");
  54. ?>
  55. --EXPECTF--
  56. done%s