X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=tests%2Fnegotiation_001.phpt;h=d4b13ac0ccc416d7def7c71df2830bd588a5e273;hp=e1af2ca4159de7444d02634b6ac8bd1aca4a10f8;hb=93e726eb9c892c26bc5ddb5417d0ac67ef691147;hpb=991da83d2e2f0ea005124a371a1eee49be826b18 diff --git a/tests/negotiation_001.phpt b/tests/negotiation_001.phpt index e1af2ca..d4b13ac 100644 --- a/tests/negotiation_001.phpt +++ b/tests/negotiation_001.phpt @@ -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