-
Notifications
You must be signed in to change notification settings - Fork 157
/
config_test.go
88 lines (78 loc) · 2.17 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
package main
import (
"regexp"
"testing"
"time"
"github.com/papertrail/remote_syslog2/syslog"
"github.com/stretchr/testify/assert"
)
func TestRawConfig(t *testing.T) {
assert := assert.New(t)
initConfigAndFlags()
// pretend like some things were passed on the command line
flags.Set("configfile", "test/config.yaml")
flags.Set("tls", "true")
c, err := NewConfigFromEnv()
if err != nil {
t.Fatal(err)
}
assert.Equal(c.Destination.Host, "logs.papertrailapp.com")
assert.Equal(c.Destination.Port, 514)
assert.Equal(c.Destination.Protocol, "tls")
assert.Equal(c.Destination.Token, "0123456789-ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz")
assert.Equal(c.ExcludePatterns, []*regexp.Regexp{regexp.MustCompile("don't log on me"), regexp.MustCompile(`do \w+ on me`)})
assert.Equal(c.ExcludeFiles, []*regexp.Regexp{regexp.MustCompile(`\.DS_Store`)})
assert.Equal(c.Files, []LogFile{
{
Path: "locallog.txt",
},
{
Path: "/var/log/**/*.log",
},
{
Tag: "nginx",
Path: "/var/log/nginx/nginx.log",
},
{
Tag: "apache",
Path: "/var/log/httpd/access_log",
},
})
assert.Equal(c.TcpMaxLineLength, 99991)
assert.Equal(c.NewFileCheckInterval, 10*time.Second)
assert.Equal(c.ConnectTimeout, 5*time.Second)
assert.Equal(c.WriteTimeout, 30*time.Second)
assert.Equal(c.TCP, false)
assert.Equal(c.TLS, true)
assert.Equal(c.LogLevels, "<root>=INFO")
assert.Equal(c.PidFile, "/var/run/rs2.pid")
assert.Equal(c.DebugLogFile, "/dev/null")
assert.Equal(c.NoDetach, false)
sev, err := syslog.Severity("notice")
if err != nil {
t.Fatal(err)
}
assert.Equal(c.Severity, sev)
fac, err := syslog.Facility("user")
if err != nil {
t.Fatal(err)
}
assert.Equal(c.Facility, fac)
assert.NotEqual(c.Hostname, "")
assert.Equal(c.Poll, false)
}
func TestNoConfigFile(t *testing.T) {
assert := assert.New(t)
initConfigAndFlags()
flags.Set("dest-host", "localhost")
flags.Set("dest-port", "999")
c, err := NewConfigFromEnv()
if err != nil {
t.Fatal(err)
}
assert.NoError(c.Validate())
assert.Equal("localhost", c.Destination.Host)
assert.Equal(999, c.Destination.Port)
assert.Equal("udp", c.Destination.Protocol)
assert.Equal("", c.Destination.Token)
}