From: Xinchen Hui Date: Wed, 21 Sep 2011 07:51:31 +0000 (+0000) Subject: change test, and added a test for post file X-Git-Tag: php-5.5.0alpha1~1097 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8d97573973577a49ffa785f23d919ffcfdb72884;p=php change test, and added a test for post file --- diff --git a/sapi/cli/tests/php_cli_server_004.phpt b/sapi/cli/tests/php_cli_server_004.phpt index 513840d9e0..804e0bfbda 100644 --- a/sapi/cli/tests/php_cli_server_004.phpt +++ b/sapi/cli/tests/php_cli_server_004.phpt @@ -27,6 +27,7 @@ GET / HTTP/1.1 Host:{$host} User-Agent:dummy Custom:foo +Referer:http://www.php.net/ HEADER @@ -41,9 +42,10 @@ HEADER HTTP/1.1 200 OK Host: %s Connection: closed -X-Powered-By: PHP/5.5.0-dev +X-Powered-By: PHP/%s-dev 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/" diff --git a/sapi/cli/tests/php_cli_server_005.phpt b/sapi/cli/tests/php_cli_server_005.phpt new file mode 100644 index 0000000000..b94b5b8a37 --- /dev/null +++ b/sapi/cli/tests/php_cli_server_005.phpt @@ -0,0 +1,74 @@ +--TEST-- +Post a file +--SKIPIF-- + +--FILE-- + +--EXPECTF-- +HTTP/1.1 200 OK +Host: %s +Connection: closed +X-Powered-By: PHP/%s-dev +Content-type: text/html + +array(1) { + ["userfile"]=> + array(5) { + ["name"]=> + string(12) "laruence.txt" + ["type"]=> + string(10) "text/plain" + ["tmp_name"]=> + string(%d) "%s" + ["error"]=> + int(0) + ["size"]=> + int(26) + } +}