diff options
author | Dharman <tekiela246@gmail.com> | 2020-12-02 23:24:51 +0000 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-12-03 10:42:46 +0100 |
commit | 261faa62da800a1d22fa39b69eda4c74e5c03e47 (patch) | |
tree | bf26e893d4f7762920827794e4a23b30ebd7d23a | |
parent | 53f7bddbeb073756586ef5f34fbeda1533b71034 (diff) | |
download | php-git-261faa62da800a1d22fa39b69eda4c74e5c03e47.tar.gz |
Remove PHP 5 mysqli tests
These tests all require functions that no longer exist.
-rw-r--r-- | ext/mysqli/tests/061.phpt | 80 | ||||
-rw-r--r-- | ext/mysqli/tests/mysqli_disable_reads_from_master.phpt | 46 | ||||
-rw-r--r-- | ext/mysqli/tests/mysqli_enable_reads_from_master.phpt | 46 | ||||
-rw-r--r-- | ext/mysqli/tests/mysqli_send_query.phpt | 51 |
4 files changed, 0 insertions, 223 deletions
diff --git a/ext/mysqli/tests/061.phpt b/ext/mysqli/tests/061.phpt deleted file mode 100644 index 76a40c704e..0000000000 --- a/ext/mysqli/tests/061.phpt +++ /dev/null @@ -1,80 +0,0 @@ ---TEST-- -local infile handler ---SKIPIF-- -<?php -require_once('skipif.inc'); -require_once('skipifconnectfailure.inc'); -if (!function_exists('mysqli_set_local_infile_handler')) - die("skip - function not available."); - -$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket); -if (!$link) - die(sprintf("skip Can't connect [%d] %s", mysqli_connect_errno(), mysqli_connect_error())); - -include_once("local_infile_tools.inc"); -if ($msg = check_local_infile_support($link, $engine)) - die(sprintf("skip %s, [%d] %s", $msg, $link->errno, $link->error)); - -mysqli_close($link); -?> ---INI-- -mysqli.allow_local_infile=1 ---FILE-- -<?php - require_once("connect.inc"); - - function my_read($fp, &$buffer, $buflen, &$error) { - $buffer = strrev(fread($fp, $buflen)); - return(strlen($buffer)); - } - - /*** test mysqli_connect 127.0.0.1 ***/ - $link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket); - - /* create temporary file */ - $filename = __DIR__ . "061.csv"; - $fp = fopen($filename, "w"); - fwrite($fp, "foo;bar"); - fclose($fp); - - if (!mysqli_query($link,"DROP TABLE IF EXISTS t_061")) - printf("Cannot drop table: [%d] %s\n", mysqli_errno($link), mysqli_error($link)); - if (!mysqli_query($link,"CREATE TABLE t_061 (c1 varchar(10), c2 varchar(10))")) - printf("Cannot create table: [%d] %s\n", mysqli_errno($link), mysqli_error($link)); - - if (!mysqli_query($link, sprintf("LOAD DATA LOCAL INFILE '%s' INTO TABLE t_061 FIELDS TERMINATED BY ';'", mysqli_real_escape_string($link, $filename)))) - printf("Cannot load data: [%d] %s\n", mysqli_errno($link), mysqli_error($link)); - - mysqli_set_local_infile_handler($link, "my_read"); - if (!mysqli_query($link, sprintf("LOAD DATA LOCAL INFILE '%s' INTO TABLE t_061 FIELDS TERMINATED BY ';'", mysqli_real_escape_string($link, $filename)))) - printf("Cannot load data using infile handler: [%d] %s\n", mysqli_errno($link), mysqli_error($link)); - - if ($result = mysqli_query($link, "SELECT c1,c2 FROM t_061")) { - while (($row = mysqli_fetch_row($result))) { - printf("%s-%s\n", $row[0], $row[1]); - printf("%s-%s\n", gettype($row[0]), gettype($row[1])); - } - mysqli_free_result($result); - } - - mysqli_close($link); - unlink($filename); - print "done!"; -?> ---CLEAN-- -<?php -require_once("connect.inc"); -if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) - printf("[c001] [%d] %s\n", mysqli_connect_errno(), mysqli_connect_error()); - -if (!mysqli_query($link, "DROP TABLE IF EXISTS t_061")) - printf("[c002] Cannot drop table, [%d] %s\n", mysqli_errno($link), mysqli_error($link)); - -mysqli_close($link); -?> ---EXPECT-- -foo-bar -string-string -rab-oof -string-string -done! diff --git a/ext/mysqli/tests/mysqli_disable_reads_from_master.phpt b/ext/mysqli/tests/mysqli_disable_reads_from_master.phpt deleted file mode 100644 index 54edb67a07..0000000000 --- a/ext/mysqli/tests/mysqli_disable_reads_from_master.phpt +++ /dev/null @@ -1,46 +0,0 @@ ---TEST-- -mysqli_disable_reads_from_master() ---SKIPIF-- -<?php -require_once('skipif.inc'); -require_once('skipifconnectfailure.inc'); - -if (!function_exists('mysqli_disable_reads_from_master')) { - die("skip mysqli_disable_reads_from_master() not available"); -} -?> ---FILE-- -<?php - require_once("connect.inc"); - - $tmp = NULL; - $link = NULL; - - if (NULL !== ($tmp = @mysqli_disable_reads_from_master())) - printf("[001] Expecting NULL/NULL, got %s/%s\n", gettype($tmp), $tmp); - - if (NULL !== ($tmp = @mysqli_disable_reads_from_master($link))) - printf("[002] Expecting NULL/NULL, got %s/%s\n", gettype($tmp), $tmp); - - if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) { - printf("[003] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n", - $host, $user, $db, $port, $socket); - } - - if (!is_bool($tmp = mysqli_disable_reads_from_master($link))) - printf("[004] Expecting boolean/[true|false] value, got %s/%s\n", gettype($tmp), $tmp); - - mysqli_close($link); - - if (NULL !== ($tmp = mysqli_disable_reads_from_master($link))) - printf("[005] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp); - - print "done!"; -?> ---CLEAN-- -<?php - require_once("clean_table.inc"); -?> ---EXPECTF-- -Warning: mysqli_disable_reads_from_master(): mysqli object is already closed in %s on line %d -done! diff --git a/ext/mysqli/tests/mysqli_enable_reads_from_master.phpt b/ext/mysqli/tests/mysqli_enable_reads_from_master.phpt deleted file mode 100644 index 9c74b9592c..0000000000 --- a/ext/mysqli/tests/mysqli_enable_reads_from_master.phpt +++ /dev/null @@ -1,46 +0,0 @@ ---TEST-- -mysqli_enable_reads_from_master() ---SKIPIF-- -<?php -require_once('skipif.inc'); -require_once('skipifconnectfailure.inc'); - -if (!function_exists('mysqli_enable_reads_from_master')) { - die("skip function mysqli_enable_reads_from_master() not available\n"); -} -?> ---FILE-- -<?php - require_once("connect.inc"); - - $tmp = NULL; - $link = NULL; - - if (NULL !== ($tmp = @mysqli_enable_reads_from_master())) - printf("[001] Expecting NULL/NULL, got %s/%s\n", gettype($tmp), $tmp); - - if (NULL !== ($tmp = @mysqli_enable_reads_from_master($link))) - printf("[002] Expecting NULL/NULL, got %s/%s\n", gettype($tmp), $tmp); - - if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) { - printf("[003] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n", - $host, $user, $db, $port, $socket); - } - - if (!is_bool($tmp = mysqli_enable_reads_from_master($link))) - printf("[004] Expecting boolean/[true|false] value, got %s/%s\n", gettype($tmp), $tmp); - - try { - mysqli_close($link); - } catch (Error $exception) { - echo $exception->getMessage() . "\n"; - } - - if (NULL !== ($tmp = mysqli_enable_reads_from_master($link))) - printf("[005] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp); - - print "done!"; -?> ---EXPECT-- -mysqli object is already closed -done! diff --git a/ext/mysqli/tests/mysqli_send_query.phpt b/ext/mysqli/tests/mysqli_send_query.phpt deleted file mode 100644 index 0289e7733e..0000000000 --- a/ext/mysqli/tests/mysqli_send_query.phpt +++ /dev/null @@ -1,51 +0,0 @@ ---TEST-- -mysqli_send_query() ---SKIPIF-- -<?php -require_once('skipif.inc'); -require_once('skipifconnectfailure.inc'); -if (!function_exists('mysqli_send_query')) { - die("skip mysqli_send_query() not available"); -} -require_once('connect.inc'); -if (!$TEST_EXPERIMENTAL) - die("skip - experimental (= unsupported) feature"); -?> ---FILE-- -<?php - /* NOTE: tests is a stub, but function is deprecated, as long as it does not crash when invoking it... */ - require_once("connect.inc"); - - $tmp = NULL; - $link = NULL; - - if (NULL !== ($tmp = @mysqli_send_query())) - printf("[001] Expecting NULL/NULL, got %s/%s\n", gettype($tmp), $tmp); - - if (NULL !== ($tmp = @mysqli_send_query($link))) - printf("[002] Expecting NULL/NULL, got %s/%s\n", gettype($tmp), $tmp); - - if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) { - printf("[003] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n", - $host, $user, $db, $port, $socket); - } - - $query = array(); - if (NULL !== ($tmp = @mysqli_send_query($link, $query))) - printf("[004] Expecting NULL/NULL, got %s/%s\n", gettype($tmp), $tmp); - - if (!is_int($tmp = mysqli_send_query($link, 'SELECT 1'))) - printf("[005] Expecting integer/any value, got %s/%s\n", gettype($tmp), $tmp); - - mysqli_close($link); - - try { - mysqli_send_query($link, 'SELECT 1'); - } catch (Error $exception) { - echo $exception->getMessage() . "\n"; - } - print "done!"; -?> ---EXPECT-- -mysqli object is already closed -done! |