tests: Added SMTP AUTH with initial response tests
authorSteve Holme <steve_holme@hotmail.com>
Sat, 27 Apr 2013 12:04:02 +0000 (13:04 +0100)
committerSteve Holme <steve_holme@hotmail.com>
Sat, 27 Apr 2013 12:04:02 +0000 (13:04 +0100)
tests/data/Makefile.am
tests/data/test907 [new file with mode: 0644]
tests/data/test908 [new file with mode: 0644]

index 6bc8ce3c597b71c7aa2019fd369864eedc8b6ff0..18120374a0487c73bdc60e68574d8b10879ea38d 100644 (file)
@@ -67,7 +67,7 @@ test800 test801 test802 test803 test804 test805 test806 test807 test808 \
 \
 test850 test851 test852 test853 test854 test855 test856 test857 \
 \
-test900 test901 test902 test903 test904 test905 test906 \
+test900 test901 test902 test903 test904 test905 test906 test907 test908 \
 \
 test1000 test1001 test1002 test1003 test1004 test1005 test1006 test1007 \
 test1008 test1009 test1010 test1011 test1012 test1013 test1014 test1015 \
diff --git a/tests/data/test907 b/tests/data/test907
new file mode 100644 (file)
index 0000000..d7a25e5
--- /dev/null
@@ -0,0 +1,54 @@
+<testcase>
+<info>
+<keywords>
+SMTP
+SMTP AUTH PLAIN SASL-IR
+RFC4616
+RFC4954
+</keywords>
+</info>
+
+#
+# Server-side
+<reply>
+<servercmd>
+REPLY EHLO 250 AUTH PLAIN
+REPLY AUTH 235 Authenticated
+</servercmd>
+</reply>
+
+#
+# Client-side
+<client>
+<server>
+smtp
+</server>
+ <name>
+SMTP plain authentication with initial response
+ </name>
+<stdin>
+mail body
+</stdin>
+ <command>
+smtp://%HOSTIP:%SMTPPORT/user --mail-rcpt 907@foo --mail-from 907@from -u test:1234 -T --sasl-ir -
+</command>
+</client>
+
+#
+# Verify data after the test has been "shot"
+<verify>
+<protocol>
+EHLO user\r
+AUTH PLAIN dGVzdAB0ZXN0ADEyMzQ=\r
+MAIL FROM:<907@from>\r
+RCPT TO:<907@foo>\r
+DATA\r
+QUIT\r
+</protocol>
+<upload>
+mail body
+\r
+.\r
+</upload>
+</verify>
+</testcase>
diff --git a/tests/data/test908 b/tests/data/test908
new file mode 100644 (file)
index 0000000..8f3824d
--- /dev/null
@@ -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\r
+AUTH LOGIN dGVzdA==\r
+MTIzNA==\r
+MAIL FROM:<908@from>\r
+RCPT TO:<908@foo>\r
+DATA\r
+QUIT\r
+</protocol>
+<upload>
+mail body
+\r
+.\r
+</upload>
+</verify>
+</testcase>