Test Failure Report for sapi/cli/tests/php_cli_server_006.phpt ('Bug #55755 (SegFault when outputting header WWW-Authenticate)')
Script
1:
<?php 2: include "php_cli_server.inc"; 3: php_cli_server_start('var_dump($_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"]);'); 4: 5: list($host, $port) = explode(':', PHP_CLI_SERVER_ADDRESS); 6: $port = intval($port)?:80; 7: 8: $fp = fsockopen($host, $port, $errno, $errstr, 0.5); 9: if (!$fp) { 10: die("connect failed"); 11: } 12: 13: if(fwrite($fp, <<<HEADER 14: GET / HTTP/1.1 15: Host: {$host} 16: Authorization: Basic Zm9vOmJhcg== 17: 18: 19: HEADER 20: )) { 21: while (!feof($fp)) { 22: echo fgets($fp); 23: } 24: } 25: 26: ?> 27:
Expected
HTTP/1.1 200 OK
Host: %s
Connection: close
X-Powered-By: PHP/%s
Content-type: text/html
string(3) "foo"
string(3) "bar"
Output
Warning: fsockopen(): unable to connect to localhost:8964 (Connection refused) in /var/php_gcov/PHP_HEAD/sapi/cli/tests/php_cli_server_006.php on line 8
connect failed
Diff
001+ Warning: fsockopen(): unable to connect to localhost:8964 (Connection refused) in /var/php_gcov/PHP_HEAD/sapi/cli/tests/php_cli_server_006.php on line 8
002+ connect failed
001- HTTP/1.1 200 OK
002- Host: %s
003- Connection: close
004- X-Powered-By: PHP/%s
005- Content-type: text/html
006-
007- string(3) "foo"
008- string(3) "bar"
Generated at Fri, 17 May 2013 23:23:52 +0000 (6 days ago)
|