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
|
--TEST--
Test flock() function: Error conditions
--CONFLICTS--
obscure_filename
--FILE--
<?php
/*
Description: PHP supports a portable way of locking complete files
in an advisory way
*/
echo "*** Testing error conditions ***\n";
$file = preg_replace("~\.phpt?$~", '.tmp', __FILE__);
$fp = fopen($file, "w");
/* array of operations */
$operations = array(
0,
LOCK_NB,
FALSE,
array(1,2,3),
array(),
"string",
"",
"\0"
);
$i = 0;
foreach($operations as $operation) {
echo "--- Iteration $i ---" . \PHP_EOL;
try {
var_dump(flock($fp, $operation));
} catch (\TypeError|\ValueError $e) {
echo $e->getMessage() . \PHP_EOL;
}
$i++;
}
/* Invalid arguments */
$fp = fopen($file, "w");
fclose($fp);
try {
var_dump(flock($fp, LOCK_SH|LOCK_NB));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
?>
--CLEAN--
<?php
$file = __DIR__."/flock_error.tmp";
unlink($file);
?>
--EXPECT--
*** Testing error conditions ***
--- Iteration 0 ---
flock(): Argument #2 ($operation) must be one of LOCK_SH, LOCK_EX, or LOCK_UN
--- Iteration 1 ---
flock(): Argument #2 ($operation) must be one of LOCK_SH, LOCK_EX, or LOCK_UN
--- Iteration 2 ---
flock(): Argument #2 ($operation) must be one of LOCK_SH, LOCK_EX, or LOCK_UN
--- Iteration 3 ---
flock(): Argument #2 ($operation) must be of type int, array given
--- Iteration 4 ---
flock(): Argument #2 ($operation) must be of type int, array given
--- Iteration 5 ---
flock(): Argument #2 ($operation) must be of type int, string given
--- Iteration 6 ---
flock(): Argument #2 ($operation) must be of type int, string given
--- Iteration 7 ---
flock(): Argument #2 ($operation) must be of type int, string given
flock(): supplied resource is not a valid stream resource
|