mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 10:20:29 -06:00
70223b2e3d
Signed-off-by: bergquist <carl.bergquist@gmail.com> Co-authored-by: Kyle Brandt <kyle@grafana.com>
102 lines
3.4 KiB
Go
102 lines
3.4 KiB
Go
package loki
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/grafana/grafana/pkg/promlib/models"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestInjectScopesIntoLokiQuery(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
query string
|
|
scopeFilters []models.ScopeFilter
|
|
expected string
|
|
expectErr bool
|
|
}{
|
|
{
|
|
name: "No filters with no existing filter",
|
|
query: `{} |= "an unexpected error"`,
|
|
expected: `{} |= "an unexpected error"`,
|
|
expectErr: false,
|
|
},
|
|
{
|
|
name: "No filters with existing filter",
|
|
query: `{namespace="default"} |= "an unexpected error"`,
|
|
expected: `{namespace="default"} |= "an unexpected error"`,
|
|
expectErr: false,
|
|
},
|
|
{
|
|
name: "scopes with existing filter",
|
|
query: `{namespace="default"} |= "an unexpected error"`,
|
|
scopeFilters: []models.ScopeFilter{
|
|
{Key: "cluster", Value: "us-central-1", Operator: models.FilterOperatorEquals},
|
|
},
|
|
expected: `{namespace="default", cluster="us-central-1"} |= "an unexpected error"`,
|
|
expectErr: false,
|
|
},
|
|
{
|
|
name: "scopes without existing label matchers",
|
|
query: `{} |= "an unexpected error"`,
|
|
scopeFilters: []models.ScopeFilter{
|
|
{Key: "cluster", Value: "us-central-1", Operator: models.FilterOperatorEquals},
|
|
},
|
|
expected: `{cluster="us-central-1"} |= "an unexpected error"`,
|
|
expectErr: false,
|
|
},
|
|
{
|
|
name: "scopes with multiple filters",
|
|
query: `{} |= "an unexpected error"`,
|
|
scopeFilters: []models.ScopeFilter{
|
|
{Key: "cluster", Value: "us-central-1", Operator: models.FilterOperatorEquals},
|
|
{Key: "namespace", Value: "default", Operator: models.FilterOperatorEquals},
|
|
},
|
|
expected: `{cluster="us-central-1", namespace="default"} |= "an unexpected error"`,
|
|
expectErr: false,
|
|
},
|
|
{
|
|
name: "metric query with scopes filters",
|
|
query: `count_over_time({} |= "error" [1m])`,
|
|
scopeFilters: []models.ScopeFilter{
|
|
{Key: "namespace", Value: "default", Operator: models.FilterOperatorEquals},
|
|
},
|
|
expected: `count_over_time({namespace="default"} |= "error"[1m])`,
|
|
expectErr: false,
|
|
},
|
|
{
|
|
name: "multi range metric query operation",
|
|
query: `count_over_time({} |= "error" [1m])/count_over_time({} [1m])`,
|
|
scopeFilters: []models.ScopeFilter{
|
|
{Key: "cluster", Value: "us-central-1", Operator: models.FilterOperatorEquals},
|
|
{Key: "namespace", Value: "default", Operator: models.FilterOperatorEquals},
|
|
},
|
|
expected: `(count_over_time({cluster="us-central-1", namespace="default"} |= "error"[1m]) / count_over_time({cluster="us-central-1", namespace="default"}[1m]))`,
|
|
expectErr: false,
|
|
},
|
|
{
|
|
name: "multi range metric query operation with existing label matchers",
|
|
query: `count_over_time({a="bar"} |= "error" [1m])/count_over_time({a="bar"} [1m])`,
|
|
scopeFilters: []models.ScopeFilter{
|
|
{Key: "cluster", Value: "us-central-1", Operator: models.FilterOperatorEquals},
|
|
{Key: "namespace", Value: "default", Operator: models.FilterOperatorEquals},
|
|
},
|
|
expected: `(count_over_time({a="bar", cluster="us-central-1", namespace="default"} |= "error"[1m]) / count_over_time({a="bar", cluster="us-central-1", namespace="default"}[1m]))`,
|
|
expectErr: false,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
expr, err := ApplyScopes(tt.query, tt.scopeFilters)
|
|
|
|
if tt.expectErr {
|
|
require.Error(t, err)
|
|
} else {
|
|
require.NoError(t, err)
|
|
require.Equal(t, tt.expected, expr, tt.name)
|
|
}
|
|
})
|
|
}
|
|
}
|