Test Failure Report for sapi/cli/tests/php_cli_server_009.phpt ('PATH_INFO (relevant to #60112)')
Script
1:
<?php 2: include "php_cli_server.inc"; 3: php_cli_server_start('var_dump($_SERVER["PATH_INFO"]);', TRUE); 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 /foo/bar 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 /foo/bar/ 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: $fp = fsockopen($host, $port, $errno, $errstr, 0.5); 48: if (!$fp) { 49: die("connect failed"); 50: } 51: 52: 53: if(fwrite($fp, <<<HEADER 54: GET /foo/bar.js HTTP/1.0 55: Host: {$host} 56: 57: 58: HEADER 59: )) { 60: while (!feof($fp)) { 61: echo fgets($fp); 62: break; 63: } 64: } 65: 66: fclose($fp); 67: ?> 68:
Expected
HTTP/1.1 200 OK
Host: %s
Connection: close
X-Powered-By: PHP/%s
Content-type: text/html
string(8) "/foo/bar"
HTTP/1.0 200 OK
Host: %s
Connection: close
X-Powered-By: PHP/%s
Content-type: text/html
string(9) "/foo/bar/"
HTTP/1.0 404 Not Found
Output
Warning: fsockopen(): unable to connect to localhost:8964 (Connection refused) in /var/php_gcov/PHP_5_4/sapi/cli/tests/php_cli_server_009.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_009.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) "/foo/bar"
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(9) "/foo/bar/"
015- HTTP/1.0 404 Not Found
Generated at Mon, 13 May 2013 22:40:14 +0000 (5 days ago)
|