maddy/framework/logparser/parse_test.go

113 lines
3.5 KiB
Go

/*
Maddy Mail Server - Composable all-in-one email server.
Copyright © 2019-2020 Max Mazurov <fox.cpp@disroot.org>, Maddy Mail Server contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package parser
import (
"reflect"
"testing"
"time"
)
func TestParse(t *testing.T) {
test := func(line string, msg Msg, errDesc string) {
t.Helper()
parsed, err := Parse(line)
if errDesc != "" {
if err == nil {
t.Errorf("Expected an error, got none")
return
}
if err.(MalformedMsg).Desc != errDesc {
t.Errorf("Wrong error desc returned: %v", err.(MalformedMsg).Desc)
return
}
}
if errDesc == "" && err != nil {
t.Errorf("Unexpected error: %v", err)
return
}
if !reflect.DeepEqual(parsed, msg) {
t.Errorf("Wrong Parse result,\n got %#+v\n want %#+v", parsed, msg)
}
}
test("2006-01-02T15:04:05.000Z module: hello\t", Msg{
Stamp: time.Date(2006, time.January, 2, 15, 4, 5, 0, time.UTC),
Module: "module",
Message: "hello",
Context: map[string]interface{}{},
}, "")
test("2006-01-02T15:04:05.000Z module: hello: whatever\t", Msg{
Stamp: time.Date(2006, time.January, 2, 15, 4, 5, 0, time.UTC),
Module: "module",
Message: "hello: whatever",
Context: map[string]interface{}{},
}, "")
test("2006-01-02T15:04:05.000Z module: hello: whatever\t{\"a\":1}", Msg{
Stamp: time.Date(2006, time.January, 2, 15, 4, 5, 0, time.UTC),
Module: "module",
Message: "hello: whatever",
Context: map[string]interface{}{
"a": float64(1),
},
}, "")
test("2006-01-02T15:04:05.000Z module: hello: whatever\t{\"a\":1,\"b\":\"bbb\"}", Msg{
Stamp: time.Date(2006, time.January, 2, 15, 4, 5, 0, time.UTC),
Module: "module",
Message: "hello: whatever",
Context: map[string]interface{}{
"a": float64(1),
"b": "bbb",
},
}, "")
test("2006-01-02T15:04:05.000Z [debug] module: hello: whatever\t{\"a\":1,\"b\":\"bbb\"}", Msg{
Stamp: time.Date(2006, time.January, 2, 15, 4, 5, 0, time.UTC),
Debug: true,
Module: "module",
Message: "hello: whatever",
Context: map[string]interface{}{
"a": float64(1),
"b": "bbb",
},
}, "")
test("2006-01-02T15:04:05.000Z [debug] oink oink: hello: whatever\t{\"a\":1,\"b\":\"bbb\"}", Msg{
Stamp: time.Date(2006, time.January, 2, 15, 4, 5, 0, time.UTC),
Debug: true,
Message: "oink oink: hello: whatever",
Context: map[string]interface{}{
"a": float64(1),
"b": "bbb",
},
}, "")
test("2006-01-02T15:04:05.000Z [debug] whatever\t{\"a\":1,\"b\":\"bbb\"}", Msg{
Stamp: time.Date(2006, time.January, 2, 15, 4, 5, 0, time.UTC),
Debug: true,
Message: "whatever",
Context: map[string]interface{}{
"a": float64(1),
"b": "bbb",
},
}, "")
test("module: hello\t", Msg{}, "timestamp parse")
test("hello\t", Msg{}, "missing a timestamp")
test("2006-01-02T15:04:05.000Z module: hello", Msg{}, "missing a tab separator")
test("2006-01-02T15:04:05.000Z [BROKEN FORMATTING: json: wtf lol omg]: hello map[stringasdasd]", Msg{}, "missing a tab separator")
}