2024-06-28 17:14:29 +00:00
|
|
|
package logstorage
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestParsePipeStreamContextSuccess(t *testing.T) {
|
|
|
|
f := func(pipeStr string) {
|
|
|
|
t.Helper()
|
|
|
|
expectParsePipeSuccess(t, pipeStr)
|
|
|
|
}
|
|
|
|
|
|
|
|
f(`stream_context before 5`)
|
|
|
|
f(`stream_context after 10`)
|
2024-09-26 20:22:21 +00:00
|
|
|
f(`stream_context after 0`)
|
2024-06-28 17:14:29 +00:00
|
|
|
f(`stream_context before 10 after 20`)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestParsePipeStreamContextFailure(t *testing.T) {
|
|
|
|
f := func(pipeStr string) {
|
|
|
|
t.Helper()
|
|
|
|
expectParsePipeFailure(t, pipeStr)
|
|
|
|
}
|
|
|
|
|
|
|
|
f(`stream_context`)
|
|
|
|
f(`stream_context before`)
|
|
|
|
f(`stream_context after`)
|
|
|
|
f(`stream_context before after`)
|
|
|
|
f(`stream_context after before`)
|
|
|
|
f(`stream_context before -4`)
|
|
|
|
f(`stream_context after -4`)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPipeStreamContextUpdateNeededFields(t *testing.T) {
|
|
|
|
f := func(s, neededFields, unneededFields, neededFieldsExpected, unneededFieldsExpected string) {
|
|
|
|
t.Helper()
|
|
|
|
expectPipeNeededFields(t, s, neededFields, unneededFields, neededFieldsExpected, unneededFieldsExpected)
|
|
|
|
}
|
|
|
|
|
|
|
|
// all the needed fields
|
2024-07-01 23:37:46 +00:00
|
|
|
f("stream_context after 4 before 10", "*", "", "*", "")
|
2024-06-28 17:14:29 +00:00
|
|
|
|
|
|
|
// plus unneeded fields
|
2024-07-01 23:37:46 +00:00
|
|
|
f("stream_context before 10 after 4", "*", "f1,f2", "*", "f1,f2")
|
2024-06-28 17:14:29 +00:00
|
|
|
f("stream_context after 4", "*", "_time,f1,_stream_id", "*", "f1")
|
|
|
|
|
|
|
|
// needed fields
|
|
|
|
f("stream_context before 3", "f1,f2", "", "_stream_id,_time,f1,f2", "")
|
|
|
|
f("stream_context before 3", "_time,f1,_stream_id", "", "_stream_id,_time,f1", "")
|
|
|
|
}
|