summaryrefslogtreecommitdiffstats
path: root/modules/setting/mailer_test.go
blob: f8af4a78c1fb6a17b39f4b4adb3afaa919b79037 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// 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.EqualValues(t, kase.SMTPAddr, MailService.SMTPAddr)
			assert.EqualValues(t, kase.SMTPPort, MailService.SMTPPort)
		})
	}

	t.Run("property aliases", func(t *testing.T) {
		cfg, _ := NewConfigProviderFromData("")
		sec := cfg.Section("mailer")
		sec.NewKey("ENABLED", "true")
		sec.NewKey("USERNAME", "jane.doe@example.com")
		sec.NewKey("PASSWORD", "y0u'll n3v3r gUess th1S!!1")

		loadMailerFrom(cfg)

		assert.EqualValues(t, "jane.doe@example.com", MailService.User)
		assert.EqualValues(t, "y0u'll n3v3r gUess th1S!!1", MailService.Passwd)
	})
}