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_real_escape_string_nobackslash.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_real_escape_string_nobackslash.phpt')
-rw-r--r-- | ext/mysqli/tests/mysqli_real_escape_string_nobackslash.phpt | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/ext/mysqli/tests/mysqli_real_escape_string_nobackslash.phpt b/ext/mysqli/tests/mysqli_real_escape_string_nobackslash.phpt new file mode 100644 index 0000000..db1acb4 --- /dev/null +++ b/ext/mysqli/tests/mysqli_real_escape_string_nobackslash.phpt @@ -0,0 +1,65 @@ +--TEST-- +mysqli_real_escape_string() - SQL Mode NO_BACKSLASH_ESCAPE +--SKIPIF-- +<?php +require_once('skipif.inc'); +require_once('skipifemb.inc'); +require_once('skipifconnectfailure.inc'); +?> +--FILE-- +<?php + require_once("connect.inc"); + require_once('table.inc'); + + if (!mysqli_query($link, 'SET @@sql_mode="NO_BACKSLASH_ESCAPES"')) + printf("[001] Cannot set NO_BACKSLASH_ESCAPES, [%d] %s\n", mysqli_errno($link), mysqli_error($link)); + + if ('\\' !== ($tmp = mysqli_real_escape_string($link, '\\'))) + printf("[002] Expecting \\, got %s\n", $tmp); + + if ('"' !== ($tmp = mysqli_real_escape_string($link, '"'))) + printf("[003] Expecting \", got %s\n", $tmp); + + if ("''" !== ($tmp = mysqli_real_escape_string($link, "'"))) + printf("[004] Expecting '', got %s\n", $tmp); + + if ("\n" !== ($tmp = mysqli_real_escape_string($link, "\n"))) + printf("[005] Expecting \\n, got %s\n", $tmp); + + if ("\r" !== ($tmp = mysqli_real_escape_string($link, "\r"))) + printf("[006] Expecting \\r, got %s\n", $tmp); + + assert("foo" . chr(0) . "bar" === "foo" . chr(0) . "bar"); + if ("foo" . chr(0) . "bar" !== ($tmp = mysqli_real_escape_string($link, "foo" . chr(0) . "bar"))) + printf("[007] Expecting %s, got %s\n", "foo" . chr(0) . "bar", $tmp); + + if (!mysqli_query($link, sprintf('INSERT INTO test(id, label) VALUES (100, "%s")', + mysqli_real_escape_string($link, "\\")))) + printf("[009] Cannot INSERT, [%d] %s\n", mysqli_errno($link), mysqli_error($link)); + + if (!($res = mysqli_query($link, 'SELECT label FROM test WHERE id = 100')) || + !($row = mysqli_fetch_assoc($res))) + printf("[010] [%d] %s\n", mysqli_errno($link), mysqli_error($link)); + + var_dump($row); + mysqli_free_result($res); + + if (!mysqli_query($link, 'SET @@sql_mode=""')) + printf("[011] Cannot disable NO_BACKSLASH_ESCAPES, [%d] %s\n", mysqli_errno($link), mysqli_error($link)); + + if ('\\\\' !== ($tmp = mysqli_real_escape_string($link, '\\'))) + printf("[012] Expecting \\, got %s\n", $tmp); + + if ("foo\\0bar" !== ($tmp = mysqli_real_escape_string($link, "foo" . chr(0) . "bar"))) + printf("[013] Expecting %s, got %s\n", "foo" . chr(0) . "bar", $tmp); + + mysqli_close($link); + + print "done!"; +?> +--EXPECTF-- +array(1) { + [%u|b%"label"]=> + %unicode|string%(1) "\" +} +done!
\ No newline at end of file |