diff options
author | Lorry Tar Creator <lorry-tar-importer@baserock.org> | 2013-03-14 05:42:27 +0000 |
---|---|---|
committer | <> | 2013-04-03 16:25:08 +0000 |
commit | c4dd7a1a684490673e25aaf4fabec5df138854c4 (patch) | |
tree | 4d57c44caae4480efff02b90b9be86f44bf25409 /ext/mysqli/tests/mysqli_set_local_infile_handler_close_link.phpt | |
download | php2-master.tar.gz |
Imported from /home/lorry/working-area/delta_php2/php-5.4.13.tar.bz2.HEADphp-5.4.13master
Diffstat (limited to 'ext/mysqli/tests/mysqli_set_local_infile_handler_close_link.phpt')
-rw-r--r-- | ext/mysqli/tests/mysqli_set_local_infile_handler_close_link.phpt | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/ext/mysqli/tests/mysqli_set_local_infile_handler_close_link.phpt b/ext/mysqli/tests/mysqli_set_local_infile_handler_close_link.phpt new file mode 100644 index 0000000..408bb29 --- /dev/null +++ b/ext/mysqli/tests/mysqli_set_local_infile_handler_close_link.phpt @@ -0,0 +1,61 @@ +--TEST-- +mysqli_set_local_infile_handler() - close database link +--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("table.inc"); + require_once('local_infile_tools.inc'); + + function callback_close_link($fp, &$buffer, $buflen, &$error) { + global $link; + static $invocation = 0; + + printf("Callback: %d\n", $invocation++); + flush(); + if (is_object($link)) + mysqli_close($link); + + $buffer = "1;'a';\n"; + if ($invocation > 10) + return 0; + + return strlen($buffer); + } + + $file = create_standard_csv(1); + $expected = array(array('id' => 1, 'label' => 'a')); + try_handler(20, $link, $file, 'callback_close_link', $expected); + mysqli_close($link); + print "done!"; +?> +--CLEAN-- +<?php + require_once("clean_table.inc"); +?> +--EXPECTF-- +Callback set to 'callback_close_link' +Callback: 0 +done!
\ No newline at end of file |