php-src/sapi/tests/test007.phpt
Shane Caraveo b671380b6b many new enhancements to run-tests that allow for testing cgi and other
sapi modules via http.  see README.TESTING2 for more details
several sapi tests added
2003-03-25 07:45:18 +00:00

49 lines
1.1 KiB
PHP

--TEST--
Multipart Form POST Data, incorrect content length
--CGI--
--HEADERS--
return <<<END
Content-Type=multipart/form-data; boundary=---------------------------240723202011929
Content-Length=100
END;
--POST--
-----------------------------240723202011929
Content-Disposition: form-data; name="entry"
entry box
-----------------------------240723202011929
Content-Disposition: form-data; name="password"
password box
-----------------------------240723202011929
Content-Disposition: form-data; name="radio1"
test 1
-----------------------------240723202011929
Content-Disposition: form-data; name="checkbox1"
test 1
-----------------------------240723202011929
Content-Disposition: form-data; name="choices"
Choice 1
-----------------------------240723202011929
Content-Disposition: form-data; name="choices"
Choice 2
-----------------------------240723202011929
Content-Disposition: form-data; name="file"; filename="info.php"
Content-Type: application/octet-stream
<?php
phpinfo();
?>
-----------------------------240723202011929--
--GET--
--FILE--
<?php
print @$_POST['choices'];
?>
--EXPECT--