X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=tests%2Fmessage015.phpt;h=e9bd8463a08eb9551f3d96e0ffd354d751133e9d;hp=f11efc89fbeab17636004f5ef7d34c3c22a50db9;hb=8b8cdb96032f50d57dbdad74ae45336d01a7f0c5;hpb=18750f34ec9a9b16ffd07f54346136ca0f72e9a8 diff --git a/tests/message015.phpt b/tests/message015.phpt index f11efc8..e9bd846 100644 --- a/tests/message015.phpt +++ b/tests/message015.phpt @@ -10,16 +10,24 @@ include "skipif.inc"; echo "Test\n"; $m = new http\Message; -$m->setRequestUrl("/foo"); +try { + $m->setRequestUrl("/foo"); +} catch (http\Exception $e) { + echo $e->getMessage(),"\n"; +} $m->setType(http\Message::TYPE_REQUEST); -$m->setRequestUrl(""); +try { + $m->setRequestUrl(""); +} catch (http\Exception $e) { + echo $e->getMessage(),"\n"; +} $m = new http\Message; try { $m->getParentMessage(); die("unreached"); } catch (http\Exception $e) { - var_dump($e->getMessage()); + echo $e->getMessage(),"\n"; } $m = new http\Message("HTTP/1.1 200\r\nHTTP/1.1 201"); @@ -27,17 +35,15 @@ try { $m->prepend($m->getParentMessage()); die("unreached"); } catch (http\Exception $e) { - var_dump($e->getMessage()); + echo $e->getMessage(),"\n"; } ?> Done --EXPECTF-- Test - -Notice: http\Message::setRequestUrl(): HttpMessage is not of type REQUEST in %s on line %d - -Warning: http\Message::setRequestUrl(): Cannot set HttpMessage::requestUrl to an empty string in %s on line %d -string(42) "HttpMessage does not have a parent message" -string(62) "Cannot prepend a message located within the same message chain" +http\Message is not of type request +Cannot set http\Message's request url to an empty string +http\Message has not parent message +Cannot prepend a message located within the same message chain Done