curl-curl/tests/data/test685
Viktor Szakats 4d2a05d3fe
tests: use crlf=yes attribute more
To make special newlines more explicit and visible.
Mostly in `<protocol>` sections, some in `<data*>` and `<upload>`.

Reducing the number of `tests/data/test*`:
- CRLF newlines from 21535 to 11337.
- files with mixed newlines from 1335 to 707.

Also delete empty `<protocol>` sections.

Closes #19284
2025-10-31 15:01:08 +01:00

53 lines
795 B
Plaintext

<testcase>
<info>
<keywords>
HTTP
netrc
</keywords>
</info>
#
# Server-side
<reply>
<data>
HTTP/1.1 200 OK
Date: Fri, 05 Aug 2022 10:09:00 GMT
Server: test-server/fake
Content-Type: text/plain
Content-Length: 6
Connection: close
-foo-
</data>
</reply>
#
# Client-side
<client>
<server>
http
</server>
<name>
netrc with no login - provided user
</name>
<command>
--netrc-optional --netrc-file %LOGDIR/netrc%TESTNUMBER http://user@%HOSTIP:%HTTPPORT/
</command>
<file name="%LOGDIR/netrc%TESTNUMBER" >
machine %HOSTIP password 5up3r53cr37
</file>
</client>
#
# Verify data after the test has been "shot"
<verify>
<protocol crlf="yes">
GET / HTTP/1.1
Host: %HOSTIP:%HTTPPORT
Authorization: Basic %b64[user:5up3r53cr37]b64%
User-Agent: curl/%VERSION
Accept: */*
</protocol>
</verify>
</testcase>