Test Failure Report for sapi/cli/tests/php_cli_server_015.phpt ('Bug #60523 (PHP Errors are not reported in browsers using built-in SAPI)')
Script
1:
<?php 2: include "php_cli_server.inc"; 3: php_cli_server_start('require("syntax_error.php");'); 4: $dir = realpath(dirname(__FILE__)); 5: 6: file_put_contents($dir . "/syntax_error.php", "<?php non_exists_function(); ?>"); 7: 8: list($host, $port) = explode(':', PHP_CLI_SERVER_ADDRESS); 9: $port = intval($port)?:80; 10: $output = ''; 11: 12: $fp = fsockopen($host, $port, $errno, $errstr, 0.5); 13: if (!$fp) { 14: die("connect failed"); 15: } 16: 17: if(fwrite($fp, <<<HEADER 18: GET /index.php HTTP/1.1 19: Host: {$host} 20: 21: 22: HEADER 23: )) { 24: while (!feof($fp)) { 25: $output .= fgets($fp); 26: } 27: } 28: echo $output; 29: @unlink($dir . "/syntax_error.php"); 30: fclose($fp); 31: ?> 32:
Expected
HTTP/1.1 200 OK
Host: %s
Connection: close
X-Powered-By: PHP/%s
Content-type: text/html
<br />
<b>Fatal error</b>: Call to undefined function non_exists_function() in <b>%ssyntax_error.php</b> on line <b>%s</b><br />
Output
Warning: fsockopen(): unable to connect to localhost:8964 (Connection refused) in /var/php_gcov/PHP_5_4/sapi/cli/tests/php_cli_server_015.php on line 12
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_015.php on line 12
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- <br />
008- <b>Fatal error</b>: Call to undefined function non_exists_function() in <b>%ssyntax_error.php</b> on line <b>%s</b><br />
Generated at Tue, 21 May 2013 17:04:51 +0000 (2 days ago)
|