summaryrefslogtreecommitdiff
path: root/ext/standard/tests/filters/stream_filter_remove_error.phpt
blob: 9cbb9258559b221bec064c878b7b05eb18b0771e (plain)
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
74
75
76
77
78
79
80
--TEST--
Test stream_filter_remove() function : error conditions 
--SKIPIF--
<?php
$filters = stream_get_filters();
if(! in_array( "string.rot13", $filters )) die( "skip rot13 filter not available." );
?>
--FILE--
<?php
/* Prototype  : bool stream_filter_remove(resource stream_filter)
 * Description: Flushes any data in the filter's internal buffer, removes it from the chain, and frees the resource 
 * Source code: ext/standard/streamsfuncs.c
 * Alias to functions: 
 */

$file = dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'streamfilterTest.txt';
touch( $file );
$fp = fopen( $file, 'w+' );
$filter = stream_filter_append( $fp, "string.rot13", STREAM_FILTER_WRITE );

echo "*** Testing stream_filter_remove() : error conditions ***\n";

echo "\n-- Testing stream_filter_remove() function with Zero arguments --\n";
var_dump( stream_filter_remove() );

echo "\n-- Testing stream_filter_remove() function with more than expected no. of arguments --\n";
$arg = 'bogus arg';
var_dump( stream_filter_remove( $filter, $arg ) );

echo "\n-- Testing stream_filter_remove() function with unexisting stream filter --\n";
var_dump( stream_filter_remove( "fakefilter" ) );

echo "\n-- Testing stream_filter_remove() function with bad resource --\n";
var_dump( stream_filter_remove( $fp ) );

echo "\n-- Testing stream_filter_remove() function with an already removed filter --\n";
// Double remove it
var_dump( stream_filter_remove( $filter ) );
var_dump( stream_filter_remove( $filter ) );

fclose( $fp );

?>
===DONE===
--CLEAN--
<?php

$file = dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'streamfilterTest.txt';
unlink( $file );

?>
--EXPECTF--
*** Testing stream_filter_remove() : error conditions ***

-- Testing stream_filter_remove() function with Zero arguments --

Warning: stream_filter_remove() expects exactly 1 parameter, 0 given in %s on line %d
bool(false)

-- Testing stream_filter_remove() function with more than expected no. of arguments --

Warning: stream_filter_remove() expects exactly 1 parameter, 2 given in %s on line %d
bool(false)

-- Testing stream_filter_remove() function with unexisting stream filter --

Warning: stream_filter_remove() expects parameter 1 to be resource, string given in %s on line %d
bool(false)

-- Testing stream_filter_remove() function with bad resource --

Warning: stream_filter_remove(): Invalid resource given, not a stream filter in %s on line %d
bool(false)

-- Testing stream_filter_remove() function with an already removed filter --
bool(true)

Warning: stream_filter_remove(): Invalid resource given, not a stream filter in %s on line %d
bool(false)
===DONE===