mysql_field_flags.phpt 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. --TEST--
  2. mysql_field_flags()
  3. --SKIPIF--
  4. <?php
  5. require_once('skipif.inc');
  6. require_once('skipifconnectfailure.inc');
  7. ?>
  8. --FILE--
  9. <?php
  10. include "connect.inc";
  11. $tmp = NULL;
  12. $link = NULL;
  13. if (!is_null($tmp = @mysql_field_flags()))
  14. printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  15. if (null !== ($tmp = @mysql_field_flags($link)))
  16. printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  17. require('table.inc');
  18. if (!$res = mysql_query("SELECT id, label FROM test ORDER BY id LIMIT 2", $link)) {
  19. printf("[003] [%d] %s\n", mysql_errno($link), mysql_error($link));
  20. }
  21. if (NULL !== ($tmp = mysql_field_flags($res)))
  22. printf("[004] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  23. if (false !== ($tmp = mysql_field_flags($res, -1)))
  24. printf("[005] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  25. if (!is_string($tmp = mysql_field_flags($res, 0)) || empty($tmp))
  26. printf("[006] Expecting non empty string, got %s/%s\n", gettype($tmp), $tmp);
  27. if ((version_compare(PHP_VERSION, '5.9.9', '>') == 1) && !is_unicode($tmp)) {
  28. printf("[007] Check the unicode support!\n");
  29. var_inspect($tmp);
  30. }
  31. if (false !== ($tmp = mysql_field_flags($res, 2)))
  32. printf("[008] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  33. mysql_free_result($res);
  34. $version = mysql_get_server_info($link);
  35. if (!preg_match('@(\d+)\.(\d+)\.(\d+)@ism', $version, $matches))
  36. printf("[009] Cannot get server version\n");
  37. $version = ($matches[1] * 1000) + ($matches[2] * 100) + $matches[3];
  38. $tables = array(
  39. 'label INT, UNIQUE KEY (label)' => array(
  40. array('label', '1'),
  41. 'label' => array(($version < 5000) ? 'multiple_key' : 'unique_key')
  42. ),
  43. 'labela INT, label2 CHAR(1), KEY keyname (labela, label2)' => array(
  44. array('labela, label2', "1, 'a'"),
  45. 'labela' => array('multiple_key'),
  46. ),
  47. 'label1 BLOB' => array(
  48. array('label1', "'blob'"),
  49. 'label1' => array('blob', 'binary'),
  50. ),
  51. 'label1 INT UNSIGNED' => array(
  52. array('label1', '100'),
  53. 'label1' => array('unsigned'),
  54. ),
  55. 'label1 INT UNSIGNED NOT NULL AUTO INCREMENT' => array(
  56. array('label1', '100'),
  57. 'label1' => array('auto_increment',
  58. 'unsigned'),
  59. ),
  60. 'label1 ENUM("a", "b")' => array(
  61. array('label1', "'a'"),
  62. 'label1' => array('enum'),
  63. ),
  64. 'label1 SET("a", "b")' => array(
  65. array('label1', "'a'"),
  66. 'label1' => array('set'),
  67. ),
  68. 'label1 TIMESTAMP' => array(
  69. array('label1', sprintf("'%s'", @date("Y-m-d H:i:s"))),
  70. 'label1' => array(
  71. 'timestamp',
  72. 'binary',
  73. 'not_null'),
  74. ),
  75. );
  76. if ($version < 5600) {
  77. $tables['label1 TIMESTAMP']['label1'][] = 'zerofill';
  78. $tables['label1 TIMESTAMP']['label1'][] = 'unsigned';
  79. }
  80. foreach ($tables as $columns => $expected) {
  81. if (!mysql_query("DROP TABLE IF EXISTS test", $link)) {
  82. printf("[010/%s] [%d] %s\n", $columns, mysql_errno($link), mysql_error($link));
  83. continue;
  84. }
  85. $sql = sprintf("CREATE TABLE test(id INT, %s) ENGINE = %s", $columns, $engine);
  86. if (!@mysql_query($sql, $link)) {
  87. // server or engine might not support this
  88. continue;
  89. }
  90. reset($expected);
  91. list($k, $values) = each($expected);
  92. $sql = sprintf("INSERT INTO test(id, %s) VALUES (1, %s)", $values[0], $values[1]);
  93. if (!mysql_query($sql, $link)) {
  94. printf("[011/%s] '%s', [%d] %s\n", $columns, $sql, mysql_errno($link), mysql_error($link));
  95. continue;
  96. }
  97. if (!$res = mysql_query(sprintf("SELECT id, %s FROM test", $values[0]), $link)) {
  98. printf("[012/%s] [%d] %s\n", $columns, mysql_errno($link), mysql_error($link));
  99. continue;
  100. }
  101. $i = 1;
  102. while (list($field, $flags) = each($expected)) {
  103. $tmp = mysql_field_flags($res, $i++);
  104. foreach ($flags as $k => $flag) {
  105. if (!preg_match(sprintf('@\s*%s\s*@ismU', $flag), $tmp)) {
  106. printf("[013/%s] Field '%s', flag '%s' not found, [%d] %s\n", $columns, $field, $flag, mysql_errno($link), mysql_error($link));
  107. }
  108. }
  109. foreach ($flags as $k => $flag) {
  110. $tmp = preg_replace(sprintf('@\s*%s\s*@ismU', $flag), '', $tmp);
  111. }
  112. if ('' != $tmp)
  113. printf("[014/%s] Field '%s', unexpected flags '%s' found, [%d] %s\n", $columns, $field, $tmp, mysql_errno($link), mysql_error($link));
  114. }
  115. mysql_free_result($res);
  116. }
  117. var_dump(mysql_field_flags($res, 0));
  118. mysql_close($link);
  119. print "done!";
  120. ?>
  121. --CLEAN--
  122. <?php
  123. require_once("clean_table.inc");
  124. ?>
  125. --EXPECTF--
  126. 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
  127. Warning: mysql_field_flags() expects exactly 2 parameters, 1 given in %s on line %d
  128. Warning: mysql_field_flags(): Field -1 is invalid for MySQL result index %d in %s on line %d
  129. Warning: mysql_field_flags(): Field 2 is invalid for MySQL result index %d in %s on line %d
  130. Warning: mysql_field_flags(): %d is not a valid MySQL result resource in %s on line %d
  131. bool(false)
  132. done!