let DEV_2 be trunk
[m6w6/ext-http] / tests / parse_message_004.phpt
diff --git a/tests/parse_message_004.phpt b/tests/parse_message_004.phpt
deleted file mode 100644 (file)
index 5ce6048..0000000
+++ /dev/null
@@ -1,115 +0,0 @@
---TEST--
-http_parse_message() recursive
---SKIPIF--
-<?php
-include 'skip.inc';
-?>
---FILE--
-<?php
-
-echo "-TEST\n";
-$message =
-"HEAD / HTTP/1.1
-Host: www.example.com
-Accept: */*
-HTTP/1.1 200 Ok
-Server: Funky/1.0
-Content-Length: 10
-GET / HTTP/1.1
-Host: www.example.com
-Accept: */*
-HTTP/1.1 200 Ok
-Server: Funky/1.0
-Content-Length: 10
-
-1234567890
-";
-
-var_dump(http_parse_message($message));
-
-echo "Done\n";
-?>
---EXPECTF--
-%aTEST
-object(stdClass)%a {
-  ["type"]=>
-  int(2)
-  ["httpVersion"]=>
-  float(1.1)
-  ["responseCode"]=>
-  int(200)
-  ["responseStatus"]=>
-  string(2) "Ok"
-  ["headers"]=>
-  array(2) {
-    ["Server"]=>
-    string(9) "Funky/1.0"
-    ["Content-Length"]=>
-    string(2) "10"
-  }
-  ["body"]=>
-  string(10) "1234567890"
-  ["parentMessage"]=>
-  object(stdClass)%a {
-    ["type"]=>
-    int(1)
-    ["httpVersion"]=>
-    float(1.1)
-    ["requestMethod"]=>
-    string(3) "GET"
-    ["requestUrl"]=>
-    string(1) "/"
-    ["headers"]=>
-    array(2) {
-      ["Host"]=>
-      string(15) "www.example.com"
-      ["Accept"]=>
-      string(3) "*/*"
-    }
-    ["body"]=>
-    string(0) ""
-    ["parentMessage"]=>
-    object(stdClass)%a {
-      ["type"]=>
-      int(2)
-      ["httpVersion"]=>
-      float(1.1)
-      ["responseCode"]=>
-      int(200)
-      ["responseStatus"]=>
-      string(2) "Ok"
-      ["headers"]=>
-      array(2) {
-        ["Server"]=>
-        string(9) "Funky/1.0"
-        ["Content-Length"]=>
-        string(2) "10"
-      }
-      ["body"]=>
-      string(0) ""
-      ["parentMessage"]=>
-      object(stdClass)%a {
-        ["type"]=>
-        int(1)
-        ["httpVersion"]=>
-        float(1.1)
-        ["requestMethod"]=>
-        string(4) "HEAD"
-        ["requestUrl"]=>
-        string(1) "/"
-        ["headers"]=>
-        array(2) {
-          ["Host"]=>
-          string(15) "www.example.com"
-          ["Accept"]=>
-          string(3) "*/*"
-        }
-        ["body"]=>
-        string(0) ""
-        ["parentMessage"]=>
-        NULL
-      }
-    }
-  }
-}
-Done