mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
tests: Add integration/smoke test for imapsql delivery
This commit is contained in:
parent
1da80d9ac5
commit
24d88a1bb4
1 changed files with 113 additions and 0 deletions
113
tests/imapsql_test.go
Normal file
113
tests/imapsql_test.go
Normal file
|
@ -0,0 +1,113 @@
|
|||
//+build integration,cgo,!nosqlite3
|
||||
|
||||
/*
|
||||
Maddy Mail Server - Composable all-in-one email server.
|
||||
Copyright © 2019-2020 Max Mazurov <fox.cpp@disroot.org>, Maddy Mail Server contributors
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package tests_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/foxcpp/maddy/tests"
|
||||
)
|
||||
|
||||
// Smoke test to ensure message delivery is handled correctly.
|
||||
|
||||
func TestImapsqlDelivery(tt *testing.T) {
|
||||
tt.Parallel()
|
||||
t := tests.NewT(tt)
|
||||
|
||||
t.DNS(nil)
|
||||
t.Port("imap")
|
||||
t.Port("smtp")
|
||||
t.Config(`
|
||||
storage.imapsql test_store {
|
||||
driver sqlite3
|
||||
dsn imapsql.db
|
||||
}
|
||||
|
||||
imap tcp://127.0.0.1:{env:TEST_PORT_imap} {
|
||||
tls off
|
||||
|
||||
auth dummy
|
||||
storage &test_store
|
||||
}
|
||||
|
||||
smtp tcp://127.0.0.1:{env:TEST_PORT_smtp} {
|
||||
hostname maddy.test
|
||||
tls off
|
||||
|
||||
deliver_to &test_store
|
||||
}
|
||||
`)
|
||||
t.Run(2)
|
||||
defer t.Close()
|
||||
|
||||
imapConn := t.Conn("imap")
|
||||
defer imapConn.Close()
|
||||
imapConn.ExpectPattern(`\* OK *`)
|
||||
imapConn.Writeln(". LOGIN testusr@maddy.test 1234")
|
||||
imapConn.ExpectPattern(". OK *")
|
||||
imapConn.Writeln(". SELECT INBOX")
|
||||
imapConn.ExpectPattern(`\* *`)
|
||||
imapConn.ExpectPattern(`\* *`)
|
||||
imapConn.ExpectPattern(`\* *`)
|
||||
imapConn.ExpectPattern(`\* *`)
|
||||
imapConn.ExpectPattern(`\* *`)
|
||||
imapConn.ExpectPattern(`\* *`)
|
||||
imapConn.ExpectPattern(`. OK *`)
|
||||
|
||||
smtpConn := t.Conn("smtp")
|
||||
defer smtpConn.Close()
|
||||
smtpConn.SMTPNegotation("localhost", nil, nil)
|
||||
smtpConn.Writeln("MAIL FROM:<sender@maddy.test>")
|
||||
smtpConn.ExpectPattern("2*")
|
||||
smtpConn.Writeln("RCPT TO:<testusr@maddy.test>")
|
||||
smtpConn.ExpectPattern("2*")
|
||||
smtpConn.Writeln("DATA")
|
||||
smtpConn.ExpectPattern("354 *")
|
||||
smtpConn.Writeln("From: <sender@maddy.test>")
|
||||
smtpConn.Writeln("To: <testusr@maddy.test>")
|
||||
smtpConn.Writeln("Subject: Hi!")
|
||||
smtpConn.Writeln("")
|
||||
smtpConn.Writeln("Hi!")
|
||||
smtpConn.Writeln(".")
|
||||
smtpConn.ExpectPattern("2*")
|
||||
|
||||
time.Sleep(500 * time.Millisecond)
|
||||
|
||||
imapConn.Writeln(". NOOP")
|
||||
imapConn.ExpectPattern(`\* 1 EXISTS`)
|
||||
imapConn.ExpectPattern(". OK *")
|
||||
|
||||
imapConn.Writeln(". FETCH 1 (BODY.PEEK[])")
|
||||
imapConn.ExpectPattern(`\* 1 FETCH (BODY\[\] {304}*`)
|
||||
imapConn.Expect(`Delivered-To: testusr@maddy.test`)
|
||||
imapConn.Expect(`Return-Path: <sender@maddy.test>`)
|
||||
imapConn.Expect(`Received: from localhost (localhost [127.0.0.1]) by maddy.test`)
|
||||
imapConn.ExpectPattern(` (envelope-sender <sender@maddy.test>) with ESMTP id *; *`)
|
||||
imapConn.ExpectPattern(` *`)
|
||||
imapConn.Expect("From: <sender@maddy.test>")
|
||||
imapConn.Expect("To: <testusr@maddy.test>")
|
||||
imapConn.Expect("Subject: Hi!")
|
||||
imapConn.Expect("")
|
||||
imapConn.Expect("Hi!")
|
||||
imapConn.Expect(")")
|
||||
imapConn.ExpectPattern(`. OK *`)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue