Annotation of embedaddon/php/ext/standard/tests/file/disk_total_space_error-win32.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Test disk_total_space() function : error conditions
                      3: --SKIPIF--
                      4: <?php
                      5: if(substr(PHP_OS, 0, 3) != 'WIN' )
                      6:   die("skip Valid only for Windows");
                      7: ?>
                      8: --FILE--
                      9: <?php
                     10: /*
                     11:  *  Prototype: float disk_total_space( string $directory );
                     12:  *  Description: given a string containing a directory, this function
                     13:  *               will return the total number of bytes on the corresponding 
                     14:  *               filesystem or disk partition
                     15:  */
                     16: 
                     17: echo "*** Testing error conditions ***\n";
                     18: $file_path = dirname(__FILE__);
                     19: var_dump( disk_total_space() ); // Zero Arguments
                     20: 
                     21: var_dump( disk_total_space( $file_path, "extra argument") ); // More than valid number of arguments
                     22: 
                     23: 
                     24: var_dump( disk_total_space( $file_path."/dir1" )); // Invalid directory
                     25: 
                     26: $fh = fopen( $file_path."/disk_total_space.tmp", "w" );
                     27: fwrite( $fh, " Garbage data for the temporary file" );
                     28: var_dump( disk_total_space( $file_path."/disk_total_space.tmp" )); // file input instead of directory
                     29: fclose($fh);
                     30: 
                     31: echo"\n--- Done ---";
                     32: ?>
                     33: --CLEAN--
                     34: <?php
                     35: $file_path = dirname(__FILE__);
                     36: unlink($file_path."/disk_total_space.tmp");
                     37: ?>
                     38: --EXPECTF--
                     39: *** Testing error conditions ***
                     40: 
                     41: Warning: disk_total_space() expects exactly 1 parameter, 0 given in %s on line %d
                     42: NULL
                     43: 
                     44: Warning: disk_total_space() expects exactly 1 parameter, 2 given in %s on line %d
                     45: NULL
                     46: 
                     47: Warning: disk_total_space(): The system cannot find the path specified.
                     48:  in %s on line %d
                     49: bool(false)
                     50: 
                     51: Warning: disk_total_space(): The directory name is invalid.
                     52:  in %s on line %d
                     53: bool(false)
                     54: 
                     55: --- Done ---
                     56: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>