mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
214 lines
5.2 KiB
Go
214 lines
5.2 KiB
Go
|
package logstorage
|
||
|
|
||
|
import (
|
||
|
"reflect"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestExtractFormatApply(t *testing.T) {
|
||
|
f := func(pattern, s string, resultsExpected []string) {
|
||
|
t.Helper()
|
||
|
|
||
|
steps, err := parseExtractFormatSteps(pattern)
|
||
|
if err != nil {
|
||
|
t.Fatalf("unexpected error: %s", err)
|
||
|
}
|
||
|
ef := newExtractFormat(steps)
|
||
|
ef.apply(s)
|
||
|
|
||
|
if len(ef.fields) != len(resultsExpected) {
|
||
|
t.Fatalf("unexpected number of results; got %d; want %d", len(ef.fields), len(resultsExpected))
|
||
|
}
|
||
|
for i, f := range ef.fields {
|
||
|
if v := *f.value; v != resultsExpected[i] {
|
||
|
t.Fatalf("unexpected value for field %q; got %q; want %q", f.name, v, resultsExpected[i])
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
f("<foo>", "", []string{""})
|
||
|
f("<foo>", "abc", []string{"abc"})
|
||
|
f("<foo>bar", "", []string{""})
|
||
|
f("<foo>bar", "bar", []string{""})
|
||
|
f("<foo>bar", "bazbar", []string{"baz"})
|
||
|
f("<foo>bar", "a bazbar xdsf", []string{"a baz"})
|
||
|
f("<foo>bar<>", "a bazbar xdsf", []string{"a baz"})
|
||
|
f("<foo>bar<>x", "a bazbar xdsf", []string{"a baz"})
|
||
|
f("foo<bar>", "", []string{""})
|
||
|
f("foo<bar>", "foo", []string{""})
|
||
|
f("foo<bar>", "a foo xdf sdf", []string{" xdf sdf"})
|
||
|
f("foo<bar>", "a foo foobar", []string{" foobar"})
|
||
|
f("foo<bar>baz", "a foo foobar", []string{""})
|
||
|
f("foo<bar>baz", "a foobaz bar", []string{""})
|
||
|
f("foo<bar>baz", "a foo foobar baz", []string{" foobar "})
|
||
|
f("foo<bar>baz", "a foo foobar bazabc", []string{" foobar "})
|
||
|
|
||
|
f("ip=<ip> <> path=<path> ", "x=a, ip=1.2.3.4 method=GET host='abc' path=/foo/bar some tail here", []string{"1.2.3.4", "/foo/bar"})
|
||
|
|
||
|
// escaped pattern
|
||
|
f("ip=<<ip>>", "foo ip=<1.2.3.4> bar", []string{"1.2.3.4"})
|
||
|
f("ip=<<ip>>", "foo ip=<foo&bar> bar", []string{"foo&bar"})
|
||
|
|
||
|
// quoted fields
|
||
|
f(`"msg":<msg>,`, `{"foo":"bar","msg":"foo,b\"ar\n\t","baz":"x"}`, []string{`foo,b"ar` + "\n\t"})
|
||
|
f(`foo=<bar>`, "foo=`bar baz,abc` def", []string{"bar baz,abc"})
|
||
|
f(`foo=<bar> `, "foo=`bar baz,abc` def", []string{"bar baz,abc"})
|
||
|
f(`<foo>`, `"foo,\"bar"`, []string{`foo,"bar`})
|
||
|
f(`<foo>,"bar`, `"foo,\"bar"`, []string{`foo,"bar`})
|
||
|
}
|
||
|
|
||
|
func TestParseExtractFormatStepsSuccess(t *testing.T) {
|
||
|
f := func(s string, stepsExpected []extractFormatStep) {
|
||
|
t.Helper()
|
||
|
|
||
|
steps, err := parseExtractFormatSteps(s)
|
||
|
if err != nil {
|
||
|
t.Fatalf("unexpected error when parsing %q: %s", s, err)
|
||
|
}
|
||
|
if !reflect.DeepEqual(steps, stepsExpected) {
|
||
|
t.Fatalf("unexpected steps for [%s]; got %v; want %v", s, steps, stepsExpected)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
f("<foo>", []extractFormatStep{
|
||
|
{
|
||
|
field: "foo",
|
||
|
},
|
||
|
})
|
||
|
f("<foo>bar", []extractFormatStep{
|
||
|
{
|
||
|
field: "foo",
|
||
|
},
|
||
|
{
|
||
|
prefix: "bar",
|
||
|
},
|
||
|
})
|
||
|
f("<>bar<foo>", []extractFormatStep{
|
||
|
{},
|
||
|
{
|
||
|
prefix: "bar",
|
||
|
field: "foo",
|
||
|
},
|
||
|
})
|
||
|
f("bar<foo>", []extractFormatStep{
|
||
|
{
|
||
|
prefix: "bar",
|
||
|
field: "foo",
|
||
|
},
|
||
|
})
|
||
|
f("bar<foo>abc", []extractFormatStep{
|
||
|
{
|
||
|
prefix: "bar",
|
||
|
field: "foo",
|
||
|
},
|
||
|
{
|
||
|
prefix: "abc",
|
||
|
},
|
||
|
})
|
||
|
f("bar<foo>abc<_>", []extractFormatStep{
|
||
|
{
|
||
|
prefix: "bar",
|
||
|
field: "foo",
|
||
|
},
|
||
|
{
|
||
|
prefix: "abc",
|
||
|
},
|
||
|
})
|
||
|
f("<foo>bar<baz>", []extractFormatStep{
|
||
|
{
|
||
|
field: "foo",
|
||
|
},
|
||
|
{
|
||
|
prefix: "bar",
|
||
|
field: "baz",
|
||
|
},
|
||
|
})
|
||
|
f("bar<foo>baz", []extractFormatStep{
|
||
|
{
|
||
|
prefix: "bar",
|
||
|
field: "foo",
|
||
|
},
|
||
|
{
|
||
|
prefix: "baz",
|
||
|
},
|
||
|
})
|
||
|
f("<<foo>&gt;", []extractFormatStep{
|
||
|
{
|
||
|
prefix: "<",
|
||
|
field: "foo",
|
||
|
},
|
||
|
{
|
||
|
prefix: ">",
|
||
|
},
|
||
|
})
|
||
|
}
|
||
|
|
||
|
func TestParseExtractFormatStepFailure(t *testing.T) {
|
||
|
f := func(s string) {
|
||
|
t.Helper()
|
||
|
|
||
|
_, err := parseExtractFormatSteps(s)
|
||
|
if err == nil {
|
||
|
t.Fatalf("expecting non-nil error when parsing %q", s)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// empty string
|
||
|
f("")
|
||
|
|
||
|
// zero fields
|
||
|
f("foobar")
|
||
|
|
||
|
// Zero named fields
|
||
|
f("<>")
|
||
|
f("foo<>")
|
||
|
f("<>foo")
|
||
|
f("foo<_>bar<*>baz<>xxx")
|
||
|
|
||
|
// missing delimiter between fields
|
||
|
f("<foo><bar>")
|
||
|
f("<><bar>")
|
||
|
f("<foo><>")
|
||
|
f("bb<foo><><bar>aa")
|
||
|
f("aa<foo><bar>")
|
||
|
f("aa<foo><bar>bb")
|
||
|
|
||
|
// missing >
|
||
|
f("<foo")
|
||
|
f("foo<bar")
|
||
|
}
|
||
|
|
||
|
func TestPipeExtractUpdateNeededFields(t *testing.T) {
|
||
|
f := func(s string, neededFields, unneededFields, neededFieldsExpected, unneededFieldsExpected string) {
|
||
|
t.Helper()
|
||
|
expectPipeNeededFields(t, s, neededFields, unneededFields, neededFieldsExpected, unneededFieldsExpected)
|
||
|
}
|
||
|
|
||
|
// all the needed fields
|
||
|
f("extract from x '<foo>'", "*", "", "*", "foo")
|
||
|
|
||
|
// all the needed fields, unneeded fields do not intersect with fromField and output fields
|
||
|
f("extract from x '<foo>'", "*", "f1,f2", "*", "f1,f2,foo")
|
||
|
|
||
|
// all the needed fields, unneeded fields intersect with fromField
|
||
|
f("extract from x '<foo>'", "*", "f2,x", "*", "f2,foo")
|
||
|
|
||
|
// all the needed fields, unneeded fields intersect with output fields
|
||
|
f("extract from x '<foo>x<bar>'", "*", "f2,foo", "*", "bar,f2,foo")
|
||
|
|
||
|
// all the needed fields, unneeded fields intersect with all the output fields
|
||
|
f("extract from x '<foo>x<bar>'", "*", "f2,foo,bar", "*", "bar,f2,foo,x")
|
||
|
|
||
|
// needed fields do not intersect with fromField and output fields
|
||
|
f("extract from x '<foo>x<bar>'", "f1,f2", "", "f1,f2", "")
|
||
|
|
||
|
// needed fields intersect with fromField
|
||
|
f("extract from x '<foo>x<bar>'", "f2,x", "", "f2,x", "")
|
||
|
|
||
|
// needed fields intersect with output fields
|
||
|
f("extract from x '<foo>x<bar>'", "f2,foo", "", "f2,x", "")
|
||
|
|
||
|
// needed fields intersect with fromField and output fields
|
||
|
f("extract from x '<foo>x<bar>'", "f2,foo,x,y", "", "f2,x,y", "")
|
||
|
}
|