mirror of
https://github.com/moparisthebest/curl
synced 2024-11-02 08:35:03 -04:00
33bea767eb
are not, due mainly to the lack of support for XML character entities (e.g. & => & ). This will make it easier to validate test files using tools like xmllint, as well as edit and view them using XML tools.
36 lines
433 B
Plaintext
36 lines
433 B
Plaintext
<testcase>
|
|
# Server-side
|
|
<reply>
|
|
<data>
|
|
data in file
|
|
</data>
|
|
</reply>
|
|
|
|
# Client-side
|
|
<client>
|
|
<server>
|
|
ftp
|
|
</server>
|
|
<name>
|
|
FTP URL with ?-letters in username and password
|
|
</name>
|
|
<command>
|
|
"ftp://use?r:pass?word@%HOSTIP:%FTPPORT/191"
|
|
</command>
|
|
</client>
|
|
|
|
# Verify data after the test has been "shot"
|
|
<verify>
|
|
<protocol>
|
|
USER use?r
|
|
PASS pass?word
|
|
PWD
|
|
EPSV
|
|
TYPE I
|
|
SIZE 191
|
|
RETR 191
|
|
QUIT
|
|
</protocol>
|
|
</verify>
|
|
</testcase>
|