mirror of
https://github.com/php/php-src.git
synced 2024-12-11 10:54:47 +08:00
34 lines
882 B
PHP
34 lines
882 B
PHP
--TEST--
|
|
ext/sockets - socket_connect - test with empty parameters
|
|
--CREDITS--
|
|
Florian Anderiasch
|
|
fa@php.net
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('sockets')) {
|
|
die('skip - sockets extension not available.');
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$rand = rand(1,999);
|
|
$s_c = socket_create_listen(31330+$rand);
|
|
// wrong parameter count
|
|
$s_w = socket_connect();
|
|
$s_w = socket_connect($s_c);
|
|
$s_w = socket_connect($s_c, '0.0.0.0');
|
|
$s_w = socket_connect($s_c, '0.0.0.0', 31330+$rand);
|
|
|
|
socket_close($s_c);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
|
|
Warning: socket_connect() expects at least 2 parameters, 0 given in %s on line %i
|
|
|
|
Warning: socket_connect() expects at least 2 parameters, 1 given in %s on line %i
|
|
|
|
Warning: socket_connect(): Socket of type AF_INET requires 3 arguments in %s on line %i
|
|
|
|
Warning: socket_connect(): unable to connect [%i]: %a in %s on line %i
|