--TEST--
Test fileperms(), chmod() functions: error conditions
--SKIPIF--
<?php
if (substr(PHP_OS03) == 'WIN') {
    die(
'skip Not on Windows');
}
// Skip if being run by root
$filename dirname(__FILE__)."/006_root_check.tmp";
$fp fopen($filename'w');
fclose($fp);
if(
fileowner($filename) == 0) {
        
unlink ($filename);
        die(
'skip cannot be run as root');
}

unlink($filename);

?>
--FILE--
<?php
/*
  Prototype: int fileperms ( string $filename )
  Description: Returns the permissions on the file, or FALSE in case of an error

  Prototype: bool chmod ( string $filename, int $mode )
  Description: Attempts to change the mode of the file specified by 
    filename to that given in mode
*/

echo "*** Testing error conditions for fileperms(), chmod() ***\n";

/* With standard files and dirs */
var_dumpchmod("/etc/passwd"0777) );
printf("%o"fileperms("/etc/passwd") );
echo 
"\n";
clearstatcache();

var_dumpchmod("/etc"0777) );
printf("%o"fileperms("/etc") );
echo 
"\n";
clearstatcache();

/* With non-existing file or dir */
var_dumpchmod("/no/such/file/dir"0777) );
var_dumpfileperms("/no/such/file/dir") );
echo 
"\n";

/* With args less than expected */
$fp fopen(dirname(__FILE__)."/006_error.tmp""w");
fclose($fp);
var_dumpchmod(dirname(__FILE__)."/006_error.tmp") );
var_dumpchmod("nofile") );
var_dumpchmod() );
var_dumpfileperms() );

/* With args greater than expected */
var_dumpchmod(dirname(__FILE__)."/006_error.tmp"0755TRUE) );
var_dumpfileperms(dirname(__FILE__)."/006_error.tmp"0777) );
var_dumpfileperms("nofile"0777) );

echo 
"\n*** Done ***\n";
?>
--CLEAN--
<?php
unlink
dirname(__FILE__)."/006_error.tmp");
?>
--EXPECTF--
*** Testing error conditions for fileperms(), chmod() ***

Warning: chmod(): %s in %s on line %d
bool(false)
100%d44

Warning: chmod(): %s in %s on line %d
bool(false)
40755

Warning: chmod(): No such file or directory in %s on line %d
bool(false)

Warning: fileperms(): stat failed for /no/such/file/dir in %s on line %d
bool(false)


Warning: chmod() expects exactly 2 parameters, 1 given in %s on line %d
NULL

Warning: chmod() expects exactly 2 parameters, 1 given in %s on line %d
NULL

Warning: chmod() expects exactly 2 parameters, 0 given in %s on line %d
NULL

Warning: fileperms() expects exactly 1 parameter, 0 given in %s on line %d
NULL

Warning: chmod() expects exactly 2 parameters, 3 given in %s on line %d
NULL

Warning: fileperms() expects exactly 1 parameter, 2 given in %s on line %d
NULL

Warning: fileperms() expects exactly 1 parameter, 2 given in %s on line %d
NULL

*** Done ***