mirror of
https://github.com/curl/curl.git
synced 2026-04-14 00:51:42 +08:00
There are 58 non-compliant files. Mark them with the `notxml` keyword. Also include the compliant ones in the GHA/checksrc xmllint CI job. Also: - delete XML prolog from the 3 test data files that had them. - FILEFORMAT.md: document the `notxml` keyword. - FILEFORMAT.md: fix a typo. Follow-up tode49cc89ab#19470 Follow-up tof3095f0dbd#19528 Follow-up to87ba80a6dfCloses #19595
61 lines
939 B
Plaintext
61 lines
939 B
Plaintext
<testcase>
|
|
<info>
|
|
<keywords>
|
|
HTTP
|
|
HTTP POST
|
|
CURLOPT_HTTPTRAILER_FUNCTION
|
|
CURLOPT_HTTPTRAILER_DATA
|
|
notxml
|
|
</keywords>
|
|
</info>
|
|
|
|
# Server-side
|
|
<reply>
|
|
<data nocheck="yes">
|
|
HTTP/1.0 200 OK swsclose
|
|
Date: Tue, 09 Nov 2010 14:49:00 GMT
|
|
Server: test-server/fake
|
|
</data>
|
|
</reply>
|
|
# Client-side
|
|
<client>
|
|
<features>
|
|
http
|
|
</features>
|
|
<server>
|
|
http
|
|
</server>
|
|
<name>
|
|
HTTP POST with trailers at the end
|
|
</name>
|
|
<tool>
|
|
lib%TESTNUMBER
|
|
</tool>
|
|
<command>
|
|
http://%HOSTIP:%HTTPPORT/bzz/%TESTNUMBER
|
|
</command>
|
|
<stdin>
|
|
more than one byte
|
|
</stdin>
|
|
</client>
|
|
|
|
# Verify data after the test has been "shot"
|
|
<verify>
|
|
<protocol crlf="yes">
|
|
POST /bzz/%TESTNUMBER HTTP/1.1
|
|
Host: %HOSTIP:%HTTPPORT
|
|
Accept: */*
|
|
Trailer: my-super-awesome-trailer, my-other-awesome-trailer
|
|
Transfer-Encoding: chunked
|
|
Content-Type: application/x-www-form-urlencoded
|
|
|
|
11
|
|
xxx=yyy&aaa=bbbbb
|
|
0
|
|
my-super-awesome-trailer: trail1
|
|
my-other-awesome-trailer: trail2
|
|
|
|
</protocol>
|
|
</verify>
|
|
</testcase>
|