-
Notifications
You must be signed in to change notification settings - Fork 5
/
config_test.go
111 lines (88 loc) · 1.86 KB
/
config_test.go
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
package mailbear_test
import (
"testing"
"github.com/DenBeke/mailbear"
"github.com/stretchr/testify/require"
)
func TestConfigValidateValid(t *testing.T) {
// TODO
}
func TestConfigValidateInvalid(t *testing.T) {
// TODO
}
func TestFormValidateValid(t *testing.T) {
testInput := []mailbear.Form{
{
Key: "test",
AllowedDomains: []string{
"allowed.tld",
"another.allowed.tld",
},
ToEmail: []string{
},
},
}
for _, testForm := range testInput {
err := testForm.Validate()
require.NoError(t, err, "should be valid form")
}
}
func TestFormValidateInvalid(t *testing.T) {
testInput := []mailbear.Form{
{
// no allowed domains
Key: "test",
AllowedDomains: []string{},
ToEmail: []string{
},
},
{
// no to email
Key: "test",
AllowedDomains: []string{
"allowed.tld",
"another.allowed.tld",
},
},
{
// no form key
AllowedDomains: []string{
"allowed.tld",
"another.allowed.tld",
},
ToEmail: []string{
},
},
{
// invalid email
Key: "test",
AllowedDomains: []string{
"allowed.tld",
"another.allowed.tld",
},
ToEmail: []string{
"some-invalid-email",
},
},
}
for _, testForm := range testInput {
err := testForm.Validate()
require.Error(t, err, "should be invalid form")
}
}
var simpleForm = mailbear.Form{
AllowedDomains: []string{
"allowed.tld",
"another.allowed.tld",
},
}
func TestOriginDomainAllowed(t *testing.T) {
require.True(t, simpleForm.OriginDomainAllowed("http://allowed.tld"), "allowed domain")
require.True(t, simpleForm.OriginDomainAllowed("https://another.allowed.tld"), "allowed domain")
}
func TestOriginDomainNotAllowed(t *testing.T) {
require.False(t, simpleForm.OriginDomainAllowed("http://random.domain.tld"), "not allowed domain")
}