mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 10:11:38 +09:00
128 lines
No EOL
4.4 KiB
PHP
128 lines
No EOL
4.4 KiB
PHP
<?php
|
|
/**
|
|
* Unit tests for HTTP_Request2 package
|
|
*
|
|
* PHP version 5
|
|
*
|
|
* LICENSE
|
|
*
|
|
* This source file is subject to BSD 3-Clause License that is bundled
|
|
* with this package in the file LICENSE and available at the URL
|
|
* https://raw.github.com/pear/HTTP_Request2/trunk/docs/LICENSE
|
|
*
|
|
* @category HTTP
|
|
* @package HTTP_Request2
|
|
* @author Alexey Borzov <avb@php.net>
|
|
* @copyright 2008-2014 Alexey Borzov <avb@php.net>
|
|
* @license http://opensource.org/licenses/BSD-3-Clause BSD 3-Clause License
|
|
* @link http://pear.php.net/package/HTTP_Request2
|
|
*/
|
|
|
|
/** Sets up includes */
|
|
require_once dirname(dirname(__FILE__)) . '/TestHelper.php';
|
|
|
|
/**
|
|
* Class representing a HTTP response
|
|
*/
|
|
require_once 'HTTP/Request2/Response.php';
|
|
|
|
/**
|
|
* Unit test for HTTP_Request2_Response class
|
|
*/
|
|
class HTTP_Request2_ResponseTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
*
|
|
* @expectedException HTTP_Request2_MessageException
|
|
*/
|
|
public function testParseStatusLine()
|
|
{
|
|
$response = new HTTP_Request2_Response('HTTP/1.1 200 OK');
|
|
$this->assertEquals('1.1', $response->getVersion());
|
|
$this->assertEquals(200, $response->getStatus());
|
|
$this->assertEquals('OK', $response->getReasonPhrase());
|
|
|
|
$response2 = new HTTP_Request2_Response('HTTP/1.2 222 Nishtyak!');
|
|
$this->assertEquals('1.2', $response2->getVersion());
|
|
$this->assertEquals(222, $response2->getStatus());
|
|
$this->assertEquals('Nishtyak!', $response2->getReasonPhrase());
|
|
|
|
$response3 = new HTTP_Request2_Response('Invalid status line');
|
|
}
|
|
|
|
public function testParseHeaders()
|
|
{
|
|
$response = $this->readResponseFromFile('response_headers');
|
|
$this->assertEquals(7, count($response->getHeader()));
|
|
$this->assertEquals('PHP/6.2.2', $response->getHeader('X-POWERED-BY'));
|
|
$this->assertEquals('text/html; charset=windows-1251', $response->getHeader('cOnTeNt-TyPe'));
|
|
$this->assertEquals('accept-charset, user-agent', $response->getHeader('vary'));
|
|
}
|
|
|
|
public function testParseCookies()
|
|
{
|
|
$response = $this->readResponseFromFile('response_cookies');
|
|
$cookies = $response->getCookies();
|
|
$this->assertEquals(4, count($cookies));
|
|
$expected = array(
|
|
array('name' => 'foo', 'value' => 'bar', 'expires' => null,
|
|
'domain' => null, 'path' => null, 'secure' => false),
|
|
array('name' => 'PHPSESSID', 'value' => '1234567890abcdef1234567890abcdef',
|
|
'expires' => null, 'domain' => null, 'path' => '/', 'secure' => true),
|
|
array('name' => 'A', 'value' => 'B=C', 'expires' => null,
|
|
'domain' => null, 'path' => null, 'secure' => false),
|
|
array('name' => 'baz', 'value' => '%20a%20value', 'expires' => 'Sun, 03 Jan 2010 03:04:05 GMT',
|
|
'domain' => 'pear.php.net', 'path' => null, 'secure' => false),
|
|
);
|
|
foreach ($cookies as $k => $cookie) {
|
|
$this->assertEquals($expected[$k], $cookie);
|
|
}
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @expectedException HTTP_Request2_MessageException
|
|
*/
|
|
public function testGzipEncoding()
|
|
{
|
|
$response = $this->readResponseFromFile('response_gzip');
|
|
$this->assertEquals('0e964e9273c606c46afbd311b5ad4d77', md5($response->getBody()));
|
|
|
|
$response = $this->readResponseFromFile('response_gzip_broken');
|
|
$body = $response->getBody();
|
|
}
|
|
|
|
public function testDeflateEncoding()
|
|
{
|
|
$response = $this->readResponseFromFile('response_deflate');
|
|
$this->assertEquals('0e964e9273c606c46afbd311b5ad4d77', md5($response->getBody()));
|
|
}
|
|
|
|
public function testBug15305()
|
|
{
|
|
$response = $this->readResponseFromFile('bug_15305');
|
|
$this->assertEquals('c8c5088fc8a7652afef380f086c010a6', md5($response->getBody()));
|
|
}
|
|
|
|
public function testBug18169()
|
|
{
|
|
$response = $this->readResponseFromFile('bug_18169');
|
|
$this->assertEquals('', $response->getBody());
|
|
}
|
|
|
|
protected function readResponseFromFile($filename)
|
|
{
|
|
$fp = fopen(dirname(dirname(__FILE__)) . '/_files/' . $filename, 'rb');
|
|
$response = new HTTP_Request2_Response(fgets($fp));
|
|
do {
|
|
$headerLine = fgets($fp);
|
|
$response->parseHeaderLine($headerLine);
|
|
} while ('' != trim($headerLine));
|
|
|
|
while (!feof($fp)) {
|
|
$response->appendBody(fread($fp, 1024));
|
|
}
|
|
return $response;
|
|
}
|
|
}
|
|
?>
|