forked from go-gitea/gitea
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow HOST has no port (go-gitea#22280) (go-gitea#22409)
Fix go-gitea#22274 Backport go-gitea#22280 This PR will allow `HOST` without port. Then a default port will be given in future steps.
- Loading branch information
Showing
3 changed files
with
57 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// Copyright 2022 The Gitea Authors. All rights reserved. | ||
// SPDX-License-Identifier: MIT | ||
|
||
package setting | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
ini "gopkg.in/ini.v1" | ||
) | ||
|
||
func TestParseMailerConfig(t *testing.T) { | ||
iniFile := ini.Empty() | ||
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) { | ||
iniFile.DeleteSection("mailer") | ||
sec := iniFile.Section("mailer") | ||
sec.NewKey("ENABLED", "true") | ||
sec.NewKey("HOST", host) | ||
|
||
// Check mailer setting | ||
parseMailerConfig(iniFile) | ||
|
||
assert.EqualValues(t, kase.SMTPAddr, MailService.SMTPAddr) | ||
assert.EqualValues(t, kase.SMTPPort, MailService.SMTPPort) | ||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters