mirror of
https://github.com/wneessen/go-mail.git
synced 2024-11-22 05:40:50 +01:00
Compare commits
No commits in common. "d00969886a72f0a6d638417d002519b478b389ab" and "181539f8fd8c1a137fe61788b1e664739efff629" have entirely different histories.
d00969886a
...
181539f8fd
2 changed files with 0 additions and 44 deletions
|
@ -170,9 +170,6 @@ type (
|
||||||
// requestDSN indicates wether we want to request DSN (Delivery Status Notifications).
|
// requestDSN indicates wether we want to request DSN (Delivery Status Notifications).
|
||||||
requestDSN bool
|
requestDSN bool
|
||||||
|
|
||||||
// sendMutex is used to synchronize access to shared resources during the dial and send methods.
|
|
||||||
sendMutex sync.Mutex
|
|
||||||
|
|
||||||
// smtpAuth is the authentication type that is used to authenticate the user with SMTP server. It
|
// smtpAuth is the authentication type that is used to authenticate the user with SMTP server. It
|
||||||
// satisfies the smtp.Auth interface.
|
// satisfies the smtp.Auth interface.
|
||||||
//
|
//
|
||||||
|
@ -1061,8 +1058,6 @@ func (c *Client) DialAndSend(messages ...*Msg) error {
|
||||||
// - An error if the connection fails, if sending the messages fails, or if closing the
|
// - An error if the connection fails, if sending the messages fails, or if closing the
|
||||||
// connection fails; otherwise, returns nil.
|
// connection fails; otherwise, returns nil.
|
||||||
func (c *Client) DialAndSendWithContext(ctx context.Context, messages ...*Msg) error {
|
func (c *Client) DialAndSendWithContext(ctx context.Context, messages ...*Msg) error {
|
||||||
c.sendMutex.Lock()
|
|
||||||
defer c.sendMutex.Unlock()
|
|
||||||
if err := c.DialWithContext(ctx); err != nil {
|
if err := c.DialWithContext(ctx); err != nil {
|
||||||
return fmt.Errorf("dial failed: %w", err)
|
return fmt.Errorf("dial failed: %w", err)
|
||||||
}
|
}
|
||||||
|
|
|
@ -2297,45 +2297,6 @@ func TestClient_DialAndSendWithContext(t *testing.T) {
|
||||||
t.Errorf("client was supposed to fail on dial")
|
t.Errorf("client was supposed to fail on dial")
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
t.Run("concurrent sending via DialAndSendWithContext", func(t *testing.T) {
|
|
||||||
ctx, cancel := context.WithCancel(context.Background())
|
|
||||||
defer cancel()
|
|
||||||
PortAdder.Add(1)
|
|
||||||
serverPort := int(TestServerPortBase + PortAdder.Load())
|
|
||||||
featureSet := "250-8BITMIME\r\n250-DSN\r\n250 SMTPUTF8"
|
|
||||||
go func() {
|
|
||||||
if err := simpleSMTPServer(ctx, t, &serverProps{
|
|
||||||
FeatureSet: featureSet,
|
|
||||||
ListenPort: serverPort,
|
|
||||||
}); err != nil {
|
|
||||||
t.Errorf("failed to start test server: %s", err)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
time.Sleep(time.Millisecond * 30)
|
|
||||||
|
|
||||||
client, err := NewClient(DefaultHost, WithPort(serverPort), WithTLSPolicy(NoTLS))
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("failed to create new client: %s", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
wg := sync.WaitGroup{}
|
|
||||||
for i := 0; i < 50; i++ {
|
|
||||||
wg.Add(1)
|
|
||||||
go func() {
|
|
||||||
defer wg.Done()
|
|
||||||
msg := testMessage(t)
|
|
||||||
msg.SetMessageIDWithValue("this.is.a.message.id")
|
|
||||||
|
|
||||||
ctxDial, cancelDial := context.WithTimeout(ctx, time.Minute)
|
|
||||||
defer cancelDial()
|
|
||||||
if goroutineErr := client.DialAndSendWithContext(ctxDial, msg); goroutineErr != nil {
|
|
||||||
t.Errorf("failed to dial and send message: %s", goroutineErr)
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
}
|
|
||||||
wg.Wait()
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestClient_auth(t *testing.T) {
|
func TestClient_auth(t *testing.T) {
|
||||||
|
|
Loading…
Reference in a new issue