mirror of
https://github.com/moparisthebest/curl
synced 2024-11-05 00:55:04 -05:00
5ca96cb844
A rather big overhaul and cleanup. 1 - curl wouldn't properly detect and reject globbing that ended with an open brace if there were brackets or braces before it. Like "{}{" or "[0-1]{" 2 - curl wouldn't properly reject empty lists so that "{}{}" would result in curl getting (nil) strings in the output. 3 - By using strtoul() instead of sscanf() the code will now detected over and underflows. It now also better parses the step argument to only accept positive numbers and only step counters that is smaller than the delta between the maximum and minimum numbers. 4 - By switching to unsigned longs instead of signed ints for the counters, the max values for []-ranges are now very large (on 64bit machines). 5 - Bumped the maximum number of globs in a single URL to 100 (from 10) 6 - Simplified the code somewhat and now it stores fixed strings as single- entry lists. That's also one of the reasons why I did (5) as now all strings between "globs" will take a slot in the array. Added test 1234 and 1235 to verify. Updated test 87. This commit fixes three separate bug reports. Bug: http://curl.haxx.se/bug/view.cgi?id=1264 Bug: http://curl.haxx.se/bug/view.cgi?id=1265 Bug: http://curl.haxx.se/bug/view.cgi?id=1266 Reported-by: Will Dietz
59 lines
856 B
Plaintext
59 lines
856 B
Plaintext
<testcase>
|
|
<info>
|
|
<keywords>
|
|
[] range
|
|
FAILURE
|
|
</keywords>
|
|
</info>
|
|
#
|
|
# Server-side
|
|
<reply>
|
|
<data1>
|
|
HTTP/1.1 200 OK
|
|
Funny-head: yesyes
|
|
Content-Length: 15
|
|
|
|
the number one
|
|
</data1>
|
|
<data2>
|
|
HTTP/1.1 200 OK
|
|
Funny-head: yesyes
|
|
Content-Length: 16
|
|
|
|
two is nice too
|
|
</data2>
|
|
|
|
</reply>
|
|
#
|
|
# Client-side
|
|
<client>
|
|
<server>
|
|
http
|
|
</server>
|
|
<features>
|
|
http
|
|
</features>
|
|
<name>
|
|
urlglob with out of range -o #[num] usage
|
|
</name>
|
|
<command option="no-output">
|
|
"http://%HOSTIP:%HTTPPORT/[870001-870002]" -o "log/dumpit#2.dump"
|
|
</command>
|
|
</client>
|
|
|
|
#
|
|
# Verify data after the test has been "shot". Note that the command line
|
|
# will write both responses into the same file name so only the second
|
|
# survives
|
|
#
|
|
<verify>
|
|
<file name="log/dumpit#2.dump" [mode="text"]>
|
|
HTTP/1.1 200 OK
|
|
Funny-head: yesyes
|
|
Content-Length: 16
|
|
|
|
two is nice too
|
|
</file>
|
|
</verify>
|
|
</testcase>
|