setopt: clear proxy auth properly on NULL

Verify NULLed proxy credentials with test1648

Closes #21696
This commit is contained in:
Daniel Stenberg 2026-05-20 13:39:25 +02:00
parent f902c3c486
commit 88c7e16cce
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
5 changed files with 206 additions and 8 deletions

View file

@ -216,7 +216,7 @@ test1612 test1613 test1614 test1615 test1616 test1617 test1618 test1619 \
test1620 test1621 test1622 test1623 test1624 test1625 test1626 test1627 \
test1628 test1629 test1630 test1631 test1632 test1633 test1634 test1635 \
test1636 test1637 test1638 test1639 test1640 test1641 test1642 test1643 \
test1644 test1645 test1646 test1647 \
test1644 test1645 test1646 test1647 test1648 \
\
test1650 test1651 test1652 test1653 test1654 test1655 test1656 test1657 \
test1658 test1659 test1660 test1661 test1662 test1663 test1664 test1665 \

63
tests/data/test1648 Normal file
View file

@ -0,0 +1,63 @@
<?xml version="1.0" encoding="US-ASCII"?>
<testcase>
<info>
<keywords>
HTTP
HTTP GET
HTTP proxy
HTTP proxy auth
</keywords>
</info>
# Server-side
<reply>
# this is returned first since we get no proxy-auth
<data crlf="headers" nocheck="yes">
HTTP/1.1 407 Authorization Required to proxy me my dear
Proxy-Authenticate: Digest realm="weirdorealm", nonce="12345"
Content-Length: 33
And you should ignore this data.
</data>
</reply>
# Client-side
<client>
<server>
http
</server>
# tool is what to use instead of 'curl'
<tool>
lib%TESTNUMBER
</tool>
<features>
proxy
</features>
<name>
HTTP proxy with auth, change proxy, clear auth
</name>
<command>
%HOSTIP %HTTPPORT
</command>
</client>
# Verify data after the test has been "shot"
<verify>
<protocol crlf="headers">
GET http://example.com/ HTTP/1.1
Host: example.com
Proxy-Authorization: Basic %b64[victim:secret]b64%
Accept: */*
Proxy-Connection: Keep-Alive
GET http://example.com/ HTTP/1.1
Host: example.com
Accept: */*
Proxy-Connection: Keep-Alive
</protocol>
</verify>
</testcase>