mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
857 B
41 lines
857 B
// Copyright 2022 The Gitea Authors. All rights reserved. |
|
// SPDX-License-Identifier: MIT |
|
|
|
package setting |
|
|
|
import ( |
|
"testing" |
|
|
|
"github.com/stretchr/testify/assert" |
|
) |
|
|
|
func Test_loadMailerFrom(t *testing.T) { |
|
kases := map[string]*Mailer{ |
|
"smtp.mydomain.com": { |
|
SMTPAddr: "smtp.mydomain.com", |
|
SMTPPort: "465", |
|
}, |
|
"smtp.mydomain.com:123": { |
|
SMTPAddr: "smtp.mydomain.com", |
|
SMTPPort: "123", |
|
}, |
|
":123": { |
|
SMTPAddr: "127.0.0.1", |
|
SMTPPort: "123", |
|
}, |
|
} |
|
for host, kase := range kases { |
|
t.Run(host, func(t *testing.T) { |
|
cfg, _ := NewConfigProviderFromData("") |
|
sec := cfg.Section("mailer") |
|
sec.NewKey("ENABLED", "true") |
|
sec.NewKey("HOST", host) |
|
|
|
// Check mailer setting |
|
loadMailerFrom(cfg) |
|
|
|
assert.Equal(t, kase.SMTPAddr, MailService.SMTPAddr) |
|
assert.Equal(t, kase.SMTPPort, MailService.SMTPPort) |
|
}) |
|
} |
|
}
|
|
|