tests: Added SMTP AUTH with initial response tests

This commit is contained in:
Steve Holme 2013-04-27 13:04:02 +01:00
parent 4118c30261
commit f9b691cdb0
3 changed files with 110 additions and 1 deletions

55
tests/data/test908 Normal file
View file

@ -0,0 +1,55 @@
<testcase>
<info>
<keywords>
SMTP
SMTP AUTH LOGIN SASL-IR
RFC4954
</keywords>
</info>
#
# Server-side
<reply>
<servercmd>
REPLY EHLO 250 AUTH LOGIN
REPLY AUTH 334 UGFzc3dvcmQ6
REPLY MTIzNA== 235 Authenticated
</servercmd>
</reply>
#
# Client-side
<client>
<server>
smtp
</server>
<name>
SMTP login authentication with initial response
</name>
<stdin>
mail body
</stdin>
<command>
smtp://%HOSTIP:%SMTPPORT/user --mail-rcpt 908@foo --mail-from 908@from -u test:1234 -T --sasl-ir -
</command>
</client>
#
# Verify data after the test has been "shot"
<verify>
<protocol>
EHLO user
AUTH LOGIN dGVzdA==
MTIzNA==
MAIL FROM:<908@from>
RCPT TO:<908@foo>
DATA
QUIT
</protocol>
<upload>
mail body
.
</upload>
</verify>
</testcase>