216 lines
6.9 KiB
PHP
216 lines
6.9 KiB
PHP
<?php
|
|
|
|
include_once __DIR__ . '/../lib/xmlrpc.inc';
|
|
include_once __DIR__ . '/../lib/xmlrpc_wrappers.inc';
|
|
|
|
include_once __DIR__ . '/parse_args.php';
|
|
|
|
include_once __DIR__ . '/3LocalhostTest.php';
|
|
|
|
/**
|
|
* Tests which stress http features of the library.
|
|
* Each of these tests iterates over (almost) all of the 'localhost' tests
|
|
*/
|
|
class LocalhostMultiTest extends LocalhostTest
|
|
{
|
|
/**
|
|
* @todo reintroduce skipping of tests which failed when executed individually if test runs happen as separate processes
|
|
* @todo reintroduce skipping of tests within the loop
|
|
*/
|
|
function _runtests()
|
|
{
|
|
$unsafeMethods = array('testHttps', 'testCatchExceptions', 'testUtf8Method', 'testServerComments', 'testExoticCharsetsRequests', 'testExoticCharsetsRequests2', 'testExoticCharsetsRequests3');
|
|
foreach(get_class_methods('LocalhostTest') as $method)
|
|
{
|
|
if(strpos($method, 'test') === 0 && !in_array($method, $unsafeMethods))
|
|
{
|
|
if (!isset(self::$failed_tests[$method]))
|
|
$this->$method();
|
|
}
|
|
/*if ($this->_failed)
|
|
{
|
|
break;
|
|
}*/
|
|
}
|
|
}
|
|
|
|
function testDeflate()
|
|
{
|
|
if(!function_exists('gzdeflate'))
|
|
{
|
|
$this->markTestSkipped('Zlib missing: cannot test deflate functionality');
|
|
return;
|
|
}
|
|
$this->client->accepted_compression = array('deflate');
|
|
$this->client->request_compression = 'deflate';
|
|
$this->_runtests();
|
|
}
|
|
|
|
function testGzip()
|
|
{
|
|
if(!function_exists('gzdeflate'))
|
|
{
|
|
$this->markTestSkipped('Zlib missing: cannot test gzip functionality');
|
|
return;
|
|
}
|
|
$this->client->accepted_compression = array('gzip');
|
|
$this->client->request_compression = 'gzip';
|
|
$this->_runtests();
|
|
}
|
|
|
|
function testKeepAlives()
|
|
{
|
|
if(!function_exists('curl_init'))
|
|
{
|
|
$this->markTestSkipped('CURL missing: cannot test http 1.1');
|
|
return;
|
|
}
|
|
$this->method = 'http11';
|
|
$this->client->keepalive = true;
|
|
$this->_runtests();
|
|
}
|
|
|
|
function testProxy()
|
|
{
|
|
if ($this->args['PROXYSERVER'])
|
|
{
|
|
$this->client->setProxy($this->args['PROXYSERVER'], $this->args['PROXYPORT']);
|
|
$this->_runtests();
|
|
}
|
|
else
|
|
$this->markTestSkipped('PROXY definition missing: cannot test proxy');
|
|
}
|
|
|
|
function testHttp11()
|
|
{
|
|
if(!function_exists('curl_init'))
|
|
{
|
|
$this->markTestSkipped('CURL missing: cannot test http 1.1');
|
|
return;
|
|
}
|
|
$this->method = 'http11'; // not an error the double assignment!
|
|
$this->client->method = 'http11';
|
|
//$this->client->verifyhost = 0;
|
|
//$this->client->verifypeer = 0;
|
|
$this->client->keepalive = false;
|
|
$this->_runtests();
|
|
}
|
|
|
|
function testHttp11Gzip()
|
|
{
|
|
if(!function_exists('curl_init'))
|
|
{
|
|
$this->markTestSkipped('CURL missing: cannot test http 1.1');
|
|
return;
|
|
}
|
|
$this->method = 'http11'; // not an error the double assignment!
|
|
$this->client->method = 'http11';
|
|
$this->client->keepalive = false;
|
|
$this->client->accepted_compression = array('gzip');
|
|
$this->client->request_compression = 'gzip';
|
|
$this->_runtests();
|
|
}
|
|
|
|
function testHttp11Deflate()
|
|
{
|
|
if(!function_exists('curl_init'))
|
|
{
|
|
$this->markTestSkipped('CURL missing: cannot test http 1.1');
|
|
return;
|
|
}
|
|
$this->method = 'http11'; // not an error the double assignment!
|
|
$this->client->method = 'http11';
|
|
$this->client->keepalive = false;
|
|
$this->client->accepted_compression = array('deflate');
|
|
$this->client->request_compression = 'deflate';
|
|
$this->_runtests();
|
|
}
|
|
|
|
function testHttp11Proxy()
|
|
{
|
|
if(!function_exists('curl_init'))
|
|
{
|
|
$this->markTestSkipped('CURL missing: cannot test http 1.1 w. proxy');
|
|
return;
|
|
}
|
|
else if ($this->args['PROXYSERVER'] == '')
|
|
{
|
|
$this->markTestSkipped('PROXY definition missing: cannot test proxy w. http 1.1');
|
|
return;
|
|
}
|
|
$this->method = 'http11'; // not an error the double assignment!
|
|
$this->client->method = 'http11';
|
|
$this->client->setProxy($this->args['PROXYSERVER'], $this->args['PROXYPORT']);
|
|
//$this->client->verifyhost = 0;
|
|
//$this->client->verifypeer = 0;
|
|
$this->client->keepalive = false;
|
|
$this->_runtests();
|
|
}
|
|
|
|
function testHttps()
|
|
{
|
|
if(!function_exists('curl_init'))
|
|
{
|
|
$this->markTestSkipped('CURL missing: cannot test https functionality');
|
|
return;
|
|
}
|
|
$this->client->server = $this->args['HTTPSSERVER'];
|
|
$this->method = 'https';
|
|
$this->client->method = 'https';
|
|
$this->client->path = $this->args['HTTPSURI'];
|
|
$this->client->setSSLVerifyPeer(!$this->args['HTTPSIGNOREPEER']);
|
|
$this->client->setSSLVerifyHost($this->args['HTTPSVERIFYHOST']);
|
|
$this->client->setSSLVersion($this->args['SSLVERSION']);
|
|
$this->_runtests();
|
|
}
|
|
|
|
function testHttpsProxy()
|
|
{
|
|
if(!function_exists('curl_init'))
|
|
{
|
|
$this->markTestSkipped('CURL missing: cannot test https functionality');
|
|
return;
|
|
}
|
|
else if ($this->args['PROXYSERVER'] == '')
|
|
{
|
|
$this->markTestSkipped('PROXY definition missing: cannot test proxy w. http 1.1');
|
|
return;
|
|
}
|
|
$this->client->server = $this->args['HTTPSSERVER'];
|
|
$this->method = 'https';
|
|
$this->client->method = 'https';
|
|
$this->client->setProxy($this->args['PROXYSERVER'], $this->args['PROXYPORT']);
|
|
$this->client->path = $this->args['HTTPSURI'];
|
|
$this->client->setSSLVerifyPeer(!$this->args['HTTPSIGNOREPEER']);
|
|
$this->client->setSSLVerifyHost($this->args['HTTPSVERIFYHOST']);
|
|
$this->client->setSSLVersion($this->args['SSLVERSION']);
|
|
$this->_runtests();
|
|
}
|
|
|
|
function testUTF8Responses()
|
|
{
|
|
//$this->client->path = strpos($URI, '?') === null ? $URI.'?RESPONSE_ENCODING=UTF-8' : $URI.'&RESPONSE_ENCODING=UTF-8';
|
|
$this->client->path = $this->args['URI'].'?RESPONSE_ENCODING=UTF-8';
|
|
$this->_runtests();
|
|
}
|
|
|
|
function testUTF8Requests()
|
|
{
|
|
$this->client->request_charset_encoding = 'UTF-8';
|
|
$this->_runtests();
|
|
}
|
|
|
|
function testISOResponses()
|
|
{
|
|
//$this->client->path = strpos($URI, '?') === null ? $URI.'?RESPONSE_ENCODING=UTF-8' : $URI.'&RESPONSE_ENCODING=UTF-8';
|
|
$this->client->path = $this->args['URI'].'?RESPONSE_ENCODING=ISO-8859-1';
|
|
$this->_runtests();
|
|
}
|
|
|
|
function testISORequests()
|
|
{
|
|
$this->client->request_charset_encoding = 'ISO-8859-1';
|
|
$this->_runtests();
|
|
}
|
|
}
|