mysqli_get_charset.phpt 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. --TEST--
  2. mysqli_get_charset()
  3. --SKIPIF--
  4. <?php
  5. require_once('skipif.inc');
  6. require_once('skipifemb.inc');
  7. require_once('skipifconnectfailure.inc');
  8. if (!function_exists('mysqli_get_charset'))
  9. die("skip: function not available");
  10. ?>
  11. --FILE--
  12. <?php
  13. require_once("connect.inc");
  14. $tmp = NULL;
  15. $link = NULL;
  16. if (!is_null($tmp = @mysqli_get_charset()))
  17. printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  18. if (!is_null($tmp = @mysqli_get_charset($link)))
  19. printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  20. if (!is_null($tmp = @mysqli_set_charset($link, $link)))
  21. printf("[003] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  22. require('table.inc');
  23. if (!$res = mysqli_query($link, 'SELECT version() AS server_version'))
  24. printf("[004] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  25. $tmp = mysqli_fetch_assoc($res);
  26. mysqli_free_result($res);
  27. $version = explode('.', $tmp['server_version']);
  28. if (empty($version))
  29. printf("[005] Cannot determine server version, need MySQL Server 4.1+ for the test!\n");
  30. if ($version[0] <= 4 && $version[1] < 1)
  31. printf("[006] Need MySQL Server 4.1+ for the test!\n");
  32. if (!$res = mysqli_query($link, 'SELECT @@character_set_connection AS charset, @@collation_connection AS collation'))
  33. printf("[007] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  34. $tmp = mysqli_fetch_assoc($res);
  35. mysqli_free_result($res);
  36. if (!($character_set_connection = $tmp['charset']) || !($collation_connection = $tmp['collation']))
  37. printf("[008] Cannot determine current character set and collation\n");
  38. if (!$res = mysqli_query($link, $sql = sprintf("SHOW CHARACTER SET LIKE '%s'", $character_set_connection)))
  39. printf("[009] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  40. $tmp = mysqli_fetch_assoc($res);
  41. if (empty($tmp))
  42. printf("[010] Cannot fetch Maxlen and/or Comment, test will fail: $sql\n");
  43. $maxlen = (isset($tmp['Maxlen'])) ? $tmp['Maxlen'] : '';
  44. $comment = (isset($tmp['Description'])) ? $tmp['Description'] : '';
  45. if (!$res = mysqli_query($link, sprintf("SHOW COLLATION LIKE '%s'", $collation_connection)))
  46. printf("[011] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  47. $tmp = mysqli_fetch_assoc($res);
  48. mysqli_free_result($res);
  49. if (!($id = $tmp['Id']))
  50. printf("[012] Cannot fetch Id/Number, test will fail\n");
  51. if (!$res = mysqli_query($link, sprintf("SHOW VARIABLES LIKE 'character_sets_dir'")))
  52. printf("[013] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  53. $tmp = mysqli_fetch_assoc($res);
  54. mysqli_free_result($res);
  55. if (!($character_sets_dir = $tmp['Value']))
  56. printf("[014] Cannot fetch character_sets_dir, test will fail\n");
  57. if (!is_object($charset = mysqli_get_charset($link)))
  58. printf("[015] Expecting object/std_class, got %s/%s\n", gettype($charset), $charset);
  59. if (!isset($charset->charset) ||
  60. !in_array(gettype($charset->charset), array("string", "unicode")) ||
  61. ($character_set_connection !== $charset->charset))
  62. printf("[016] Expecting string/%s, got %s/%s\n", $character_set_connection, gettype($charset->charset), $charset->charset);
  63. if (!isset($charset->collation) ||
  64. !in_array(gettype($charset->collation), array("string", "unicode")) ||
  65. ($collation_connection !== $charset->collation))
  66. printf("[017] Expecting string/%s, got %s/%s\n", $collation_connection, gettype($charset->collation), $charset->collation);
  67. if (!isset($charset->dir) ||
  68. !is_string($charset->dir))
  69. printf("[019] Expecting string - ideally %s*, got %s/%s\n", $character_sets_dir, gettype($charset->dir), $charset->dir);
  70. if (!isset($charset->min_length) ||
  71. !(is_int($charset->min_length)) ||
  72. ($charset->min_length < 0) ||
  73. ($charset->min_length > $charset->max_length))
  74. printf("[020] Expecting int between 0 ... %d, got %s/%s\n", $charset->max_length,
  75. gettype($charset->min_length), $charset->min_length);
  76. if (!isset($charset->number) ||
  77. !is_int($charset->number) ||
  78. ($charset->number !== (int)$id))
  79. printf("[021] Expecting int/%d, got %s/%s\n", $id, gettype($charset->number), $charset->number);
  80. if (!isset($charset->state) ||
  81. !is_int($charset->state))
  82. printf("[022] Expecting int/any, got %s/%s\n", gettype($charset->state), $charset->state);
  83. mysqli_close($link);
  84. if (NULL !== ($tmp = mysqli_get_charset($link)))
  85. printf("[023] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  86. print "done!";
  87. ?>
  88. --CLEAN--
  89. <?php
  90. require_once("clean_table.inc");
  91. ?>
  92. --EXPECTF--
  93. Warning: mysqli_get_charset(): Couldn't fetch mysqli in %s on line %d
  94. done!