diff options
author | Xinchen Hui <laruence@php.net> | 2011-09-23 03:09:12 +0000 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2011-09-23 03:09:12 +0000 |
commit | 8b65d7b80cf545b0ad2c98782f44138ac3450a15 (patch) | |
tree | 1f4e9c49b88b7be25a2c1a2267b03a3ffd12a15e /sapi | |
parent | 58800b8ac1192243fc43833c54565ae3c10b0f31 (diff) | |
download | php-git-8b65d7b80cf545b0ad2c98782f44138ac3450a15.tar.gz |
Add tests
Diffstat (limited to 'sapi')
-rw-r--r-- | sapi/cli/tests/php_cli_server_007.phpt | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/sapi/cli/tests/php_cli_server_007.phpt b/sapi/cli/tests/php_cli_server_007.phpt new file mode 100644 index 0000000000..a584d07b37 --- /dev/null +++ b/sapi/cli/tests/php_cli_server_007.phpt @@ -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 |