mirror of
https://github.com/moparisthebest/curl
synced 2024-11-05 00:55:04 -05:00
2c5ec339ea
When not actually following the redirect and the target URL is only
stored for later retrieval, curl always accepted "non-supported"
schemes. This was a regression from 46e164069d
.
Reported-by: Brad King
Fixes #3210
Closes #3215
59 lines
996 B
Plaintext
59 lines
996 B
Plaintext
<testcase>
|
|
<info>
|
|
<keywords>
|
|
HTTP
|
|
HTTP GET
|
|
redirect_url
|
|
followlocation
|
|
--write-out
|
|
</keywords>
|
|
</info>
|
|
|
|
# Server-side
|
|
<reply>
|
|
<data nocheck="yes">
|
|
HTTP/1.1 301 This is a weirdo text message swsclose
|
|
Location: ht3p://localhost/
|
|
Content-Length: 62
|
|
Connection: close
|
|
|
|
This server reply is for testing a simple Location: following
|
|
</data>
|
|
</reply>
|
|
|
|
# Client-side
|
|
<client>
|
|
<server>
|
|
http
|
|
</server>
|
|
<name>
|
|
HTTP Location: and 'redirect_url' with non-supported scheme
|
|
</name>
|
|
<command>
|
|
http://%HOSTIP:%HTTPPORT/we/want/our/1159 -w '%{redirect_url}\n'
|
|
</command>
|
|
</client>
|
|
|
|
# Verify data after the test has been "shot"
|
|
<verify>
|
|
<strip>
|
|
^User-Agent:.*
|
|
</strip>
|
|
<protocol>
|
|
GET /we/want/our/1159 HTTP/1.1
|
|
Host: %HOSTIP:%HTTPPORT
|
|
Accept: */*
|
|
|
|
</protocol>
|
|
<stdout>
|
|
HTTP/1.1 301 This is a weirdo text message swsclose
|
|
Location: ht3p://localhost/
|
|
Content-Length: 62
|
|
Connection: close
|
|
|
|
This server reply is for testing a simple Location: following
|
|
ht3p://localhost/
|
|
</stdout>
|
|
</verify>
|
|
</testcase>
|