diff options
Diffstat (limited to 'ext/mysqli/tests/mysqli_set_local_infile_handler_negative_len.phpt')
-rw-r--r-- | ext/mysqli/tests/mysqli_set_local_infile_handler_negative_len.phpt | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/ext/mysqli/tests/mysqli_set_local_infile_handler_negative_len.phpt b/ext/mysqli/tests/mysqli_set_local_infile_handler_negative_len.phpt new file mode 100644 index 0000000..16e38c5 --- /dev/null +++ b/ext/mysqli/tests/mysqli_set_local_infile_handler_negative_len.phpt @@ -0,0 +1,58 @@ +--TEST-- +mysqli_set_local_infile_handler() - negative return value/buflen to indicate an error +--SKIPIF-- +<?php +require_once('skipif.inc'); +require_once('skipifemb.inc'); +require_once('skipifconnectfailure.inc'); + +if (!function_exists('mysqli_set_local_infile_handler')) + die("skip - function not available."); + +require_once('connect.inc'); +if (!$TEST_EXPERIMENTAL) + die("skip - experimental (= unsupported) feature"); + +if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) + die("skip Cannot connect to MySQL"); + +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'); + require_once('local_infile_tools.inc'); + require_once('table.inc'); + + function callback_negative_len($fp, &$buffer, $buflen, &$error) { + static $invocation = 0; + + printf("Callback: %d\n", $invocation); + $buffer = fread($fp, $buflen); + + $error = "negative length means error"; + return -1; + } + + $file = create_standard_csv(1); + $expected = array(); + try_handler(20, $link, $file, 'callback_negative_len', $expected); + + mysqli_close($link); + print "done!"; +?> +--CLEAN-- +<?php + require_once("clean_table.inc"); +?> +--EXPECTF-- +Callback set to 'callback_negative_len' +Callback: 0 +[022] LOAD DATA failed, [2000] negative length means error +done!
\ No newline at end of file |