X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=phpunit%2FMessageTest.php;h=485d431e4cfb0b037ce45dc4c587a7f8841e6acf;hp=6dd5b707bbf665e75baddbb33d00bfbaf5d728fe;hb=34c8af32031e2e847b4919402373ad70fc28a863;hpb=fd8c28f586debd296715805050fa808e1f46ee01 diff --git a/phpunit/MessageTest.php b/phpunit/MessageTest.php index 6dd5b70..485d431 100644 --- a/phpunit/MessageTest.php +++ b/phpunit/MessageTest.php @@ -46,6 +46,13 @@ class MessageTest extends PHPUnit_Framework_TestCase $test->testSetBody($body); $this->assertEquals($body, $test->testGetBody()); $this->assertEquals($body, $test->getBody()); + $file = fopen(__FILE__,"r"); + $test->testSetBody($file); + $this->assertEquals($file, $test->testGetBody()->getResource()); + $this->assertEquals($file, $test->getBody()->getResource()); + $test->testSetBody("data"); + $this->assertEquals("data", (string) $test->testGetBody()); + $this->assertEquals("data", (string) $test->getBody()); $test->testSetRequestMethod("HEAD"); $this->assertEquals("HEAD", $test->testGetRequestMethod()); $this->assertEquals("HEAD", $test->getRequestMethod()); @@ -195,6 +202,25 @@ class MessageTest extends PHPUnit_Framework_TestCase ); } + function testEmptyUrlWarning() { + $m = new http\Message; + $this->setExpectedException("PHPUnit_Framework_Error_Warning"); + $m->setRequestUrl("/foo"); + $m->setType(http\Message::TYPE_REQUEST); + $this->setExpectedException("PHPUnit_Framework_Error_Warning"); + $m->setRequestUrl(""); + } + + function testEmptyParentMessage() { + $m = new http\Message; + try { + $m->getParentMessage(); + $this->assertFalse("this code should not be reached"); + } catch (http\Exception $e) { + $this->assertEquals("HttpMessage does not have a parent message", $e->getMessage()); + } + } + function testPrependError() { $m = new http\Message("HTTP/1.1 200\r\nHTTP/1.1 201"); try { @@ -240,7 +266,7 @@ class MessageTest extends PHPUnit_Framework_TestCase $m->getBody()->addPart($p); $this->assertStringMatchesFormat( "HTTP/1.1 200\r\n". - "Content-Length: 97\r\n". + "Content-Length: %d\r\n". "Content-Type: multipart/form-data; boundary=\"%x.%x\"\r\n". "\r\n". "--%x.%x\r\n".