- add http_negotiate_content_type()
[m6w6/ext-http] / tests / negotiation_001.phpt
index e1af2ca4159de7444d02634b6ac8bd1aca4a10f8..d4b13ac0ccc416d7def7c71df2830bd588a5e273 100644 (file)
@@ -5,6 +5,7 @@ negotiation
 include 'skip.inc';
 ?>
 --ENV--
+HTTP_ACCEPT=application/xml, application/xhtml+xml, text/html ; q = .8
 HTTP_ACCEPT_LANGUAGE=de-AT,de-DE;q=0.8,en-GB;q=0.3,en-US;q=0.2
 HTTP_ACCEPT_CHARSET=ISO-8859-1,utf-8;q=0.7,*;q=0.7
 --FILE--
@@ -16,12 +17,18 @@ $langs = array(
 $csets = array(
        array('utf-8', 'iso-8859-1'),
 );
+$ctype = array(
+       array('foo/bar', 'application/xhtml+xml', 'text/html')
+);
 var_dump(http_negotiate_language($langs[0]));
 var_dump(http_negotiate_language($langs[0], $lresult));
 var_dump(http_negotiate_charset($csets[0]));
 var_dump(http_negotiate_charset($csets[0], $cresult));
+var_dump(http_negotiate_content_type($ctype[0]));
+var_dump(http_negotiate_content_type($ctype[0], $tresult));
 print_r($lresult);
 print_r($cresult);
+print_r($tresult);
 echo "Done\n";
 --EXPECTF--
 %sTEST
@@ -29,6 +36,8 @@ string(2) "de"
 string(2) "de"
 string(10) "iso-8859-1"
 string(10) "iso-8859-1"
+string(21) "application/xhtml+xml"
+string(21) "application/xhtml+xml"
 Array
 (
     [de] => 900
@@ -39,4 +48,9 @@ Array
     [iso-8859-1] => 1000
     [utf-8] => 0.7
 )
+Array
+(
+    [application/xhtml+xml] => 999
+    [text/html] => 0.8
+)
 Done