tests: Update tests to match go-imap v2 behavior

This commit is contained in:
fox.cpp 2022-01-06 16:31:33 +03:00
parent cca7b485f6
commit 2eb955bbc0
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
2 changed files with 6 additions and 2 deletions

View file

@ -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 *")
}

View file

@ -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[])")