Added two test cases for multipart formpost over a proxy with --anyauth. Our
[platform/upstream/curl.git] / tests / data / test259
1 <info>
2 <keywords>
3 HTTP
4 HTTP FORMPOST
5 HTTP proxy
6 HTTP proxy Digest auth
7 </keywords>
8 </info>
9 # Server-side
10 <reply>
11 # The stupid test server doesn't response anything at all until the full
12 # request has been sent, and then of course the full POST has already been
13 # sent!
14 <data>
15 HTTP/1.1 407 no, tell me who you are first
16 Date: Thu, 09 Nov 2010 14:49:00 GMT
17 Server: test-server/fake
18 Proxy-Authenticate: Digest realm="many secrets", nonce="911"
19 Content-Length: 0
20
21 </data>
22 <data1000>
23 HTTP/1.1 200 A OK\r
24 Server: Microsoft-IIS/6.0\r
25 Content-Type: text/html; charset=iso-8859-1\r
26 Content-Length: 3\r
27 \r
28 ok
29 </data1000>
30 <datacheck>
31 HTTP/1.1 407 no, tell me who you are first
32 Date: Thu, 09 Nov 2010 14:49:00 GMT
33 Server: test-server/fake
34 Proxy-Authenticate: Digest realm="many secrets", nonce="911"
35 Content-Length: 0
36
37 HTTP/1.1 200 A OK\r
38 Server: Microsoft-IIS/6.0\r
39 Content-Type: text/html; charset=iso-8859-1\r
40 Content-Length: 3\r
41 \r
42 ok
43 </datacheck>
44
45 </reply>
46
47 # Client-side
48 <client>
49 <server>
50 http
51 </server>
52  <name>
53 HTTP POST multipart with Expect: header using proxy anyauth (Digest)
54  </name>
55  <command>
56 -x http://%HOSTIP:%HTTPPORT http://remotehost:54321/we/want/259 -F name=daniel -F tool=curl -F file=@log/test259.txt -U uuuser:pppassword --proxy-anyauth
57 </command>
58 # We create this file before the command is invoked!
59 <file name="log/test259.txt">
60 foo-
61 This is a moo-
62 bar
63 </file>
64 </client>
65
66 # Verify data after the test has been "shot"
67 <verify>
68 <strip>
69 ^(User-Agent:|Content-Type: multipart/form-data;|------).*
70 </strip>
71 <protocol>
72 POST http://remotehost:54321/we/want/259 HTTP/1.1\r
73 User-Agent: curl/7.10.4 (i686-pc-linux-gnu) libcurl/7.10.4 OpenSSL/0.9.7a ipv6 zlib/1.1.3\r
74 Host: remotehost:54321\r
75 Pragma: no-cache\r
76 Accept: */*\r
77 Content-Length: 409\r
78 Expect: 100-continue\r
79 Content-Type: multipart/form-data; boundary=----------------------------7c633d5c27ce\r
80 \r
81 ------------------------------7c633d5c27ce\r
82 Content-Disposition: form-data; name="name"\r
83 \r
84 daniel\r
85 ------------------------------7c633d5c27ce\r
86 Content-Disposition: form-data; name="tool"\r
87 \r
88 curl\r
89 ------------------------------7c633d5c27ce\r
90 Content-Disposition: form-data; name="file"; filename="test259.txt"\r
91 Content-Type: text/plain\r
92 \r
93 foo-
94 This is a moo-
95 bar
96 \r
97 ------------------------------7c633d5c27ce--\r
98 POST http://remotehost:54321/we/want/259 HTTP/1.1\r
99 User-Agent: curl/7.10.4 (i686-pc-linux-gnu) libcurl/7.10.4 OpenSSL/0.9.7a ipv6 zlib/1.1.3\r
100 Proxy-Authorization: Digest username="uuuser", realm="many secrets", nonce="911", uri="/we/want/259", response="b479994d13e60f3aa192a67c5892ddc5"\r
101 Host: remotehost:54321\r
102 Pragma: no-cache\r
103 Accept: */*\r
104 Content-Length: 409\r
105 Expect: 100-continue\r
106 Content-Type: multipart/form-data; boundary=----------------------------7c633d5c27ce\r
107 \r
108 ------------------------------7c633d5c27ce\r
109 Content-Disposition: form-data; name="name"\r
110 \r
111 daniel\r
112 ------------------------------7c633d5c27ce\r
113 Content-Disposition: form-data; name="tool"\r
114 \r
115 curl\r
116 ------------------------------7c633d5c27ce\r
117 Content-Disposition: form-data; name="file"; filename="test259.txt"\r
118 Content-Type: text/plain\r
119 \r
120 foo-
121 This is a moo-
122 bar
123 \r
124 ------------------------------7c633d5c27ce--\r
125 </protocol>
126 </verify>