summaryrefslogtreecommitdiff
path: root/ext/ftp/tests
diff options
context:
space:
mode:
authorMitch Hagstrand <mhagstrand@gmail.com>2017-02-16 01:19:47 -0800
committerNikita Popov <nikita.ppv@gmail.com>2017-02-16 12:46:55 +0100
commit3b91ed112ff06d6b38a6db9e28649f2b79b40cad (patch)
tree0df157dc3789de0d58e5fa5ead396a9b34a95c58 /ext/ftp/tests
parent5432d6f982e36afd6505ff0d9b7ffb7ffc98b7f1 (diff)
downloadphp-git-3b91ed112ff06d6b38a6db9e28649f2b79b40cad.tar.gz
Make the ftp and stream tests more reliable.
The tests can sometimes fail because it chooses a passive port for ftp that is already in use. This makes the test attempt multiple times to find a free port.
Diffstat (limited to 'ext/ftp/tests')
-rw-r--r--ext/ftp/tests/server.inc32
1 files changed, 23 insertions, 9 deletions
diff --git a/ext/ftp/tests/server.inc b/ext/ftp/tests/server.inc
index ffef025074..06c0d0d6db 100644
--- a/ext/ftp/tests/server.inc
+++ b/ext/ftp/tests/server.inc
@@ -6,8 +6,8 @@ $context = stream_context_create(array('ssl' => array('local_cert' => dirname(__
for ($i=0; $i<10 && !$socket; ++$i) {
$port = rand(50000, 65535);
-
- @$socket = stream_socket_server("tcp://127.0.0.1:$port", $errno, $errstr, STREAM_SERVER_BIND|STREAM_SERVER_LISTEN, $context);
+
+ $socket = @stream_socket_server("tcp://127.0.0.1:$port", $errno, $errstr, STREAM_SERVER_BIND|STREAM_SERVER_LISTEN, $context);
}
//set anther random port that is not the same as $port
do{
@@ -402,20 +402,34 @@ if ($pid) {
}elseif (preg_match('/^PASV/', $buf, $matches)) {
$pasv=true;
- $p2 = $pasv_port % ((int) 1 << 8);
- $p1 = ($pasv_port-$p2)/((int) 1 << 8);
$host = "127.0.0.1";
- if (!empty($ssl)) {
- $soc = stream_socket_server("tcp://127.0.0.1:$pasv_port", $errno, $errstr, STREAM_SERVER_BIND|STREAM_SERVER_LISTEN, $context);
- } else {
- $soc = stream_socket_server("tcp://127.0.0.1:$pasv_port");
+ $i=0;
+
+ do {
+ if (!empty($ssl)) {
+ $soc = @stream_socket_server("tcp://127.0.0.1:$pasv_port", $errno, $errstr, STREAM_SERVER_BIND|STREAM_SERVER_LISTEN, $context);
+ } else {
+ $soc = @stream_socket_server("tcp://127.0.0.1:$pasv_port");
+ }
+ /* Could bind port, Try another port */
+ if (!$soc) {
+ $pasv_port = rand(50000, 65535);
+ }
+ $i++;
+ } while ($i<10 && !$soc);
+
+ if (!$soc) {
+ echo "$errstr ($errno)\n";
+ die("could not bind passive port\n");
}
+ $p2 = $pasv_port % ((int) 1 << 8);
+ $p1 = ($pasv_port-$p2)/((int) 1 << 8);
fputs($s, "227 Entering Passive Mode. (127,0,0,1,{$p1},{$p2})\r\n");
$pasvs = stream_socket_accept($soc,10);
- }elseif (preg_match('/^EPSV/', $buf, $matches)) {
+ } elseif (preg_match('/^EPSV/', $buf, $matches)) {
fputs($s, "550 Extended passsive mode not supported.\r\n");
} elseif (preg_match('/^SITE EXEC/', $buf, $matches)) {
fputs($s, "200 OK\r\n");