2007-01-23 10:25:56 +08:00
<testcase>
2007-10-12 09:44:22 +08:00
<info>
<keywords>
HTTP
HTTP PUT
HTTP Digest auth
--anyauth
</keywords>
</info>
2004-04-06 23:14:10 +08:00
# Server-side
<reply>
<servercmd>
auth_required
</servercmd>
<data>
HTTP/1.1 401 Authorization Required swsclose
Server: Apache/1.3.27 (Darwin) PHP/4.1.2
WWW-Authenticate: Blackmagic realm="gimme all yer s3cr3ts"
WWW-Authenticate: Basic realm="gimme all yer s3cr3ts"
WWW-Authenticate: Digest realm="gimme all yer s3cr3ts", nonce="11223344"
Content-Type: text/html; charset=iso-8859-1
2004-04-19 16:41:36 +08:00
Connection: close
2004-04-06 23:14:10 +08:00
This is not the real page
</data>
# This is supposed to be returned when the server gets a
# Authorization: Digest line passed-in from the client
<data1000>
HTTP/1.1 200 OK swsclose
Server: Apache/1.3.27 (Darwin) PHP/4.1.2
Content-Type: text/html; charset=iso-8859-1
Content-Length: 23
2004-04-19 16:41:36 +08:00
Connection: close
2004-04-06 23:14:10 +08:00
This IS the real page!
</data1000>
<datacheck>
HTTP/1.1 401 Authorization Required swsclose
Server: Apache/1.3.27 (Darwin) PHP/4.1.2
WWW-Authenticate: Blackmagic realm="gimme all yer s3cr3ts"
WWW-Authenticate: Basic realm="gimme all yer s3cr3ts"
WWW-Authenticate: Digest realm="gimme all yer s3cr3ts", nonce="11223344"
Content-Type: text/html; charset=iso-8859-1
2004-04-19 16:41:36 +08:00
Connection: close
2004-04-06 23:14:10 +08:00
HTTP/1.1 200 OK swsclose
Server: Apache/1.3.27 (Darwin) PHP/4.1.2
Content-Type: text/html; charset=iso-8859-1
Content-Length: 23
2004-04-19 16:41:36 +08:00
Connection: close
2004-04-06 23:14:10 +08:00
This IS the real page!
</datacheck>
</reply>
# Client-side
<client>
<server>
http
</server>
2007-03-10 07:39:42 +08:00
<features>
2014-11-07 03:57:16 +08:00
!SSPI
2007-03-10 07:39:42 +08:00
crypto
</features>
2004-04-06 23:14:10 +08:00
<name>
HTTP PUT with --anyauth authorization (picking Digest)
</name>
<command>
2021-03-13 00:38:26 +08:00
http://%HOSTIP:%HTTPPORT/%TESTNUMBER -T log/put%TESTNUMBER -u testuser:testpass --anyauth
2004-04-06 23:14:10 +08:00
</command>
2021-03-13 00:38:26 +08:00
<file name="log/put%TESTNUMBER">
2004-04-06 23:14:10 +08:00
This is data we upload with PUT
a second line
line three
four is the number of lines
</file>
</client>
# Verify data after the test has been "shot"
<verify>
<protocol>
2021-03-13 00:38:26 +08:00
PUT /%TESTNUMBER HTTP/1.1
2007-09-15 03:32:31 +08:00
Host: %HOSTIP:%HTTPPORT
2020-10-02 19:45:24 +08:00
User-Agent: curl/%VERSION
2004-04-06 23:14:10 +08:00
Accept: */*
2004-11-25 00:11:35 +08:00
Content-Length: 85
Expect: 100-continue
2004-04-06 23:14:10 +08:00
2021-03-13 00:38:26 +08:00
PUT /%TESTNUMBER HTTP/1.1
2015-03-12 07:50:46 +08:00
Host: %HOSTIP:%HTTPPORT
2021-03-13 00:38:26 +08:00
Authorization: Digest username="testuser", realm="gimme all yer s3cr3ts", nonce="11223344", uri="/%TESTNUMBER", response="b71551e12d1c456e47d8388ecb2edeca"
2020-10-02 19:45:24 +08:00
User-Agent: curl/%VERSION
2004-04-06 23:14:10 +08:00
Accept: */*
Content-Length: 85
Expect: 100-continue
This is data we upload with PUT
a second line
line three
four is the number of lines
</protocol>
</verify>
2007-01-23 10:25:56 +08:00
</testcase>