mysql_phpinfo.phpt 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. --TEST--
  2. phpinfo() mysql section
  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. @ob_clean();
  12. ob_start();
  13. phpinfo();
  14. $phpinfo = ob_get_contents();
  15. ob_end_clean();
  16. /* all versions should at least dump this minimum information */
  17. if (!stristr($phpinfo, "mysql support"))
  18. printf("[001] ext/mysql should have exposed itself.\n");
  19. if (!stristr($phpinfo, "client api version"))
  20. printf("[002] ext/mysql should have exposed the library version.\n");
  21. if (!stristr($phpinfo, "mysql.default_host"))
  22. printf("[003] php.ini setting mysql.default_host not shown.\n");
  23. if (!stristr($phpinfo, "mysql.default_port"))
  24. printf("[004] php.ini setting mysql.default_port not shown.\n");
  25. if (!stristr($phpinfo, "mysql.default_password"))
  26. printf("[005] php.ini setting mysql.default_password not shown.\n");
  27. if (!stristr($phpinfo, "mysql.default_socket"))
  28. printf("[006] php.ini setting mysql.default_socket not shown.\n");
  29. if (!stristr($phpinfo, "mysql.default_user"))
  30. printf("[007] php.ini setting mysql.default_user not shown.\n");
  31. if (!stristr($phpinfo, "mysql.max_links"))
  32. printf("[008] php.ini setting mysql.max_links not shown.\n");
  33. if (!stristr($phpinfo, "mysql.max_persistent"))
  34. printf("[009] php.ini setting mysql.max_persistent not shown.\n");
  35. if (!stristr($phpinfo, "mysql.connect_timeout"))
  36. printf("[010] php.ini setting mysql.connect_timeout not shown.\n");
  37. if (!stristr($phpinfo, "mysql.allow_persistent"))
  38. printf("[011] php.ini setting mysql.allow_persistent not shown.\n");
  39. if ($IS_MYSQLND) {
  40. $expected = array(
  41. 'mysqlnd statistics',
  42. 'bytes_sent', 'bytes_received', 'packets_sent', 'packets_received',
  43. 'protocol_overhead_in', 'protocol_overhead_out', 'result_set_queries',
  44. 'non_result_set_queries', 'no_index_used', 'bad_index_used',
  45. 'buffered_sets', 'unbuffered_sets', 'ps_buffered_sets', 'ps_unbuffered_sets',
  46. 'flushed_normal_sets', 'flushed_ps_sets', 'rows_fetched_from_server',
  47. 'rows_fetched_from_client', 'rows_skipped', 'copy_on_write_saved',
  48. 'copy_on_write_performed', 'command_buffer_too_small', 'connect_success',
  49. 'connect_failure', 'connection_reused', 'explicit_close', 'implicit_close',
  50. 'disconnect_close', 'in_middle_of_command_close', 'explicit_free_result',
  51. 'implicit_free_result', 'explicit_stmt_close', 'implicit_stmt_close',
  52. 'size',
  53. );
  54. foreach ($expected as $k => $entry)
  55. if (!stristr($phpinfo, $entry))
  56. printf("[012] Could not find entry for '%s'\n", $entry);
  57. }
  58. print "done!";
  59. ?>
  60. --EXPECTF--
  61. done!