Test Failure Report for sapi/cli/tests/php_cli_server_004.phpt ('Bug #55747 (request headers missed in $_SERVER)')
Script
1:
<?php 2: include "php_cli_server.inc"; 3: php_cli_server_start('foreach($_SERVER as $k=>$v) { if (!strncmp($k, "HTTP", 4)) var_dump( $k . ":" . $v); }'); 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: User-Agent:dummy 17: Custom:foo 18: Referer:http://www.php.net/ 19: 20: 21: HEADER 22: )) { 23: while (!feof($fp)) { 24: echo fgets($fp); 25: } 26: } 27: 28: ?> 29:
Expected
HTTP/1.1 200 OK
Host: %s
Connection: close
X-Powered-By: PHP/%s
Content-type: text/html
string(19) "HTTP_HOST:localhost"
string(21) "HTTP_USER_AGENT:dummy"
string(15) "HTTP_CUSTOM:foo"
string(32) "HTTP_REFERER:http://www.php.net/"
Output
Warning: fsockopen(): unable to connect to localhost:8964 (Connection refused) in /var/php_gcov/PHP_5_4/sapi/cli/tests/php_cli_server_004.php on line 8
connect failed
Diff
001+ Warning: fsockopen(): unable to connect to localhost:8964 (Connection refused) in /var/php_gcov/PHP_5_4/sapi/cli/tests/php_cli_server_004.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(19) "HTTP_HOST:localhost"
008- string(21) "HTTP_USER_AGENT:dummy"
009- string(15) "HTTP_CUSTOM:foo"
010- string(32) "HTTP_REFERER:http://www.php.net/"
Generated at Tue, 21 May 2013 17:04:51 +0000 (3 days ago)
|