]> granicus.if.org Git - php/commitdiff
Add tests
authorXinchen Hui <laruence@php.net>
Fri, 23 Sep 2011 03:09:12 +0000 (03:09 +0000)
committerXinchen Hui <laruence@php.net>
Fri, 23 Sep 2011 03:09:12 +0000 (03:09 +0000)
sapi/cli/tests/php_cli_server_007.phpt [new file with mode: 0644]

diff --git a/sapi/cli/tests/php_cli_server_007.phpt b/sapi/cli/tests/php_cli_server_007.phpt
new file mode 100644 (file)
index 0000000..a584d07
--- /dev/null
@@ -0,0 +1,43 @@
+--TEST--
+Bug #55758 (Digest Authenticate missed in 5.4)
+--SKIPIF--
+<?php
+include "skipif.inc"; 
+if (substr(PHP_OS, 0, 3) == 'WIN') {
+    die ("skip not for Windows");
+}
+?>
+--FILE--
+<?php
+include "php_cli_server.inc";
+php_cli_server_start('header(\'WWW-Authenticate: Digest realm="foo",qop="auth",nonce="XXXXX",opaque="'.md5("foo").'"\');');
+
+list($host, $port) = explode(':', PHP_CLI_SERVER_ADDRESS);
+$port = intval($port)?:80;
+
+$fp = fsockopen($host, $port, $errno, $errstr, 0.5);
+if (!$fp) {
+  die("connect failed");
+}
+
+if(fwrite($fp, <<<HEADER
+GET / HTTP/1.1
+Host: {$host}
+Authorization: Basic Zm9vOmJhcg==
+
+
+HEADER
+)) {
+       while (!feof($fp)) {
+               echo fgets($fp);
+       }
+}
+
+?>
+--EXPECTF--    
+HTTP/1.1 401 Unauthorized
+Host: %s
+Connection: closed
+X-Powered-By: PHP/%s-dev
+WWW-Authenticate: Digest realm="foo",qop="auth",nonce="XXXXX",opaque="acbd18db4cc2f85cedef654fccc4a4d8"
+Content-type: text/html