tests: Added SMTP VRFY command tests
authorSteve Holme <steve_holme@hotmail.com>
Sat, 16 Nov 2013 12:00:30 +0000 (12:00 +0000)
committerSteve Holme <steve_holme@hotmail.com>
Sat, 16 Nov 2013 12:20:22 +0000 (12:20 +0000)
tests/data/Makefile.am
tests/data/test923 [new file with mode: 0644]
tests/data/test924 [new file with mode: 0644]
tests/data/test925 [new file with mode: 0644]
tests/data/test926 [new file with mode: 0644]

index 34689cb..007582a 100644 (file)
@@ -74,7 +74,7 @@ test868 test869 test870 test871 test872 test873 test874 \
 \
 test900 test901 test902 test903 test904 test905 test906 test907 test908 \
 test909 test910 test911 test912 test913 test914 test915 test916 test917 \
-test918 test919 test920 test921 test922 \
+test918 test919 test920 test921 test922 test923 test924 test925 test926 \
 \
 test1000 test1001 test1002 test1003 test1004 test1005 test1006 test1007 \
 test1008 test1009 test1010 test1011 test1012 test1013 test1014 test1015 \
diff --git a/tests/data/test923 b/tests/data/test923
new file mode 100644 (file)
index 0000000..79f283b
--- /dev/null
@@ -0,0 +1,38 @@
+<testcase>
+<info>
+<keywords>
+SMTP
+VRFY
+</keywords>
+</info>
+
+#
+# Server-side
+<reply>
+250 <recipient@example.com>\r
+</reply>
+
+#
+# Client-side
+<client>
+<server>
+smtp
+</server>
+ <name>
+SMTP VRFY
+ </name>
+ <command>
+smtp://%HOSTIP:%SMTPPORT/923 --mail-rcpt recipient
+</command>
+</client>
+
+#
+# Verify data after the test has been "shot"
+<verify>
+<protocol>
+EHLO 923\r
+VRFY recipient\r
+QUIT\r
+</protocol>
+</verify>
+</testcase>
diff --git a/tests/data/test924 b/tests/data/test924
new file mode 100644 (file)
index 0000000..ec07ccd
--- /dev/null
@@ -0,0 +1,41 @@
+<testcase>
+<info>
+<keywords>
+SMTP
+VRFY
+</keywords>
+</info>
+
+#
+# Server-side
+<reply>
+553-Ambiguous; Possibilities are:\r
+553-Joe Smith <joe.smith@example.com>\r
+553-Harry Smith <harry.smith@example.com>\r
+553 Melvin Smith <melvin.smith@example.com>\r
+</reply>
+
+#
+# Client-side
+<client>
+<server>
+smtp
+</server>
+ <name>
+SMTP ambiguous VRFY
+ </name>
+ <command>
+smtp://%HOSTIP:%SMTPPORT/924 --mail-rcpt smith
+</command>
+</client>
+
+#
+# Verify data after the test has been "shot"
+<verify>
+<protocol>
+EHLO 924\r
+VRFY smith\r
+QUIT\r
+</protocol>
+</verify>
+</testcase>
diff --git a/tests/data/test925 b/tests/data/test925
new file mode 100644 (file)
index 0000000..dcc64f4
--- /dev/null
@@ -0,0 +1,38 @@
+<testcase>
+<info>
+<keywords>
+SMTP
+VRFY
+</keywords>
+</info>
+
+#
+# Server-side
+<reply>
+252 Send some mail and I'll try my best\r
+</reply>
+
+#
+# Client-side
+<client>
+<server>
+smtp
+</server>
+ <name>
+SMTP external VRFY
+ </name>
+ <command>
+smtp://%HOSTIP:%SMTPPORT/925 --mail-rcpt user@example.net
+</command>
+</client>
+
+#
+# Verify data after the test has been "shot"
+<verify>
+<protocol>
+EHLO 925\r
+VRFY user@example.net\r
+QUIT\r
+</protocol>
+</verify>
+</testcase>
diff --git a/tests/data/test926 b/tests/data/test926
new file mode 100644 (file)
index 0000000..1e40894
--- /dev/null
@@ -0,0 +1,42 @@
+<testcase>
+<info>
+<keywords>
+SMTP
+VRFY
+</keywords>
+</info>
+
+#
+# Server-side
+<reply>
+550 Unknown user\r
+</reply>
+
+#
+# Client-side
+<client>
+<server>
+smtp
+</server>
+ <name>
+SMTP unknown user VRFY
+ </name>
+ <command>
+smtp://%HOSTIP:%SMTPPORT/926 --mail-rcpt recipient
+</command>
+</client>
+
+#
+# Verify data after the test has been "shot"
+<verify>
+# 56 - CURLE_RECV_ERROR
+<errorcode>
+56
+</errorcode>
+<protocol>
+EHLO 926\r
+VRFY recipient\r
+QUIT\r
+</protocol>
+</verify>
+</testcase>