test 814: smtp without --mail-from

Verifies the fix from commit 322f3d5af7
This commit is contained in:
Daniel Stenberg 2011-09-21 22:32:27 +02:00
parent 322f3d5af7
commit e9cf4cb791
2 changed files with 54 additions and 1 deletions

View File

@ -56,7 +56,8 @@ test632 test633 test634 test635 test636 test637 test700 test701 test702 \
test703 test704 test705 test706 test707 test708 test709 test710 \
test800 test801 test802 \
test803 test804 test805 test806 test807 test808 test809 test810 test811 \
test812 test813 test1000 test1001 test1002 test1003 test1004 test1005 \
test812 test813 test814 \
test1000 test1001 test1002 test1003 test1004 test1005 \
test1006 test1007 test1008 test1009 test1010 test1011 test1012 test1013 \
test1014 test1015 test1016 test1017 test1018 test1019 test1020 test1021 \
test1022 test1023 test1024 test1025 test1026 test1027 test1028 test1029 \

52
tests/data/test814 Normal file
View File

@ -0,0 +1,52 @@
<testcase>
<info>
<keywords>
SMTP
</keywords>
</info>
#
# Server-side
<reply>
</reply>
#
# Client-side
<client>
<server>
smtp
</server>
<name>
SMTP without --mail-from
</name>
<stdin>
From: different
To: another
body
</stdin>
<command>
smtp://%HOSTIP:%SMTPPORT/user --mail-rcpt 814@foo -T -
</command>
</client>
#
# Verify data after the test has been "shot"
<verify>
<protocol>
EHLO user
MAIL FROM:<>
RCPT TO:<814@foo>
DATA
QUIT
</protocol>
<upload>
From: different
To: another
body
.
</upload>
</verify>
</testcase>