Test Failure Report for sapi/cli/tests/php_cli_server_008.phpt ('SERVER_PROTOCOL header availability')
Script
1:
<?php 2: include "php_cli_server.inc"; 3: php_cli_server_start('var_dump($_SERVER["SERVER_PROTOCOL"]);'); 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: 17: 18: HEADER 19: )) { 20: while (!feof($fp)) { 21: echo fgets($fp); 22: } 23: } 24: 25: fclose($fp); 26: 27: $fp = fsockopen($host, $port, $errno, $errstr, 0.5); 28: if (!$fp) { 29: die("connect failed"); 30: } 31: 32: 33: if(fwrite($fp, <<<HEADER 34: GET / HTTP/1.0 35: Host: {$host} 36: 37: 38: HEADER 39: )) { 40: while (!feof($fp)) { 41: echo fgets($fp); 42: } 43: } 44: 45: fclose($fp); 46: ?> 47:
Expected
HTTP/1.1 200 OK
Host: %s
Connection: close
X-Powered-By: PHP/%s
Content-type: text/html
string(8) "HTTP/1.1"
HTTP/1.0 200 OK
Host: %s
Connection: close
X-Powered-By: PHP/%s
Content-type: text/html
string(8) "HTTP/1.0"
Output
Warning: fsockopen(): unable to connect to localhost:8964 (Connection refused) in /var/php_gcov/PHP_HEAD/sapi/cli/tests/php_cli_server_008.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_008.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(8) "HTTP/1.1"
008- HTTP/1.0 200 OK
009- Host: %s
010- Connection: close
011- X-Powered-By: PHP/%s
012- Content-type: text/html
013-
014- string(8) "HTTP/1.0"
Generated at Fri, 17 May 2013 23:23:52 +0000 (7 days ago)
|