1
0
mirror of https://github.com/moparisthebest/curl synced 2024-11-17 15:05:02 -05:00
curl/tests/data/test815
Steve Holme c267c53017 pop3: Added support for SASL based authentication mechanism detection
Added support for detecting the supported SASL authentication mechanisms
via the AUTH command. There are two ways of detecting them, either by
using the AUTH command, that will return -ERR if not supported or by
using the CAPA command which will return SASL and the list of mechanisms
if supported, not include SASL if SASL authentication is not supported
or -ERR if the CAPA command is not supported. As such it seems simpler
to use the AUTH command and fallback to normal clear text authentication
if the the command is not supported.

Additionally updated the test cases to return -ERR when the AUTH command
is encountered. Additional test cases will be added when support for the
individual authentication mechanisms is added.
2012-05-27 19:09:38 +01:00

63 lines
751 B
Plaintext

<testcase>
<info>
<keywords>
POP3
RETR
</keywords>
</info>
#
# Server-side
<reply>
<servercmd>
REPLY AUTH -ERR unsupported command
</servercmd>
<data>
From: me@somewhere
To: fake@nowhere
..body with a single dot first
...triple dots...
--
yours sincerely
</data>
<datacheck>
From: me@somewhere
To: fake@nowhere
.body with a single dot first
..triple dots...
--
yours sincerely
</datacheck>
</reply>
#
# Client-side
<client>
<server>
pop3
</server>
<name>
POP3 RETR with dot-prefixed line
</name>
<command>
pop3://%HOSTIP:%POP3PORT/815 -u user:secret
</command>
</client>
#
# Verify data after the test has been "shot"
<verify>
<protocol>
AUTH
USER user
PASS secret
RETR 815
QUIT
</protocol>
</verify>
</testcase>