diff options
author | Stanislav Malyshev <stas@php.net> | 2012-09-15 23:11:55 -0700 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2012-09-15 23:11:55 -0700 |
commit | 6cc9d99dc2ef764281ec291c55719d8bf34e7695 (patch) | |
tree | 4a345d4595c08ba3292fa076f39f8f76eb57de83 /sapi/cli/tests | |
parent | 088640adb206361ea8e6d5705d7434c6e3d3e25c (diff) | |
parent | 27542db4e70c388346fc9983b9c7d58248aaa52d (diff) | |
download | php-git-6cc9d99dc2ef764281ec291c55719d8bf34e7695.tar.gz |
Merge branch 'PHP-5.4'
* PHP-5.4:
Respond with 501 to unknown request methods
Diffstat (limited to 'sapi/cli/tests')
-rw-r--r-- | sapi/cli/tests/bug61679.phpt | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/sapi/cli/tests/bug61679.phpt b/sapi/cli/tests/bug61679.phpt new file mode 100644 index 0000000000..819ce2fa89 --- /dev/null +++ b/sapi/cli/tests/bug61679.phpt @@ -0,0 +1,43 @@ +--TEST-- +Bug #61679 (Error on non-standard HTTP methods) +--SKIPIF-- +<?php +include "skipif.inc"; +?> +--FILE-- +<?php +include "php_cli_server.inc"; +php_cli_server_start(<<<'PHP' +echo "This should never echo"; +PHP +); + +list($host, $port) = explode(':', PHP_CLI_SERVER_ADDRESS); +$port = intval($port)?:80; + +$fp = fsockopen($host, $port, $errno, $errstr, 0.5); +if (!$fp) { + die("connect failed"); +} + +// Send a request with a fictitious request method, +// I like smurfs, the smurf everything. +if(fwrite($fp, <<<HEADER +SMURF / HTTP/1.1 +Host: {$host} + + +HEADER +)) { + while (!feof($fp)) { + echo fgets($fp); + // Only echo the first line from the response, + // the rest is not interesting + break; + } +} + +fclose($fp); +?> +--EXPECTF-- +HTTP/1.1 501 Not Implemented |