From 87632ef25c0ef51483b410921deedc246f80ff2d Mon Sep 17 00:00:00 2001 From: Raghubansh Kumar Date: Thu, 6 Sep 2007 04:02:56 +0000 Subject: [PATCH] New testcases for addslashes() function --- .../tests/strings/addslashes_basic.phpt | 47 +++ .../tests/strings/addslashes_error.phpt | 59 ++++ .../tests/strings/addslashes_variation1.phpt | 242 ++++++++++++++ .../tests/strings/addslashes_variation2.phpt | 302 ++++++++++++++++++ 4 files changed, 650 insertions(+) create mode 100644 ext/standard/tests/strings/addslashes_basic.phpt create mode 100644 ext/standard/tests/strings/addslashes_error.phpt create mode 100644 ext/standard/tests/strings/addslashes_variation1.phpt create mode 100644 ext/standard/tests/strings/addslashes_variation2.phpt diff --git a/ext/standard/tests/strings/addslashes_basic.phpt b/ext/standard/tests/strings/addslashes_basic.phpt new file mode 100644 index 00000000000..dac4c4b2cb8 --- /dev/null +++ b/ext/standard/tests/strings/addslashes_basic.phpt @@ -0,0 +1,47 @@ +--TEST-- +Test addslashes() function : basic functionality +--INI-- +--FILE-- + +--EXPECTF-- +*** Testing addslashes() : basic functionality *** +string(16) "How\'s everybody" +string(17) "Are you \"JOHN\"?" +string(19) "c:\\php\\addslashes" +string(12) "hello\0world" +Done + +--UEXPECTF-- +*** Testing addslashes() : basic functionality *** +unicode(16) "How\'s everybody" +unicode(17) "Are you \"JOHN\"?" +unicode(19) "c:\\php\\addslashes" +unicode(12) "hello\0world" +Done \ No newline at end of file diff --git a/ext/standard/tests/strings/addslashes_error.phpt b/ext/standard/tests/strings/addslashes_error.phpt new file mode 100644 index 00000000000..309a4b72f8b --- /dev/null +++ b/ext/standard/tests/strings/addslashes_error.phpt @@ -0,0 +1,59 @@ +--TEST-- +Test addslashes() function : error conditions +--INI-- +--FILE-- + +--EXPECTF-- +*** Testing addslashes() : error conditions *** + +-- Testing addslashes() function with Zero arguments -- + +Warning: Wrong parameter count for addslashes() in %s on line %d +NULL + +-- Testing addslashes() function with more than expected no. of arguments -- + +Warning: Wrong parameter count for addslashes() in %s on line %d +NULL +string(15) ""hello"\"world"" +Done + +--UEXPECTF-- +*** Testing addslashes() : error conditions *** + +-- Testing addslashes() function with Zero arguments -- + +Warning: Wrong parameter count for addslashes() in %s on line %d +NULL + +-- Testing addslashes() function with more than expected no. of arguments -- + +Warning: Wrong parameter count for addslashes() in %s on line %d +NULL +unicode(15) ""hello"\"world"" +Done diff --git a/ext/standard/tests/strings/addslashes_variation1.phpt b/ext/standard/tests/strings/addslashes_variation1.phpt new file mode 100644 index 00000000000..6ae915b2979 --- /dev/null +++ b/ext/standard/tests/strings/addslashes_variation1.phpt @@ -0,0 +1,242 @@ +--TEST-- +Test addslashes() function : usage variations - non-string type argument +--INI-- +--FILE-- + 'red', 'item' => 'pen'), + + // boolean values + true, + false, + TRUE, + FALSE, + + // empty string + "", + '', + + // undefined variable + $undefined_var, + + // unset variable + $unset_var, + + // objects + new sample(), + + // resource + $file_handle, + + NULL, + null +); + + +// loop through each element of the array and check the working of addslashes() +// when $str arugment is supplied with different values +echo "\n--- Testing addslashes() by supplying different values for 'str' argument ---\n"; +$counter = 1; +for($index = 0; $index < count($values); $index ++) { + echo "-- Iteration $counter --\n"; + $str = $values [$index]; + + var_dump( addslashes($str) ); + + $counter ++; +} + +// closing the file +fclose($file_handle); + +echo "Done\n"; +?> +--EXPECTF-- +*** Testing addslashes() : with non-string type argument *** + +Notice: Undefined variable: undefined_var in %s on line %d + +Notice: Undefined variable: unset_var in %s on line %d + +--- Testing addslashes() by supplying different values for 'str' argument --- +-- Iteration 1 -- +string(1) "0" +-- Iteration 2 -- +string(1) "1" +-- Iteration 3 -- +string(5) "12345" +-- Iteration 4 -- +string(5) "-2345" +-- Iteration 5 -- +string(4) "10.5" +-- Iteration 6 -- +string(5) "-10.5" +-- Iteration 7 -- +string(12) "105000000000" +-- Iteration 8 -- +string(7) "1.06E-9" +-- Iteration 9 -- +string(3) "0.5" +-- Iteration 10 -- + +Notice: Array to string conversion in %s on line %d +string(5) "Array" +-- Iteration 11 -- + +Notice: Array to string conversion in %s on line %d +string(5) "Array" +-- Iteration 12 -- + +Notice: Array to string conversion in %s on line %d +string(5) "Array" +-- Iteration 13 -- + +Notice: Array to string conversion in %s on line %d +string(5) "Array" +-- Iteration 14 -- + +Notice: Array to string conversion in %s on line %d +string(5) "Array" +-- Iteration 15 -- +string(1) "1" +-- Iteration 16 -- +string(0) "" +-- Iteration 17 -- +string(1) "1" +-- Iteration 18 -- +string(0) "" +-- Iteration 19 -- +string(0) "" +-- Iteration 20 -- +string(0) "" +-- Iteration 21 -- +string(0) "" +-- Iteration 22 -- +string(0) "" +-- Iteration 23 -- +string(7) "obj\'ct" +-- Iteration 24 -- +string(14) "Resource id #%d" +-- Iteration 25 -- +string(0) "" +-- Iteration 26 -- +string(0) "" +Done + +--UEXPECTF-- +*** Testing addslashes() : with non-string type argument *** + +Notice: Undefined variable: undefined_var in %s on line %d + +Notice: Undefined variable: unset_var in %s on line %d + +--- Testing addslashes() by supplying different values for 'str' argument --- +-- Iteration 1 -- +unicode(1) "0" +-- Iteration 2 -- +unicode(1) "1" +-- Iteration 3 -- +unicode(5) "12345" +-- Iteration 4 -- +unicode(5) "-2345" +-- Iteration 5 -- +unicode(4) "10.5" +-- Iteration 6 -- +unicode(5) "-10.5" +-- Iteration 7 -- +unicode(12) "105000000000" +-- Iteration 8 -- +unicode(7) "1.06E-9" +-- Iteration 9 -- +unicode(3) "0.5" +-- Iteration 10 -- + +Notice: Array to string conversion in %s on line %d +unicode(5) "Array" +-- Iteration 11 -- + +Notice: Array to string conversion in %s on line %d +unicode(5) "Array" +-- Iteration 12 -- + +Notice: Array to string conversion in %s on line %d +unicode(5) "Array" +-- Iteration 13 -- + +Notice: Array to string conversion in %s on line %d +unicode(5) "Array" +-- Iteration 14 -- + +Notice: Array to string conversion in %s on line %d +unicode(5) "Array" +-- Iteration 15 -- +unicode(1) "1" +-- Iteration 16 -- +unicode(0) "" +-- Iteration 17 -- +unicode(1) "1" +-- Iteration 18 -- +unicode(0) "" +-- Iteration 19 -- +unicode(0) "" +-- Iteration 20 -- +unicode(0) "" +-- Iteration 21 -- +unicode(0) "" +-- Iteration 22 -- +unicode(0) "" +-- Iteration 23 -- +unicode(7) "obj\'ct" +-- Iteration 24 -- +unicode(14) "Resource id #%d" +-- Iteration 25 -- +unicode(0) "" +-- Iteration 26 -- +unicode(0) "" +Done diff --git a/ext/standard/tests/strings/addslashes_variation2.phpt b/ext/standard/tests/strings/addslashes_variation2.phpt new file mode 100644 index 00000000000..13a4bf637c7 --- /dev/null +++ b/ext/standard/tests/strings/addslashes_variation2.phpt @@ -0,0 +1,302 @@ +--TEST-- +Test addslashes() function : usage variations - strings with characters to be backslashed +--INI-- +--FILE-- +', + "hello\x00world", + + // heredoc strings + $heredoc_string, + $heredoc_null_string + ); + +$count = 1; +// looping to test for all strings in $str_array +foreach( $str_array as $str ) { + echo "\n-- Iteration $count --\n"; + var_dump( addslashes($str) ); + $count ++; +} + +echo "Done\n"; +?> +--EXPECTF-- +*** Testing addslashes() : with various strings containing characters to be backslashed *** + +-- Iteration 1 -- +string(11) "Hello world" + +-- Iteration 2 -- +string(18) "how\'re you doing?" + +-- Iteration 3 -- +string(30) "don\'t disturb u\'r neighbours" + +-- Iteration 4 -- +string(34) "don\'t disturb u\'r neighbours\'\'" + +-- Iteration 5 -- +string(0) "" + +-- Iteration 6 -- +string(2) "\'" + +-- Iteration 7 -- +string(2) "\'" + +-- Iteration 8 -- +string(32) "he said, \"he will be on leave\"" + +-- Iteration 9 -- +string(34) "he said, \"\"he will be on leave\"" + +-- Iteration 10 -- +string(15) "\"\"\"PHP\"\"\"" + +-- Iteration 11 -- +string(0) "" + +-- Iteration 12 -- +string(2) "\"" + +-- Iteration 13 -- +string(2) "\"" + +-- Iteration 14 -- +string(7) "hello\"" + +-- Iteration 15 -- +string(26) "Is your name Ram\\Krishna?" + +-- Iteration 16 -- +string(9) "\\0.0.0.0" + +-- Iteration 17 -- +string(29) "c:\\php\\testcase\\addslashes" + +-- Iteration 18 -- +string(2) "\\" + +-- Iteration 19 -- +string(12) "hello\0world" + +-- Iteration 20 -- +string(9) "\0hello\0" + +-- Iteration 21 -- +string(9) "\0\0hello" + +-- Iteration 22 -- +string(2) "\0" + +-- Iteration 23 -- +string(13) "\'\\0.0.0.0\'" + +-- Iteration 24 -- +string(15) "\'\\0.0.0.0\'\0" + +-- Iteration 25 -- +string(15) "\0\'c:\\php\\\'" + +-- Iteration 26 -- +string(13) "\"\\0.0.0.0\"" + +-- Iteration 27 -- +string(17) "\"c:\\php\\\"\0\'" + +-- Iteration 28 -- +string(22) "\"hello\"\'world\'\0//" + +-- Iteration 29 -- +string(18) "0xABCDEF0123456789" + +-- Iteration 30 -- +string(2) "\0" + +-- Iteration 31 -- +string(18) "!@#$%&*@$%#&/;:,<>" + +-- Iteration 32 -- +string(12) "hello\0world" + +-- Iteration 33 -- +string(73) "This is line 1 of \'heredoc\' string +This is line 2 of \"heredoc\" string" + +-- Iteration 34 -- +string(0) "" +Done + +--UEXPECTF-- +*** Testing addslashes() : with various strings containing characters to be backslashed *** + +-- Iteration 1 -- +unicode(11) "Hello world" + +-- Iteration 2 -- +unicode(18) "how\'re you doing?" + +-- Iteration 3 -- +unicode(30) "don\'t disturb u\'r neighbours" + +-- Iteration 4 -- +unicode(34) "don\'t disturb u\'r neighbours\'\'" + +-- Iteration 5 -- +unicode(0) "" + +-- Iteration 6 -- +unicode(2) "\'" + +-- Iteration 7 -- +unicode(2) "\'" + +-- Iteration 8 -- +unicode(32) "he said, \"he will be on leave\"" + +-- Iteration 9 -- +unicode(34) "he said, \"\"he will be on leave\"" + +-- Iteration 10 -- +unicode(15) "\"\"\"PHP\"\"\"" + +-- Iteration 11 -- +unicode(0) "" + +-- Iteration 12 -- +unicode(2) "\"" + +-- Iteration 13 -- +unicode(2) "\"" + +-- Iteration 14 -- +unicode(7) "hello\"" + +-- Iteration 15 -- +unicode(26) "Is your name Ram\\Krishna?" + +-- Iteration 16 -- +unicode(9) "\\0.0.0.0" + +-- Iteration 17 -- +unicode(29) "c:\\php\\testcase\\addslashes" + +-- Iteration 18 -- +unicode(2) "\\" + +-- Iteration 19 -- +unicode(12) "hello\0world" + +-- Iteration 20 -- +unicode(9) "\0hello\0" + +-- Iteration 21 -- +unicode(9) "\0\0hello" + +-- Iteration 22 -- +unicode(2) "\0" + +-- Iteration 23 -- +unicode(13) "\'\\0.0.0.0\'" + +-- Iteration 24 -- +unicode(15) "\'\\0.0.0.0\'\0" + +-- Iteration 25 -- +unicode(15) "\0\'c:\\php\\\'" + +-- Iteration 26 -- +unicode(13) "\"\\0.0.0.0\"" + +-- Iteration 27 -- +unicode(17) "\"c:\\php\\\"\0\'" + +-- Iteration 28 -- +unicode(22) "\"hello\"\'world\'\0//" + +-- Iteration 29 -- +unicode(18) "0xABCDEF0123456789" + +-- Iteration 30 -- +unicode(2) "\0" + +-- Iteration 31 -- +unicode(18) "!@#$%&*@$%#&/;:,<>" + +-- Iteration 32 -- +unicode(12) "hello\0world" + +-- Iteration 33 -- +unicode(73) "This is line 1 of \'heredoc\' string +This is line 2 of \"heredoc\" string" + +-- Iteration 34 -- +unicode(0) "" +Done \ No newline at end of file