X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=tests%2Fnegotiation_001.phpt;h=d4b13ac0ccc416d7def7c71df2830bd588a5e273;hp=cb11d4328e5ccc4f6e81f5850342e44a843e3106;hb=c4bf0a26f53d88dc8724d96e599a3867113da2be;hpb=693aff1dce7d26388ff36794fe4b90a26b7f2ccd diff --git a/tests/negotiation_001.phpt b/tests/negotiation_001.phpt index cb11d43..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,14 +36,21 @@ 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] => 500 - [en] => 0.15 + [de] => 900 + [en] => 0.27 ) Array ( [iso-8859-1] => 1000 [utf-8] => 0.7 ) +Array +( + [application/xhtml+xml] => 999 + [text/html] => 0.8 +) Done