1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 02:33:17 +02:00
Files
archived-php-src/ext/fileinfo/tests/finfo_file_basic.phpt
T
Fabien Villepinte a555cc0b3d Clean DONE tags from tests
Remove most of the `===DONE===` tags and its variations.
Keep `===DONE===` if the test output otherwise becomes empty.

Closes GH-4872.
2019-11-07 21:31:47 +01:00

33 lines
1.0 KiB
PHP

--TEST--
Test finfo_file() function : basic functionality
--SKIPIF--
<?php require_once(__DIR__ . '/skipif.inc'); ?>
--FILE--
<?php
/* Prototype : string finfo_file(resource finfo, char *file_name [, int options [, resource context]])
* Description: Return information about a file.
* Source code: ext/fileinfo/fileinfo.c
* Alias to functions:
*/
$magicFile = __DIR__ . DIRECTORY_SEPARATOR . 'magic';
$finfo = finfo_open( FILEINFO_MIME );
echo "*** Testing finfo_file() : basic functionality ***\n";
// Calling finfo_file() with all possible arguments
var_dump( finfo_file( $finfo, __FILE__) );
var_dump( finfo_file( $finfo, __FILE__, FILEINFO_CONTINUE ) );
var_dump( finfo_file( $finfo, $magicFile ) );
var_dump( finfo_file( $finfo, $magicFile.chr(0).$magicFile) );
?>
--EXPECTF--
*** Testing finfo_file() : basic functionality ***
string(28) "text/x-php; charset=us-ascii"
string(%d) "PHP script, ASCII text%A"
string(32) "text/plain; charset=unknown-8bit"
Warning: finfo_file(): Invalid path in %s%efinfo_file_basic.php on line %d
bool(false)