mirror of
https://github.com/curl/curl.git
synced 2026-07-24 19:07:17 +03:00
getinfo: reset retry-after value in initinfo
- Avoid re-using retry_after value from preceding request - Add libtest 3010 to verify Reported-by: joey-l-us on github Fixes #5661 Closes #5672
This commit is contained in:
parent
0c6112a139
commit
0b85969226
5 changed files with 130 additions and 2 deletions
|
|
@ -225,4 +225,4 @@ test2080 \
|
|||
test2100 \
|
||||
\
|
||||
test3000 test3001 \
|
||||
test3002 test3003 test3004 test3005 test3006 test3007
|
||||
test3002 test3003 test3004 test3005 test3006 test3007 test3010
|
||||
|
|
|
|||
57
tests/data/test3010
Normal file
57
tests/data/test3010
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
<testcase>
|
||||
<info>
|
||||
<keywords>
|
||||
HTTP
|
||||
HTTP Basic
|
||||
RETRY-AFTER
|
||||
</keywords>
|
||||
</info>
|
||||
|
||||
# Server-side
|
||||
<reply>
|
||||
<data nocheck="yes">
|
||||
HTTP/1.1 301 Moved Permanently
|
||||
Date: Thu, 09 Nov 2010 14:49:00 GMT
|
||||
Server: test-server/fake
|
||||
Content-Type: text/html
|
||||
Content-Length: 0
|
||||
Retry-After: 2
|
||||
Location: /30100002
|
||||
|
||||
</data>
|
||||
<data2>
|
||||
HTTP/1.1 200 OK
|
||||
Date: Thu, 09 Nov 2010 14:49:00 GMT
|
||||
Server: test-server/fake
|
||||
Content-Type: text/html
|
||||
Content-Length: 0
|
||||
|
||||
</data2>
|
||||
</reply>
|
||||
|
||||
# Client-side
|
||||
<client>
|
||||
<server>
|
||||
http
|
||||
</server>
|
||||
|
||||
<name>
|
||||
HTTP retry-after reset
|
||||
</name>
|
||||
<tool>
|
||||
lib3010
|
||||
</tool>
|
||||
|
||||
<command>
|
||||
%HOSTIP:%HTTPPORT/3010
|
||||
</command>
|
||||
</client>
|
||||
|
||||
# Verify data after the test has been "shot"
|
||||
<verify>
|
||||
<stdout>
|
||||
Retry-After: 2
|
||||
Retry-After: 0
|
||||
</stdout>
|
||||
</verify>
|
||||
</testcase>
|
||||
Loading…
Add table
Add a link
Reference in a new issue