Commit 85e94492 authored by Steve Holme's avatar Steve Holme
Browse files

email-tests: Updated the test data that corresponds to the test number

Finished segregating the email protocol tests, into their own protocol
based ranges, in preparation of adding more e-mail related tests to the
test suite.
parent 5a6464ae
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ imap
IMAP FETCH
 </name>
 <command>
'imap://%HOSTIP:%IMAPPORT/801/;UID=1' -u user:secret
'imap://%HOSTIP:%IMAPPORT/800/;UID=1' -u user:secret
</command>
</client>

@@ -40,7 +40,7 @@ IMAP FETCH
<protocol>
A001 CAPABILITY
A002 LOGIN user secret
A003 SELECT 801
A003 SELECT 800
A004 FETCH 1 BODY[]
A005 LOGOUT
</protocol>
+2 −2
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ pop3
POP3 RETR
 </name>
 <command>
pop3://%HOSTIP:%POP3PORT/800 -u user:secret
pop3://%HOSTIP:%POP3PORT/850 -u user:secret
</command>
</client>

@@ -41,7 +41,7 @@ pop3://%HOSTIP:%POP3PORT/800 -u user:secret
CAPA
USER user
PASS secret
RETR 800
RETR 850
QUIT
</protocol>
</verify>
+3 −3
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ LIST
<reply>
<servercmd>
# include the '.\r\n' 3-byte trailer to end the transfer poperly!
REPLY LIST +OK 808 100\r\n.
REPLY LIST +OK 851 100\r\n.
</servercmd>
</reply>

@@ -25,7 +25,7 @@ pop3
POP3 LIST one message
 </name>
 <command>
pop3://%HOSTIP:%POP3PORT/808 -l -u user:secret
pop3://%HOSTIP:%POP3PORT/851 -l -u user:secret
</command>
</client>

@@ -36,7 +36,7 @@ pop3://%HOSTIP:%POP3PORT/808 -l -u user:secret
CAPA
USER user
PASS secret
LIST 808
LIST 851
QUIT
</protocol>
</verify>
+2 −2
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ pop3
POP3 LIST invalid message
 </name>
 <command>
pop3://%HOSTIP:%POP3PORT/809 -l -u user:secret
pop3://%HOSTIP:%POP3PORT/852 -l -u user:secret
</command>
</client>

@@ -39,7 +39,7 @@ pop3://%HOSTIP:%POP3PORT/809 -l -u user:secret
CAPA
USER user
PASS secret
LIST 809
LIST 852
QUIT
</protocol>
</verify>
+2 −2
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ pop3
POP3 RETR invalid message
 </name>
 <command>
pop3://%HOSTIP:%POP3PORT/812 -u user:secret
pop3://%HOSTIP:%POP3PORT/855 -u user:secret
</command>
</client>

@@ -39,7 +39,7 @@ pop3://%HOSTIP:%POP3PORT/812 -u user:secret
CAPA
USER user
PASS secret
RETR 812
RETR 855
QUIT
</protocol>
</verify>
Loading