The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/pkg/tsdb/loki/scopes_test.go

104 lines
3.5 KiB

package loki
import (
"testing"
"github.com/grafana/grafana/pkg/promlib/models"
"github.com/stretchr/testify/require"
)
func TestInjectScopesIntoLokiQuery(t *testing.T) {
// skipping since its flaky.
t.Skip()
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)
}
})
}
}