-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_test.go
259 lines (223 loc) · 7.21 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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
// Copyright 2023 Juca Crispim <[email protected]>
// This file is part of tupi.
// tupi is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// tupi is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
// You should have received a copy of the GNU Affero General Public License
// along with tupi. If not, see <http://www.gnu.org/licenses/>.
package tupi
import (
"flag"
"os"
"reflect"
"testing"
)
func TestGetConfig_FromCommandLine(t *testing.T) {
old_command := flag.CommandLine
testCommandLine = []string{"-host", "1.1.1.1", "-root", "/some/dir", "-auth-methods", "POST,GET"}
flag.CommandLine = flag.NewFlagSet("tupi", flag.ExitOnError)
defer func() {
testCommandLine = nil
flag.CommandLine = old_command
}()
conf, err := GetConfig()
if err != nil {
t.Fatalf("Error GetConfigFromCommandLine %s", err.Error())
}
if conf.Domains["default"].Host != "1.1.1.1" {
t.Fatalf("Bad host GetConfigFromCommandLine %s", conf.Domains["default"].Host)
}
if conf.Domains["default"].RootDir != "/some/dir" {
t.Fatalf("Bad root dir GetConfigFromCommandLine %s", conf.Domains["default"].RootDir)
}
if !reflect.DeepEqual(conf.Domains["default"].AuthMethods, []string{"POST", "GET"}) {
t.Fatalf("Bad auth methods %s", conf.Domains["default"].AuthMethods)
}
}
func TestGetConfig_FromFile(t *testing.T) {
old_command := flag.CommandLine
testCommandLine = []string{"-host", "1.1.1.1", "-conf", "./testdata/conf.toml"}
flag.CommandLine = flag.NewFlagSet("tupi", flag.ExitOnError)
defer func() {
testCommandLine = nil
flag.CommandLine = old_command
}()
conf, err := GetConfig()
if err != nil {
t.Fatalf("Errr GetConfigFromFile %s", err.Error())
}
if conf.Domains["default"].Host != "2.2.2.2" {
t.Fatalf("Bad host GetConfigFromFile %s", conf.Domains["default"].Host)
}
if conf.Domains["default"].Port != 1234 {
t.Fatalf("Bad port GetConfigFromFile %d", conf.Domains["default"].Port)
}
if conf.Domains["default"].RootDir != "/some/dir" {
t.Fatalf("Bad root dir GetConfigFromFile %s", conf.Domains["default"].RootDir)
}
}
func TestGetConfig_FromFile_InlineTable(t *testing.T) {
old_command := flag.CommandLine
testCommandLine = []string{"-host", "1.1.1.1", "-conf", "./testdata/conf_inline_table.toml"}
flag.CommandLine = flag.NewFlagSet("tupi", flag.ExitOnError)
defer func() {
testCommandLine = nil
flag.CommandLine = old_command
}()
conf, err := GetConfig()
if err != nil {
t.Fatalf("Errr GetConfigFromFile %s", err.Error())
}
if conf.Domains["default"].Host != "2.2.2.2" {
t.Fatalf("Bad host GetConfigFromFile %s", conf.Domains["default"].Host)
}
if conf.Domains["default"].Port != 1234 {
t.Fatalf("Bad port GetConfigFromFile %d", conf.Domains["default"].Port)
}
if conf.Domains["default"].RootDir != "/some/dir" {
t.Fatalf("Bad root dir GetConfigFromFile %s", conf.Domains["default"].RootDir)
}
cnf := conf.Domains["default"].AuthPluginConf
val, _ := cnf["somekey"].(string)
if val != "the value" {
t.Fatalf("Bad plugin conf %s", val)
}
other, _ := cnf["other"].(string)
if other != "strange {value\n}" {
t.Fatalf("Bad plugin conf %s", other)
}
}
func TestGetConfig_FromFile_MultipleDomains(t *testing.T) {
old_command := flag.CommandLine
testCommandLine = []string{"-host", "1.1.1.1", "-conf", "./testdata/vdomains_conf.toml"}
flag.CommandLine = flag.NewFlagSet("tupi", flag.ExitOnError)
defer func() {
testCommandLine = nil
flag.CommandLine = old_command
}()
conf, err := GetConfig()
if err != nil {
t.Fatalf("Errr GetConfigFromFile %s", err.Error())
}
if conf.Domains["default"].Host != "2.2.2.2" {
t.Fatalf("Bad host GetConfigFromFile %s", conf.Domains["default"].Host)
}
if conf.Domains["domain"].Host != "3.3.3.3" {
t.Fatalf("Bad host GetConfigFromFile %s", conf.Domains["domain"].Host)
}
if conf.Domains["other.domain"].Host != "4.4.4.4" {
t.Fatalf("Bad host GetConfigFromFile %s", conf.Domains["other.domain"].Host)
}
}
func TestGetConfig_FromFile_EnvVar(t *testing.T) {
old_command := flag.CommandLine
testCommandLine = []string{"-host", "1.1.1.1"}
os.Setenv("TUPI_CONFIG_FILE", "./testdata/conf.toml")
defer os.Unsetenv("TUPI_CONFIG_FILE")
flag.CommandLine = flag.NewFlagSet("tupi", flag.ExitOnError)
defer func() {
testCommandLine = nil
flag.CommandLine = old_command
}()
conf, err := GetConfig()
if err != nil {
t.Fatalf("Errr GetConfigFromFile %s", err.Error())
}
if conf.Domains["default"].Host != "2.2.2.2" {
t.Fatalf("Bad host GetConfigFromFile %s", conf.Domains["default"].Host)
}
if conf.Domains["default"].Port != 1234 {
t.Fatalf("Bad port GetConfigFromFile %d", conf.Domains["default"].Port)
}
if conf.Domains["default"].RootDir != "/some/dir" {
t.Fatalf("Bad root dir GetConfigFromFile %s", conf.Domains["default"].RootDir)
}
}
func TestValidate_MissingCertFile(t *testing.T) {
config := DomainConfig{
KeyFilePath: "some path",
}
c := Config{}
c.Domains = make(map[string]DomainConfig)
c.Domains["default"] = config
if c.Validate() == nil {
t.Fatalf("It says the config is valid missing certfile")
}
}
func TestValidate_MissingKeyFile(t *testing.T) {
config := DomainConfig{
CertFilePath: "some path",
}
c := Config{}
c.Domains = make(map[string]DomainConfig)
c.Domains["default"] = config
if c.Validate() == nil {
t.Fatalf("It says the config is valid missing keyfile")
}
}
func TestValidate_WithCertAndKeyFile(t *testing.T) {
config := DomainConfig{
CertFilePath: "some-path",
KeyFilePath: "the other",
}
c := Config{}
c.Domains = make(map[string]DomainConfig)
c.Domains["default"] = config
if c.Validate() != nil {
t.Fatalf("Invalid config with cert and key file!")
}
}
func TestHasSSL_True(t *testing.T) {
old_command := flag.CommandLine
testCommandLine = []string{}
flag.CommandLine = flag.NewFlagSet("tupi", flag.ExitOnError)
defer func() {
testCommandLine = nil
flag.CommandLine = old_command
}()
fpath := "./testdata/conf.toml"
os.Setenv("TUPI_CONFIG_FILE", fpath)
defer os.Unsetenv("TUPI_CONFIG_FILE")
conf, err := GetConfig()
if err != nil {
t.Fatalf("Error reading config file for ssl false %s", err.Error())
}
if !conf.HasSSL() {
t.Fatalf("dont have ssl for config with ssl")
}
}
func TestHasSSL_False(t *testing.T) {
fpath := "./testdata/vdomains_conf.toml"
os.Setenv("TUPI_CONFIG_FILE", fpath)
defer os.Unsetenv("TUPI_CONFIG_FILE")
old_command := flag.CommandLine
testCommandLine = []string{}
flag.CommandLine = flag.NewFlagSet("tupi", flag.ExitOnError)
defer func() {
testCommandLine = nil
flag.CommandLine = old_command
}()
conf, err := GetConfig()
if err != nil {
t.Fatalf("Error reading config file for ssl false %s", err.Error())
}
if conf.HasSSL() {
t.Fatalf("do have ssl for config without ssl")
}
}
func TestValidate_BadRedirect(t *testing.T) {
dconf := DomainConfig{
redirToHttps: true,
}
conf, _ := GetConfig()
conf.Domains["default"] = dconf
err := conf.Validate()
if err == nil {
t.Fatalf("Bad validate")
}
}