-
Notifications
You must be signed in to change notification settings - Fork 26
/
config_test.go
163 lines (144 loc) · 3.94 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
package main
import (
"path/filepath"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
type testConfigParam interface {
*testing.T | *testing.B
TempDir() string
}
func createDefaultTestConfig[V testConfigParam](t V) *config {
c := createDefaultConfig()
dir := t.TempDir()
c.Db.File = filepath.Join(dir, "blog.db")
c.User.ProfileImageFile = filepath.Join(dir, "profileImage")
return c
}
func Test_configPort(t *testing.T) {
t.Run("Default", func(t *testing.T) {
c := createDefaultTestConfig(t)
app := &goBlog{
cfg: c,
}
_ = app.initConfig(false)
assert.Equal(t, 8080, app.cfg.Server.Port)
})
t.Run("HTTPS", func(t *testing.T) {
c := createDefaultTestConfig(t)
c.Server.PublicAddress = "https://example.com"
app := &goBlog{
cfg: c,
}
_ = app.initConfig(false)
assert.Equal(t, 443, app.cfg.Server.Port)
})
t.Run("HTTPS with custom port in address", func(t *testing.T) {
c := createDefaultTestConfig(t)
c.Server.PublicAddress = "https://example.com:1234/"
app := &goBlog{
cfg: c,
}
_ = app.initConfig(false)
assert.Equal(t, 1234, app.cfg.Server.Port)
})
t.Run("HTTP with custom port in address", func(t *testing.T) {
c := createDefaultTestConfig(t)
c.Server.PublicAddress = "http://example.com:1234/"
app := &goBlog{
cfg: c,
}
_ = app.initConfig(false)
assert.Equal(t, 1234, app.cfg.Server.Port)
})
t.Run("Custom port set", func(t *testing.T) {
c := createDefaultTestConfig(t)
c.Server.Port = 3456
c.Server.PublicAddress = "https://example.com/"
app := &goBlog{
cfg: c,
}
_ = app.initConfig(false)
assert.Equal(t, 3456, app.cfg.Server.Port)
})
t.Run("Custom port set with public https", func(t *testing.T) {
c := createDefaultTestConfig(t)
c.Server.Port = 3456
c.Server.PublicHTTPS = true
c.Server.PublicAddress = "https://example.com/"
app := &goBlog{
cfg: c,
}
_ = app.initConfig(false)
assert.Equal(t, 3456, app.cfg.Server.Port)
})
}
func Test_configHttps(t *testing.T) {
t.Run("Default", func(t *testing.T) {
c := createDefaultTestConfig(t)
app := &goBlog{
cfg: c,
}
_ = app.initConfig(false)
assert.False(t, app.cfg.Server.PublicHTTPS)
assert.False(t, app.cfg.Server.manualHttps)
assert.False(t, app.cfg.Server.SecurityHeaders)
assert.False(t, app.cfg.Server.HttpsRedirect)
assert.False(t, app.useSecureCookies())
})
t.Run("Public HTTPS", func(t *testing.T) {
c := createDefaultTestConfig(t)
c.Server.PublicHTTPS = true
app := &goBlog{
cfg: c,
}
_ = app.initConfig(false)
assert.True(t, app.cfg.Server.PublicHTTPS)
assert.False(t, app.cfg.Server.manualHttps)
assert.True(t, app.cfg.Server.SecurityHeaders)
assert.True(t, app.cfg.Server.HttpsRedirect)
assert.True(t, app.useSecureCookies())
})
t.Run("Manual HTTPS", func(t *testing.T) {
c := createDefaultTestConfig(t)
c.Server.HttpsCert = "/tmp/https.cert"
c.Server.HttpsKey = "/tmp/https.key"
app := &goBlog{
cfg: c,
}
_ = app.initConfig(false)
assert.False(t, app.cfg.Server.PublicHTTPS)
assert.True(t, app.cfg.Server.manualHttps)
assert.True(t, app.cfg.Server.SecurityHeaders)
assert.False(t, app.cfg.Server.HttpsRedirect)
assert.True(t, app.useSecureCookies())
})
t.Run("HTTPS only in address", func(t *testing.T) {
c := createDefaultTestConfig(t)
c.Server.PublicAddress = "https://example.com"
app := &goBlog{
cfg: c,
}
_ = app.initConfig(false)
assert.False(t, app.cfg.Server.PublicHTTPS)
assert.False(t, app.cfg.Server.manualHttps)
assert.False(t, app.cfg.Server.SecurityHeaders)
assert.False(t, app.cfg.Server.HttpsRedirect)
assert.True(t, app.useSecureCookies())
})
}
func Test_configDefaults(t *testing.T) {
t.Run("Pagination", func(t *testing.T) {
app := &goBlog{
cfg: createDefaultTestConfig(t),
}
err := app.initConfig(false)
require.NoError(t, err)
if assert.Len(t, app.cfg.Blogs, 1) {
for _, bc := range app.cfg.Blogs {
assert.Equal(t, 10, bc.Pagination)
}
}
})
}