Annotation of embedaddon/php/sapi/cli/tests/php_cli_server_007.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Bug #55758 (Digest Authenticate missed in 5.4)
        !             3: --SKIPIF--
        !             4: <?php
        !             5: include "skipif.inc"; 
        !             6: ?>
        !             7: --FILE--
        !             8: <?php
        !             9: include "php_cli_server.inc";
        !            10: php_cli_server_start('header(\'WWW-Authenticate: Digest realm="foo",qop="auth",nonce="XXXXX",opaque="'.md5("foo").'"\');');
        !            11: 
        !            12: list($host, $port) = explode(':', PHP_CLI_SERVER_ADDRESS);
        !            13: $port = intval($port)?:80;
        !            14: 
        !            15: $fp = fsockopen($host, $port, $errno, $errstr, 0.5);
        !            16: if (!$fp) {
        !            17:   die("connect failed");
        !            18: }
        !            19: 
        !            20: if(fwrite($fp, <<<HEADER
        !            21: GET / HTTP/1.1
        !            22: Host: {$host}
        !            23: Authorization: Basic Zm9vOmJhcg==
        !            24: 
        !            25: 
        !            26: HEADER
        !            27: )) {
        !            28:        while (!feof($fp)) {
        !            29:                echo fgets($fp);
        !            30:        }
        !            31: }
        !            32: 
        !            33: ?>
        !            34: --EXPECTF--    
        !            35: HTTP/1.1 401 Unauthorized
        !            36: Host: %s
        !            37: Connection: close
        !            38: X-Powered-By: PHP/%s
        !            39: WWW-Authenticate: Digest realm="foo",qop="auth",nonce="XXXXX",opaque="acbd18db4cc2f85cedef654fccc4a4d8"
        !            40: Content-type: text/html

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>