X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=tests%2F4LocalhostMultiTest.php;h=e5d365a0738bebbba73c1745ea55107535f78f47;hb=238968291ce5627e94dbc3928d377d09f6e9eeda;hp=51a8933272e4e4b7d88bd20628f4191580de2a3d;hpb=9423ab9a69fe854e751673920b0974a79ca52ee8;p=plcapi.git diff --git a/tests/4LocalhostMultiTest.php b/tests/4LocalhostMultiTest.php index 51a8933..e5d365a 100644 --- a/tests/4LocalhostMultiTest.php +++ b/tests/4LocalhostMultiTest.php @@ -7,6 +7,10 @@ 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 { /** @@ -15,9 +19,10 @@ class LocalhostMultiTest extends LocalhostTest */ function _runtests() { + $unsafeMethods = array('testHttps', 'testCatchExceptions', 'testUtf8Method', 'testServerComments', 'testExoticCharsetsRequests', 'testExoticCharsetsRequests2', 'testExoticCharsetsRequests3'); foreach(get_class_methods('LocalhostTest') as $method) { - if(strpos($method, 'test') === 0 && $method != 'testHttps' && $method != 'testCatchExceptions') + if(strpos($method, 'test') === 0 && !in_array($method, $unsafeMethods)) { if (!isset(self::$failed_tests[$method])) $this->$method(); @@ -33,7 +38,7 @@ class LocalhostMultiTest extends LocalhostTest { if(!function_exists('gzdeflate')) { - $this->fail('Zlib missing: cannot test deflate functionality'); + $this->markTestSkipped('Zlib missing: cannot test deflate functionality'); return; } $this->client->accepted_compression = array('deflate'); @@ -45,7 +50,7 @@ class LocalhostMultiTest extends LocalhostTest { if(!function_exists('gzdeflate')) { - $this->fail('Zlib missing: cannot test gzip functionality'); + $this->markTestSkipped('Zlib missing: cannot test gzip functionality'); return; } $this->client->accepted_compression = array('gzip'); @@ -57,7 +62,7 @@ class LocalhostMultiTest extends LocalhostTest { if(!function_exists('curl_init')) { - $this->fail('CURL missing: cannot test http 1.1'); + $this->markTestSkipped('CURL missing: cannot test http 1.1'); return; } $this->method = 'http11'; @@ -73,14 +78,14 @@ class LocalhostMultiTest extends LocalhostTest $this->_runtests(); } else - $this->fail('PROXY definition missing: cannot test proxy'); + $this->markTestSkipped('PROXY definition missing: cannot test proxy'); } function testHttp11() { if(!function_exists('curl_init')) { - $this->fail('CURL missing: cannot test http 1.1'); + $this->markTestSkipped('CURL missing: cannot test http 1.1'); return; } $this->method = 'http11'; // not an error the double assignment! @@ -95,7 +100,7 @@ class LocalhostMultiTest extends LocalhostTest { if(!function_exists('curl_init')) { - $this->fail('CURL missing: cannot test http 1.1'); + $this->markTestSkipped('CURL missing: cannot test http 1.1'); return; } $this->method = 'http11'; // not an error the double assignment! @@ -110,7 +115,7 @@ class LocalhostMultiTest extends LocalhostTest { if(!function_exists('curl_init')) { - $this->fail('CURL missing: cannot test http 1.1'); + $this->markTestSkipped('CURL missing: cannot test http 1.1'); return; } $this->method = 'http11'; // not an error the double assignment! @@ -125,12 +130,12 @@ class LocalhostMultiTest extends LocalhostTest { if(!function_exists('curl_init')) { - $this->fail('CURL missing: cannot test http 1.1 w. proxy'); + $this->markTestSkipped('CURL missing: cannot test http 1.1 w. proxy'); return; } else if ($this->args['PROXYSERVER'] == '') { - $this->fail('PROXY definition missing: cannot test proxy w. http 1.1'); + $this->markTestSkipped('PROXY definition missing: cannot test proxy w. http 1.1'); return; } $this->method = 'http11'; // not an error the double assignment! @@ -146,7 +151,7 @@ class LocalhostMultiTest extends LocalhostTest { if(!function_exists('curl_init')) { - $this->fail('CURL missing: cannot test https functionality'); + $this->markTestSkipped('CURL missing: cannot test https functionality'); return; } $this->client->server = $this->args['HTTPSSERVER']; @@ -163,12 +168,12 @@ class LocalhostMultiTest extends LocalhostTest { if(!function_exists('curl_init')) { - $this->fail('CURL missing: cannot test https functionality'); + $this->markTestSkipped('CURL missing: cannot test https functionality'); return; } else if ($this->args['PROXYSERVER'] == '') { - $this->fail('PROXY definition missing: cannot test proxy w. http 1.1'); + $this->markTestSkipped('PROXY definition missing: cannot test proxy w. http 1.1'); return; } $this->client->server = $this->args['HTTPSSERVER'];