-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_test.go
73 lines (64 loc) · 1.67 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
package jlog_test
import (
"strings"
"testing"
"github.com/jerejones/jlog"
)
func assertStringsEqual(t *testing.T, expected, actual string) {
t.Helper()
if expected != actual {
t.Error("Strings not equal\nExpected: %s\nGot: %s", expected, actual)
}
}
func assertIntsEqual(t *testing.T, expected, actual int) {
t.Helper()
if expected != actual {
t.Error("Ints not equal\nExpected: %d\nGot: %d", expected, actual)
}
}
func TestLoadConfig_Json(t *testing.T) {
input := `{
"autoreload": true,
"routes": [
{
"name": "*",
"targets": "c,f",
"minlevel": "info"
}
],
"targets": [
{
"name": "c",
"type": "console",
"layout": "${date} {$message}"
}, {
"name": "f",
"type": "file",
"layout": "${date} [${level}] {$message}",
"filename": "${basedir}/test.log",
"header": ">>>start log",
"max_open_files": "5"
}
]
}`
cfg, err := jlog.UnmarshalConfig(strings.NewReader(input))
if err != nil {
t.Errorf("Error: %v", err)
}
if !cfg.AutoReload {
t.Error("Error: Autoload is false")
}
assertIntsEqual(t, 1, len(cfg.Routes))
assertIntsEqual(t, 2, len(cfg.Targets))
target1 := cfg.Targets[0]
assertStringsEqual(t, "c", target1.Name)
assertStringsEqual(t, "console", target1.Type)
assertStringsEqual(t, "${date} {$message}", target1.Layout)
target2 := cfg.Targets[1]
assertStringsEqual(t, "f", target2.Name)
assertStringsEqual(t, "file", target2.Type)
assertStringsEqual(t, "${date} [${level}] {$message}", target2.Layout)
assertStringsEqual(t, "${basedir}/test.log", target2.Properties["filename"])
assertStringsEqual(t, ">>>start log", target2.Properties["header"])
assertStringsEqual(t, "5", target2.Properties["max_open_files"])
}