mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
target: Fix tests to use support go-smtp
This commit is contained in:
parent
1db37f91b1
commit
0c534f5231
3 changed files with 13 additions and 8 deletions
|
@ -982,7 +982,8 @@ func TestRemoteDelivery_TLS_FallbackNoVerify(t *testing.T) {
|
|||
be.CheckMsg(t, 0, "test@example.com", []string{"test@example.invalid"})
|
||||
|
||||
// But it should still be delivered over TLS.
|
||||
if !be.Messages[0].State.TLS.HandshakeComplete {
|
||||
tlsState, ok := be.Messages[0].Conn.TLSConnectionState()
|
||||
if !ok || !tlsState.HandshakeComplete {
|
||||
t.Fatal("Message was not delivered over TLS")
|
||||
}
|
||||
}
|
||||
|
|
|
@ -229,8 +229,10 @@ func TestDownstreamDelivery_AttemptTLS(t *testing.T) {
|
|||
|
||||
testutils.DoTestDelivery(t, mod, "test@example.invalid", []string{"rcpt@example.invalid"})
|
||||
be.CheckMsg(t, 0, "test@example.invalid", []string{"rcpt@example.invalid"})
|
||||
if !be.Messages[0].State.TLS.HandshakeComplete {
|
||||
t.Error("Expected TLS to be used, but it was not")
|
||||
|
||||
tlsState, ok := be.Messages[0].Conn.TLSConnectionState()
|
||||
if !ok || !tlsState.HandshakeComplete {
|
||||
t.Fatal("Message was not delivered over TLS")
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -278,8 +280,9 @@ func TestDownstreamDelivery_RequireTLS(t *testing.T) {
|
|||
|
||||
testutils.DoTestDelivery(t, mod, "test@example.invalid", []string{"rcpt@example.invalid"})
|
||||
be.CheckMsg(t, 0, "test@example.invalid", []string{"rcpt@example.invalid"})
|
||||
if !be.Messages[0].State.TLS.HandshakeComplete {
|
||||
t.Error("Expected TLS to be used, but it was not")
|
||||
tlsState, ok := be.Messages[0].Conn.TLSConnectionState()
|
||||
if !ok || !tlsState.HandshakeComplete {
|
||||
t.Fatal("Message was not delivered over TLS")
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -305,8 +308,9 @@ func TestDownstreamDelivery_RequireTLS_Implicit(t *testing.T) {
|
|||
|
||||
testutils.DoTestDelivery(t, mod, "test@example.invalid", []string{"rcpt@example.invalid"})
|
||||
be.CheckMsg(t, 0, "test@example.invalid", []string{"rcpt@example.invalid"})
|
||||
if !be.Messages[0].State.TLS.HandshakeComplete {
|
||||
t.Error("Expected TLS to be used, but it was not")
|
||||
tlsState, ok := be.Messages[0].Conn.TLSConnectionState()
|
||||
if !ok || !tlsState.HandshakeComplete {
|
||||
t.Fatal("Message was not delivered over TLS")
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -51,7 +51,7 @@ func TestDownstreamDelivery_EHLO_ALabel(t *testing.T) {
|
|||
testutils.DoTestDelivery(t, tgt, "test@example.com", []string{"test@example.invalid"})
|
||||
|
||||
be.CheckMsg(t, 0, "test@example.com", []string{"test@example.invalid"})
|
||||
if be.Messages[0].State.Hostname != "xn--e1aybc.invalid" {
|
||||
if be.Messages[0].Conn.Hostname() != "xn--e1aybc.invalid" {
|
||||
t.Error("target/remote should use use Punycode in EHLO")
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue