mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 05:37:34 +03:00
tests: Update tests to match go-imap v2 behavior
This commit is contained in:
parent
cca7b485f6
commit
2eb955bbc0
2 changed files with 6 additions and 2 deletions
|
@ -94,6 +94,7 @@ func TestImapsqlDelivery(tt *testing.T) {
|
|||
|
||||
imapConn.Writeln(". NOOP")
|
||||
imapConn.ExpectPattern(`\* 1 EXISTS`)
|
||||
imapConn.ExpectPattern(`\* 1 RECENT`)
|
||||
imapConn.ExpectPattern(". OK *")
|
||||
|
||||
imapConn.Writeln(". FETCH 1 (BODY.PEEK[])")
|
||||
|
@ -180,6 +181,7 @@ func TestImapsqlDeliveryMap(tt *testing.T) {
|
|||
|
||||
imapConn.Writeln(". NOOP")
|
||||
imapConn.ExpectPattern(`\* 1 EXISTS`)
|
||||
imapConn.ExpectPattern(`\* 1 RECENT`)
|
||||
imapConn.ExpectPattern(". OK *")
|
||||
}
|
||||
|
||||
|
@ -251,5 +253,6 @@ func TestImapsqlAuthMap(tt *testing.T) {
|
|||
|
||||
imapConn.Writeln(". NOOP")
|
||||
imapConn.ExpectPattern(`\* 1 EXISTS`)
|
||||
imapConn.ExpectPattern(`\* 1 RECENT`)
|
||||
imapConn.ExpectPattern(". OK *")
|
||||
}
|
||||
|
|
|
@ -98,6 +98,7 @@ func TestSMTPEndpoint_LargeMessage(tt *testing.T) {
|
|||
|
||||
imapConn.Writeln(". NOOP")
|
||||
imapConn.ExpectPattern(`\* 1 EXISTS`)
|
||||
imapConn.ExpectPattern(`\* 1 RECENT`)
|
||||
imapConn.ExpectPattern(". OK *")
|
||||
|
||||
imapConn.Writeln(". FETCH 1 (BODY.PEEK[])")
|
||||
|
@ -185,6 +186,7 @@ func TestSMTPEndpoint_FileBuffer(tt *testing.T) {
|
|||
|
||||
imapConn.Writeln(". NOOP")
|
||||
imapConn.ExpectPattern(`\* 1 EXISTS`)
|
||||
imapConn.ExpectPattern(`\* 1 RECENT`)
|
||||
imapConn.ExpectPattern(". OK *")
|
||||
|
||||
imapConn.Writeln(". FETCH 1 (BODY.PEEK[])")
|
||||
|
@ -300,9 +302,8 @@ func TestSMTPEndpoint_Autobuffer(tt *testing.T) {
|
|||
|
||||
imapConn.Writeln(". NOOP")
|
||||
// This will break with go-imap v2 upgrade merging updates.
|
||||
imapConn.ExpectPattern(`\* 1 EXISTS`)
|
||||
imapConn.ExpectPattern(`\* 2 EXISTS`)
|
||||
imapConn.ExpectPattern(`\* 3 EXISTS`)
|
||||
imapConn.ExpectPattern(`\* 3 RECENT`)
|
||||
imapConn.ExpectPattern(". OK *")
|
||||
|
||||
imapConn.Writeln(". FETCH 1:3 (BODY.PEEK[])")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue