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:
Nicolas Sterchele 2020-07-10 20:05:21 +02:00 committed by Daniel Stenberg
parent 0c6112a139
commit 0b85969226
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
5 changed files with 130 additions and 2 deletions

View file

@ -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
View 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>