remove obsolete tests
[m6w6/ext-http] / tests / message015.phpt
index f11efc89fbeab17636004f5ef7d34c3c22a50db9..e9bd8463a08eb9551f3d96e0ffd354d751133e9d 100644 (file)
@@ -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