php-src/ext/standard/tests/file/filetype_error.phpt

40 lines
1001 B
Plaintext
Raw Normal View History

--TEST--
Test filetype() function: Error conditions
--FILE--
<?php
/*
Prototype: string filetype ( string $filename );
Description: Returns the type of the file. Possible values are fifo, char,
dir, block, link, file, and unknown.
*/
2007-11-05 17:43:21 +00:00
echo "*** Testing error conditions ***";
/* non-existing file or dir */
print( filetype("/no/such/file/dir") );
/* unknown type */
print( filetype("string") );
print( filetype(100) );
/* No.of args less than expected */
print( filetype() );
/* No.of args greater than expected */
print( filetype("file", "file") );
echo "\n*** Done ***\n";
?>
--EXPECTF--
*** Testing error conditions ***
Warning: filetype(): Lstat failed for /no/such/file/dir in %s on line %d
Warning: filetype(): Lstat failed for string in %s on line %d
Warning: filetype(): Lstat failed for 100 in %s on line %d
2007-11-05 17:43:21 +00:00
Warning: filetype() expects exactly 1 parameter, 0 given in %s on line %d
2007-11-05 17:43:21 +00:00
Warning: filetype() expects exactly 1 parameter, 2 given in %s on line %d
*** Done ***