X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=tests%2Fmessage015.phpt;h=d924690a2ca3b3cfe6a3c3a055b79cd5dc824f49;hp=f11efc89fbeab17636004f5ef7d34c3c22a50db9;hb=c0c53bdd55138b476e6cb4a85376a1ff1be6834d;hpb=40688e36ecfc7b22a1221079a8d40edd122ee550 diff --git a/tests/message015.phpt b/tests/message015.phpt index f11efc8..d924690 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 no parent message +Cannot prepend a message located within the same message chain Done