1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
--TEST--
Test escapeshellarg() function : error conditions - wrong numbers of parameters
--FILE--
<?php
/* Prototype : string escapeshellarg ( string $arg )
* Description: Escape a string to be used as a shell argument.
* Source code: ext/standard/exec.c
*/
/*
* Pass an incorrect number of arguments to escapeshellarg() to test behaviour
*/
echo "*** Testing escapeshellarg() : error conditions ***\n";
echo "\n-- Testing escapeshellarg() function with no arguments --\n";
var_dump( escapeshellarg() );
echo "\n-- Testing escapeshellarg() function with more than expected no. of arguments --\n";
$arg = "Mr O'Neil";
$extra_arg = 10;
var_dump( escapeshellarg($arg, $extra_arg) );
echo "\n-- Testing escapeshellarg() function with a object supplied for argument --\n";
class classA
{
}
$arg = new classA();
var_dump( escapeshellarg($arg));
echo "\n-- Testing escapeshellarg() function with a resource supplied for argument --\n";
$fp = fopen(__FILE__, "r");
var_dump( escapeshellarg($fp));
fclose($fp);
echo "\n-- Testing escapeshellarg() function with a array supplied for argument --\n";
$arg = array(1,2,3);
var_dump( escapeshellarg($arg));
?>
===Done===
--EXPECTF--
*** Testing escapeshellarg() : error conditions ***
-- Testing escapeshellarg() function with no arguments --
Warning: escapeshellarg() expects exactly 1 parameter, 0 given in %s on line %d
NULL
-- Testing escapeshellarg() function with more than expected no. of arguments --
Warning: escapeshellarg() expects exactly 1 parameter, 2 given in %s on line %d
NULL
-- Testing escapeshellarg() function with a object supplied for argument --
Warning: escapeshellarg() expects parameter 1 to be string, object given in %s on line %d
NULL
-- Testing escapeshellarg() function with a resource supplied for argument --
Warning: escapeshellarg() expects parameter 1 to be string, resource given in %s on line %d
NULL
-- Testing escapeshellarg() function with a array supplied for argument --
Warning: escapeshellarg() expects parameter 1 to be string, array given in %s on line %d
NULL
===Done===
|