test: add test cases for sasl external authentication (imap/pop3/smtp).

This commit is contained in:
Patrick Monnerat 2015-01-27 18:03:56 +01:00
parent fe79f20957
commit ed9a4b9fc4
13 changed files with 674 additions and 1 deletions

56
tests/data/test950 Normal file
View file

@ -0,0 +1,56 @@
<testcase>
<info>
<keywords>
SMTP
SASL
SASL AUTH EXTERNAL
RFC4422
RFC4954
</keywords>
</info>
#
# Server-side
<reply>
<servercmd>
AUTH EXTERNAL
REPLY AUTH 334 EXTERNAL supported
REPLY dXNlcg== 235 Authenticated
</servercmd>
</reply>
#
# Client-side
<client>
<server>
smtp
</server>
<name>
SMTP external authentication
</name>
<stdin>
mail body
</stdin>
<command>
'smtp://user;AUTH=EXTERNAL@%HOSTIP:%SMTPPORT/950' --mail-rcpt recipient@example.com --mail-from sender@example.com -T -
</command>
</client>
#
# Verify data after the test has been "shot"
<verify>
<protocol>
EHLO 950
AUTH EXTERNAL
dXNlcg==
MAIL FROM:<sender@example.com>
RCPT TO:<recipient@example.com>
DATA
QUIT
</protocol>
<upload>
mail body
.
</upload>
</verify>
</testcase>