2016-08-19 17:14:17 -07:00
|
|
|
package log
|
2016-03-18 20:57:35 +00:00
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"testing"
|
|
|
|
|
|
2017-02-21 22:51:47 -08:00
|
|
|
"github.com/coredns/coredns/middleware/pkg/response"
|
2016-10-10 12:09:29 +01:00
|
|
|
|
2016-08-19 17:14:17 -07:00
|
|
|
"github.com/mholt/caddy"
|
|
|
|
|
)
|
2016-03-18 20:57:35 +00:00
|
|
|
|
|
|
|
|
func TestLogParse(t *testing.T) {
|
|
|
|
|
tests := []struct {
|
|
|
|
|
inputLogRules string
|
|
|
|
|
shouldErr bool
|
2016-08-19 17:14:17 -07:00
|
|
|
expectedLogRules []Rule
|
2016-03-18 20:57:35 +00:00
|
|
|
}{
|
2016-08-19 17:14:17 -07:00
|
|
|
{`log`, false, []Rule{{
|
2016-03-19 12:58:08 +00:00
|
|
|
NameScope: ".",
|
2016-08-19 17:14:17 -07:00
|
|
|
OutputFile: DefaultLogFilename,
|
|
|
|
|
Format: DefaultLogFormat,
|
2016-03-18 20:57:35 +00:00
|
|
|
}}},
|
2016-08-19 17:14:17 -07:00
|
|
|
{`log log.txt`, false, []Rule{{
|
2016-03-19 12:58:08 +00:00
|
|
|
NameScope: ".",
|
2016-03-18 20:57:35 +00:00
|
|
|
OutputFile: "log.txt",
|
2016-08-19 17:14:17 -07:00
|
|
|
Format: DefaultLogFormat,
|
2016-03-18 20:57:35 +00:00
|
|
|
}}},
|
2016-08-19 17:14:17 -07:00
|
|
|
{`log example.org log.txt`, false, []Rule{{
|
2016-03-19 12:58:08 +00:00
|
|
|
NameScope: "example.org.",
|
2016-03-18 20:57:35 +00:00
|
|
|
OutputFile: "log.txt",
|
2016-08-19 17:14:17 -07:00
|
|
|
Format: DefaultLogFormat,
|
2016-03-18 20:57:35 +00:00
|
|
|
}}},
|
2016-08-19 17:14:17 -07:00
|
|
|
{`log example.org. stdout`, false, []Rule{{
|
2016-03-19 12:58:08 +00:00
|
|
|
NameScope: "example.org.",
|
2016-03-18 20:57:35 +00:00
|
|
|
OutputFile: "stdout",
|
2016-08-19 17:14:17 -07:00
|
|
|
Format: DefaultLogFormat,
|
2016-03-18 20:57:35 +00:00
|
|
|
}}},
|
2016-08-19 17:14:17 -07:00
|
|
|
{`log example.org log.txt {common}`, false, []Rule{{
|
2016-03-19 12:58:08 +00:00
|
|
|
NameScope: "example.org.",
|
2016-03-18 20:57:35 +00:00
|
|
|
OutputFile: "log.txt",
|
2016-08-19 17:14:17 -07:00
|
|
|
Format: CommonLogFormat,
|
2016-03-18 20:57:35 +00:00
|
|
|
}}},
|
2016-08-19 17:14:17 -07:00
|
|
|
{`log example.org accesslog.txt {combined}`, false, []Rule{{
|
2016-03-19 12:58:08 +00:00
|
|
|
NameScope: "example.org.",
|
2016-03-18 20:57:35 +00:00
|
|
|
OutputFile: "accesslog.txt",
|
2016-08-19 17:14:17 -07:00
|
|
|
Format: CombinedLogFormat,
|
2016-03-18 20:57:35 +00:00
|
|
|
}}},
|
2016-03-19 12:58:08 +00:00
|
|
|
{`log example.org. log.txt
|
2016-10-10 12:09:29 +01:00
|
|
|
log example.net accesslog.txt {combined}`, false, []Rule{{
|
2016-03-19 12:58:08 +00:00
|
|
|
NameScope: "example.org.",
|
2016-03-18 20:57:35 +00:00
|
|
|
OutputFile: "log.txt",
|
2016-08-19 17:14:17 -07:00
|
|
|
Format: DefaultLogFormat,
|
2016-03-18 20:57:35 +00:00
|
|
|
}, {
|
2016-03-19 12:58:08 +00:00
|
|
|
NameScope: "example.net.",
|
2016-03-18 20:57:35 +00:00
|
|
|
OutputFile: "accesslog.txt",
|
2016-08-19 17:14:17 -07:00
|
|
|
Format: CombinedLogFormat,
|
2016-03-18 20:57:35 +00:00
|
|
|
}}},
|
2016-03-19 12:58:08 +00:00
|
|
|
{`log example.org stdout {host}
|
2016-10-10 12:09:29 +01:00
|
|
|
log example.org log.txt {when}`, false, []Rule{{
|
2016-03-19 12:58:08 +00:00
|
|
|
NameScope: "example.org.",
|
2016-03-18 20:57:35 +00:00
|
|
|
OutputFile: "stdout",
|
|
|
|
|
Format: "{host}",
|
|
|
|
|
}, {
|
2016-03-19 12:58:08 +00:00
|
|
|
NameScope: "example.org.",
|
2016-03-18 20:57:35 +00:00
|
|
|
OutputFile: "log.txt",
|
|
|
|
|
Format: "{when}",
|
|
|
|
|
}}},
|
2016-10-10 12:09:29 +01:00
|
|
|
|
|
|
|
|
{`log example.org log.txt {
|
|
|
|
|
class all
|
|
|
|
|
}`, false, []Rule{{
|
|
|
|
|
NameScope: "example.org.",
|
|
|
|
|
OutputFile: "log.txt",
|
|
|
|
|
Format: CommonLogFormat,
|
|
|
|
|
Class: response.All,
|
|
|
|
|
}}},
|
|
|
|
|
{`log example.org log.txt {
|
|
|
|
|
class denial
|
|
|
|
|
}`, false, []Rule{{
|
|
|
|
|
NameScope: "example.org.",
|
|
|
|
|
OutputFile: "log.txt",
|
|
|
|
|
Format: CommonLogFormat,
|
|
|
|
|
Class: response.Denial,
|
|
|
|
|
}}},
|
|
|
|
|
{`log {
|
|
|
|
|
class denial
|
|
|
|
|
}`, false, []Rule{{
|
|
|
|
|
NameScope: ".",
|
|
|
|
|
OutputFile: DefaultLogFilename,
|
|
|
|
|
Format: CommonLogFormat,
|
|
|
|
|
Class: response.Denial,
|
|
|
|
|
}}},
|
2016-03-18 20:57:35 +00:00
|
|
|
}
|
|
|
|
|
for i, test := range tests {
|
2016-08-19 17:14:17 -07:00
|
|
|
c := caddy.NewTestController("dns", test.inputLogRules)
|
2016-03-18 20:57:35 +00:00
|
|
|
actualLogRules, err := logParse(c)
|
|
|
|
|
|
|
|
|
|
if err == nil && test.shouldErr {
|
|
|
|
|
t.Errorf("Test %d didn't error, but it should have", i)
|
|
|
|
|
} else if err != nil && !test.shouldErr {
|
|
|
|
|
t.Errorf("Test %d errored, but it shouldn't have; got '%v'", i, err)
|
|
|
|
|
}
|
|
|
|
|
if len(actualLogRules) != len(test.expectedLogRules) {
|
|
|
|
|
t.Fatalf("Test %d expected %d no of Log rules, but got %d ",
|
|
|
|
|
i, len(test.expectedLogRules), len(actualLogRules))
|
|
|
|
|
}
|
|
|
|
|
for j, actualLogRule := range actualLogRules {
|
|
|
|
|
|
2016-03-19 12:58:08 +00:00
|
|
|
if actualLogRule.NameScope != test.expectedLogRules[j].NameScope {
|
|
|
|
|
t.Errorf("Test %d expected %dth LogRule NameScope to be %s , but got %s",
|
|
|
|
|
i, j, test.expectedLogRules[j].NameScope, actualLogRule.NameScope)
|
2016-03-18 20:57:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if actualLogRule.OutputFile != test.expectedLogRules[j].OutputFile {
|
|
|
|
|
t.Errorf("Test %d expected %dth LogRule OutputFile to be %s , but got %s",
|
|
|
|
|
i, j, test.expectedLogRules[j].OutputFile, actualLogRule.OutputFile)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if actualLogRule.Format != test.expectedLogRules[j].Format {
|
|
|
|
|
t.Errorf("Test %d expected %dth LogRule Format to be %s , but got %s",
|
|
|
|
|
i, j, test.expectedLogRules[j].Format, actualLogRule.Format)
|
|
|
|
|
}
|
2016-10-10 12:09:29 +01:00
|
|
|
|
|
|
|
|
if actualLogRule.Class != test.expectedLogRules[j].Class {
|
|
|
|
|
t.Errorf("Test %d expected %dth LogRule Class to be %s , but got %s",
|
|
|
|
|
i, j, test.expectedLogRules[j].Class, actualLogRule.Class)
|
|
|
|
|
}
|
2016-03-18 20:57:35 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|