mirror of
https://github.com/moparisthebest/curl
synced 2024-11-07 10:05:06 -05:00
dda815b776
Curl_pop3_write() now has a state machine that scans for the end of a POP3 body so that the CR LF '.' CR LF sequence can come in everything from one up to five subsequent packets. Test case 810 is modified to use SLOWDOWN which makes the server pause between each single byte and thus makes the POP3 body get sent to curl basically one byte at a time.
51 lines
668 B
Plaintext
51 lines
668 B
Plaintext
<testcase>
|
|
<info>
|
|
<keywords>
|
|
POP3
|
|
LIST
|
|
</keywords>
|
|
</info>
|
|
|
|
#
|
|
# Server-side
|
|
<reply>
|
|
# We use SLOWDOWN to really exercise the end-of-body parsing over multiple
|
|
# packets
|
|
<servercmd>
|
|
SLOWDOWN
|
|
</servercmd>
|
|
# When doing LIST, we get the default list output hard-coded in the test
|
|
# POP3 server
|
|
<datacheck>
|
|
1 100
|
|
2 4294967400
|
|
4 200
|
|
</datacheck>
|
|
</reply>
|
|
|
|
#
|
|
# Client-side
|
|
<client>
|
|
<server>
|
|
pop3
|
|
</server>
|
|
<name>
|
|
POP3 LIST messages from *SLOW* server
|
|
</name>
|
|
<command>
|
|
pop3://%HOSTIP:%POP3PORT/ -u user:secret
|
|
</command>
|
|
</client>
|
|
|
|
#
|
|
# Verify data after the test has been "shot"
|
|
<verify>
|
|
<protocol>
|
|
USER user
|
|
PASS secret
|
|
LIST
|
|
QUIT
|
|
</protocol>
|
|
</verify>
|
|
</testcase>
|