mysqli_commit_oo.phpt 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. --TEST--
  2. mysqli_commit()
  3. --SKIPIF--
  4. <?php
  5. require_once('skipif.inc');
  6. require_once('skipifemb.inc');
  7. require_once('skipifconnectfailure.inc');
  8. require_once('connect.inc');
  9. if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
  10. die(sprintf("Cannot connect, [%d] %s", mysqli_connect_errno(), mysqli_connect_error()));
  11. if (!have_innodb($link))
  12. die(sprintf("Needs InnoDB support, [%d] %s", $link->errno, $link->error));
  13. ?>
  14. --FILE--
  15. <?php
  16. require_once("connect.inc");
  17. $tmp = NULL;
  18. $link = NULL;
  19. $mysqli = new mysqli();
  20. if (!is_null($tmp = @$mysqli->commit())) {
  21. printf("[013] Expecting NULL got %s/%s\n", gettype($tmp), $tmp);
  22. }
  23. if (!$mysqli = new my_mysqli($host, $user, $passwd, $db, $port, $socket)) {
  24. printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
  25. $host, $user, $db, $port, $socket);
  26. }
  27. if (true !== ($tmp = $mysqli->commit())) {
  28. printf("[002] Expecting boolean/true got %s/%s\n", gettype($tmp), $tmp);
  29. }
  30. if (true !== ($tmp = $mysqli->autocommit(false))) {
  31. printf("[003] Cannot turn off autocommit, expecting true, got %s/%s\n", gettype($tmp), $tmp);
  32. }
  33. if (!$mysqli->query('DROP TABLE IF EXISTS test')) {
  34. printf("[004] [%d] %s\n", $mysqli->errno, $mysqli->error);
  35. }
  36. if (!$mysqli->query('CREATE TABLE test(id INT) ENGINE = InnoDB')) {
  37. printf("[005] Cannot create test table, [%d] %s\n", $mysqli->errno, $mysqli->error);
  38. }
  39. if (!$mysqli->query('INSERT INTO test(id) VALUES (1)')) {
  40. printf("[006] [%d] %s\n", $mysqli->errno, $mysqli->error);
  41. }
  42. $tmp = $mysqli->commit();
  43. if ($tmp !== true) {
  44. printf("[007] Expecting boolean/true, got %s/%s\n", gettype($tmp), $tmp);
  45. }
  46. if (!$mysqli->query('ROLLBACK'))
  47. printf("[008] [%d] %s\n", $mysqli->errno, $mysqli->error);
  48. if (!$res = $mysqli->query('SELECT COUNT(*) AS num FROM test')) {
  49. printf("[009] [%d] %s\n", $mysqli->errno, $mysqli->error);
  50. }
  51. $tmp = $res->fetch_assoc();
  52. if (1 != $tmp['num']) {
  53. printf("[010] Expecting 1 row in table test, found %d rows\n", $tmp['num']);
  54. }
  55. $res->free();
  56. if (!$mysqli->query('DROP TABLE IF EXISTS test')) {
  57. printf("[011] [%d] %s\n", $mysqli->errno, $mysqli->error);
  58. }
  59. if (!$mysqli->commit(0 , "tx_name0123")) {
  60. printf("[012] [%d] %s\n", $mysqli->errno, $mysqli->error);
  61. }
  62. if (!$mysqli->commit(0 , "*/ nonsense")) {
  63. printf("[013] [%d] %s\n", $mysqli->errno, $mysqli->error);
  64. }
  65. if (!$mysqli->commit(0 , "tx_name ulf вендел")) {
  66. printf("[014] [%d] %s\n", $mysqli->errno, $mysqli->error);
  67. }
  68. if (!$mysqli->commit(0 , "tx_name \t\n\r\b")) {
  69. printf("[015] [%d] %s\n", $mysqli->errno, $mysqli->error);
  70. }
  71. if (!$mysqli->commit(MYSQLI_TRANS_COR_AND_CHAIN | MYSQLI_TRANS_COR_NO_RELEASE , "tx_name")) {
  72. printf("[016] [%d] %s\n", $mysqli->errno, $mysqli->error);
  73. }
  74. $mysqli->close();
  75. if (NULL !== ($tmp = @$mysqli->commit())) {
  76. printf("[017] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  77. }
  78. print "done!";
  79. ?>
  80. --CLEAN--
  81. <?php
  82. require_once("clean_table.inc");
  83. ?>
  84. --EXPECTF--
  85. Warning: mysqli::commit(): Transaction name truncated. Must be only [0-9A-Za-z\-_=]+ in %s on line %d
  86. Warning: mysqli::commit(): Transaction name truncated. Must be only [0-9A-Za-z\-_=]+ in %s on line %d
  87. Warning: mysqli::commit(): Transaction name truncated. Must be only [0-9A-Za-z\-_=]+ in %s on line %d
  88. done!