signoz/pkg/query-service/app/logparsingpipeline/postablePipeline_test.go
Nityananda Gohain 1a3e46cecd
feat: integrate pipelines API (#2457)
* chore: integrate pipelines API

* fix: limit support integrated in pipelines

* fix: interface to string

* fix: json parser and allow deleting all pipelines

* fix: output modified if operators are disabled

* fix: validation updated for operators

* fix: expression check added

* fix: regex expression check added

* fix: remove operator validation updated

* fix: tests updated for pipeline builder

* fix: fix error messages in http handler

* fix: dont return payload if there is an error

* fix: extracting userId from context moved to auth package

* fix: api errors moved to http handler

* fix: get version logic updated

* fix: deployment result message updated

* fix: pipeline builder edgecase fixed and tests updated

* fix: get failing postablePipeline tests to pass

---------

Co-authored-by: Vishal Sharma <makeavish786@gmail.com>
Co-authored-by: Raj <rkssisodiya@gmail.com>
2023-07-31 21:34:42 +05:30

240 lines
4.4 KiB
Go

package logparsingpipeline
import (
"testing"
. "github.com/smartystreets/goconvey/convey"
"go.signoz.io/signoz/pkg/query-service/model"
)
var correctQueriesTest = []struct {
Name string
Pipeline PostablePipeline
IsValid bool
}{
{
Name: "No orderId",
Pipeline: PostablePipeline{
Name: "pipeline 1",
Alias: "pipeline1",
Enabled: true,
Filter: "attributes.method == \"GET\"",
Config: []model.PipelineOperator{},
},
IsValid: false,
},
{
Name: "Invalid orderId",
Pipeline: PostablePipeline{
OrderId: 0,
Name: "pipeline 1",
Alias: "pipeline1",
Enabled: true,
Filter: "attributes.method == \"GET\"",
Config: []model.PipelineOperator{},
},
IsValid: false,
},
{
Name: "Valid orderId",
Pipeline: PostablePipeline{
OrderId: 1,
Name: "pipeline 1",
Alias: "pipeline1",
Enabled: true,
Filter: "attributes.method == \"GET\"",
Config: []model.PipelineOperator{},
},
IsValid: true,
},
{
Name: "Invalid filter",
Pipeline: PostablePipeline{
OrderId: 1,
Name: "pipeline 1",
Alias: "pipeline1",
Enabled: true,
Filter: "test filter",
},
IsValid: false,
},
{
Name: "Valid filter",
Pipeline: PostablePipeline{
OrderId: 1,
Name: "pipeline 1",
Alias: "pipeline1",
Enabled: true,
Filter: "attributes.method == \"GET\"",
},
IsValid: true,
},
}
func TestIsValidPostablePipeline(t *testing.T) {
for _, test := range correctQueriesTest {
Convey(test.Name, t, func() {
err := test.Pipeline.IsValid()
if test.IsValid {
So(err, ShouldBeNil)
} else {
So(err, ShouldBeError)
}
})
}
}
var operatorTest = []struct {
Name string
Operator model.PipelineOperator
IsValid bool
}{
{
Name: "Operator - without id",
Operator: model.PipelineOperator{
Type: "remove",
Field: "attributes.abc",
},
IsValid: false,
},
{
Name: "Operator - without type",
Operator: model.PipelineOperator{
ID: "test",
Field: "attributes.abc",
},
IsValid: false,
},
{
Name: "Copy - invalid to and from",
Operator: model.PipelineOperator{
ID: "copy",
Type: "copy",
From: "date",
To: "attributes",
},
IsValid: false,
},
{
Name: "Move - invalid to and from",
Operator: model.PipelineOperator{
ID: "move",
Type: "move",
From: "attributes",
To: "data",
},
IsValid: false,
},
{
Name: "Add - invalid to and from",
Operator: model.PipelineOperator{
ID: "add",
Type: "add",
Field: "data",
},
IsValid: false,
},
{
Name: "Remove - invalid to and from",
Operator: model.PipelineOperator{
ID: "remove",
Type: "remove",
Field: "data",
},
IsValid: false,
},
{
Name: "Add - valid",
Operator: model.PipelineOperator{
ID: "add",
Type: "add",
Field: "body",
Value: "val",
},
IsValid: true,
},
{
Name: "Move - valid",
Operator: model.PipelineOperator{
ID: "move",
Type: "move",
From: "attributes.x1",
To: "attributes.x2",
},
IsValid: true,
},
{
Name: "Copy - valid",
Operator: model.PipelineOperator{
ID: "copy",
Type: "copy",
From: "resource.x1",
To: "resource.x2",
},
IsValid: true,
},
{
Name: "Unknown operator",
Operator: model.PipelineOperator{
ID: "copy",
Type: "operator",
From: "resource.x1",
To: "resource.x2",
},
IsValid: false,
},
{
Name: "Grok - valid",
Operator: model.PipelineOperator{
ID: "grok",
Type: "grok_parser",
Pattern: "%{COMMONAPACHELOG}",
ParseTo: "attributes",
},
IsValid: true,
},
{
Name: "Grok - invalid",
Operator: model.PipelineOperator{
ID: "grok",
Type: "grok_parser",
Pattern: "%{COMMONAPACHELOG}",
ParseTo: "test",
},
IsValid: false,
},
{
Name: "Regex - valid",
Operator: model.PipelineOperator{
ID: "regex",
Type: "regex_parser",
Regex: "(?P<time>[^ Z]+) (?P<stream>stdout|stderr) (?P<logtag>[^ ]*) ?(?P<log>.*)$",
ParseTo: "attributes",
},
IsValid: true,
},
{
Name: "Regex - invalid",
Operator: model.PipelineOperator{
ID: "regex",
Type: "regex_parser",
Regex: "abcd",
ParseTo: "attributes",
},
IsValid: false,
},
}
func TestValidOperator(t *testing.T) {
for _, test := range operatorTest {
Convey(test.Name, t, func() {
err := isValidOperator(test.Operator)
if test.IsValid {
So(err, ShouldBeNil)
} else {
So(err, ShouldBeError)
}
})
}
}