2015-03-30 09:12:51 -07:00
|
|
|
// Copyright 2015 The Prometheus Authors
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package promql
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math"
|
2015-04-29 07:35:18 -07:00
|
|
|
"strings"
|
2015-03-30 09:12:51 -07:00
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2019-03-25 16:01:12 -07:00
|
|
|
"github.com/pkg/errors"
|
2015-08-20 08:18:46 -07:00
|
|
|
"github.com/prometheus/common/model"
|
2019-03-25 16:01:12 -07:00
|
|
|
|
|
|
|
"github.com/prometheus/prometheus/pkg/labels"
|
2019-08-08 18:36:42 -07:00
|
|
|
"github.com/prometheus/prometheus/util/testutil"
|
2015-03-30 09:12:51 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
var testExpr = []struct {
|
2015-04-29 07:35:18 -07:00
|
|
|
input string // The input to be parsed.
|
|
|
|
expected Expr // The expected expression AST.
|
|
|
|
fail bool // Whether parsing is supposed to fail.
|
|
|
|
errMsg string // If not empty the parsing error has to contain this string.
|
2015-03-30 09:12:51 -07:00
|
|
|
}{
|
2016-12-28 00:16:48 -08:00
|
|
|
// Scalars and scalar-to-scalar operations.
|
2015-03-30 09:12:51 -07:00
|
|
|
{
|
|
|
|
input: "1",
|
|
|
|
expected: &NumberLiteral{1},
|
|
|
|
}, {
|
|
|
|
input: "+Inf",
|
2016-12-23 04:51:59 -08:00
|
|
|
expected: &NumberLiteral{math.Inf(1)},
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
|
|
|
input: "-Inf",
|
2016-12-23 04:51:59 -08:00
|
|
|
expected: &NumberLiteral{math.Inf(-1)},
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
|
|
|
input: ".5",
|
|
|
|
expected: &NumberLiteral{0.5},
|
|
|
|
}, {
|
|
|
|
input: "5.",
|
|
|
|
expected: &NumberLiteral{5},
|
|
|
|
}, {
|
|
|
|
input: "123.4567",
|
|
|
|
expected: &NumberLiteral{123.4567},
|
|
|
|
}, {
|
|
|
|
input: "5e-3",
|
|
|
|
expected: &NumberLiteral{0.005},
|
|
|
|
}, {
|
|
|
|
input: "5e3",
|
|
|
|
expected: &NumberLiteral{5000},
|
|
|
|
}, {
|
|
|
|
input: "0xc",
|
|
|
|
expected: &NumberLiteral{12},
|
|
|
|
}, {
|
|
|
|
input: "0755",
|
|
|
|
expected: &NumberLiteral{493},
|
|
|
|
}, {
|
|
|
|
input: "+5.5e-3",
|
|
|
|
expected: &NumberLiteral{0.0055},
|
|
|
|
}, {
|
|
|
|
input: "-0755",
|
|
|
|
expected: &NumberLiteral{-493},
|
|
|
|
}, {
|
|
|
|
input: "1 + 1",
|
2019-11-26 05:29:42 -08:00
|
|
|
expected: &BinaryExpr{ADD, &NumberLiteral{1}, &NumberLiteral{1}, nil, false},
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
|
|
|
input: "1 - 1",
|
2019-11-26 05:29:42 -08:00
|
|
|
expected: &BinaryExpr{SUB, &NumberLiteral{1}, &NumberLiteral{1}, nil, false},
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
|
|
|
input: "1 * 1",
|
2019-11-26 05:29:42 -08:00
|
|
|
expected: &BinaryExpr{MUL, &NumberLiteral{1}, &NumberLiteral{1}, nil, false},
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
|
|
|
input: "1 % 1",
|
2019-11-26 05:29:42 -08:00
|
|
|
expected: &BinaryExpr{MOD, &NumberLiteral{1}, &NumberLiteral{1}, nil, false},
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
|
|
|
input: "1 / 1",
|
2019-11-26 05:29:42 -08:00
|
|
|
expected: &BinaryExpr{DIV, &NumberLiteral{1}, &NumberLiteral{1}, nil, false},
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-10-10 08:19:14 -07:00
|
|
|
input: "1 == bool 1",
|
2019-11-26 05:29:42 -08:00
|
|
|
expected: &BinaryExpr{EQL, &NumberLiteral{1}, &NumberLiteral{1}, nil, true},
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-10-10 08:19:14 -07:00
|
|
|
input: "1 != bool 1",
|
2019-11-26 05:29:42 -08:00
|
|
|
expected: &BinaryExpr{NEQ, &NumberLiteral{1}, &NumberLiteral{1}, nil, true},
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-10-10 08:19:14 -07:00
|
|
|
input: "1 > bool 1",
|
2019-11-26 05:29:42 -08:00
|
|
|
expected: &BinaryExpr{GTR, &NumberLiteral{1}, &NumberLiteral{1}, nil, true},
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-10-10 08:19:14 -07:00
|
|
|
input: "1 >= bool 1",
|
2019-11-26 05:29:42 -08:00
|
|
|
expected: &BinaryExpr{GTE, &NumberLiteral{1}, &NumberLiteral{1}, nil, true},
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-10-10 08:19:14 -07:00
|
|
|
input: "1 < bool 1",
|
2019-11-26 05:29:42 -08:00
|
|
|
expected: &BinaryExpr{LSS, &NumberLiteral{1}, &NumberLiteral{1}, nil, true},
|
2015-09-02 06:51:44 -07:00
|
|
|
}, {
|
|
|
|
input: "1 <= bool 1",
|
2019-11-26 05:29:42 -08:00
|
|
|
expected: &BinaryExpr{LTE, &NumberLiteral{1}, &NumberLiteral{1}, nil, true},
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
|
|
|
input: "+1 + -2 * 1",
|
|
|
|
expected: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: ADD,
|
2015-03-30 09:12:51 -07:00
|
|
|
LHS: &NumberLiteral{1},
|
|
|
|
RHS: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: MUL, LHS: &NumberLiteral{-2}, RHS: &NumberLiteral{1},
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: "1 + 2/(3*1)",
|
|
|
|
expected: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: ADD,
|
2015-03-30 09:12:51 -07:00
|
|
|
LHS: &NumberLiteral{1},
|
|
|
|
RHS: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: DIV,
|
2015-03-30 09:12:51 -07:00
|
|
|
LHS: &NumberLiteral{2},
|
|
|
|
RHS: &ParenExpr{&BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: MUL, LHS: &NumberLiteral{3}, RHS: &NumberLiteral{1},
|
2015-03-30 09:12:51 -07:00
|
|
|
}},
|
|
|
|
},
|
|
|
|
},
|
2016-03-02 15:56:40 -08:00
|
|
|
}, {
|
|
|
|
input: "1 < bool 2 - 1 * 2",
|
|
|
|
expected: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: LSS,
|
2016-03-02 15:56:40 -08:00
|
|
|
ReturnBool: true,
|
|
|
|
LHS: &NumberLiteral{1},
|
|
|
|
RHS: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: SUB,
|
2016-03-02 15:56:40 -08:00
|
|
|
LHS: &NumberLiteral{2},
|
|
|
|
RHS: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: MUL, LHS: &NumberLiteral{1}, RHS: &NumberLiteral{2},
|
2016-03-02 15:56:40 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2015-08-04 05:57:34 -07:00
|
|
|
}, {
|
2018-03-20 07:30:52 -07:00
|
|
|
input: "-some_metric",
|
|
|
|
expected: &UnaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: SUB,
|
2015-08-04 05:57:34 -07:00
|
|
|
Expr: &VectorSelector{
|
|
|
|
Name: "some_metric",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "some_metric"),
|
2015-08-04 05:57:34 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, {
|
2018-03-20 07:30:52 -07:00
|
|
|
input: "+some_metric",
|
|
|
|
expected: &UnaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: ADD,
|
2015-08-04 05:57:34 -07:00
|
|
|
Expr: &VectorSelector{
|
|
|
|
Name: "some_metric",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "some_metric"),
|
2015-08-04 05:57:34 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "",
|
|
|
|
fail: true,
|
|
|
|
errMsg: "no expression found in input",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "# just a comment\n\n",
|
|
|
|
fail: true,
|
|
|
|
errMsg: "no expression found in input",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "1+",
|
|
|
|
fail: true,
|
2015-08-03 03:28:40 -07:00
|
|
|
errMsg: "no valid expression found",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: ".",
|
|
|
|
fail: true,
|
|
|
|
errMsg: "unexpected character: '.'",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "2.5.",
|
|
|
|
fail: true,
|
|
|
|
errMsg: "could not parse remaining input \".\"...",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "100..4",
|
|
|
|
fail: true,
|
|
|
|
errMsg: "could not parse remaining input \".4\"...",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "0deadbeef",
|
|
|
|
fail: true,
|
|
|
|
errMsg: "bad number or duration syntax: \"0de\"",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "1 /",
|
|
|
|
fail: true,
|
2015-08-03 03:28:40 -07:00
|
|
|
errMsg: "no valid expression found",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "*1",
|
|
|
|
fail: true,
|
|
|
|
errMsg: "no valid expression found",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "(1))",
|
|
|
|
fail: true,
|
|
|
|
errMsg: "could not parse remaining input \")\"...",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "((1)",
|
|
|
|
fail: true,
|
|
|
|
errMsg: "unclosed left parenthesis",
|
2015-05-12 03:00:28 -07:00
|
|
|
}, {
|
|
|
|
input: "999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999",
|
|
|
|
fail: true,
|
|
|
|
errMsg: "out of range",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "(",
|
|
|
|
fail: true,
|
|
|
|
errMsg: "unclosed left parenthesis",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "1 and 1",
|
|
|
|
fail: true,
|
2016-12-28 00:16:48 -08:00
|
|
|
errMsg: "set operator \"and\" not allowed in binary scalar expression",
|
2015-10-10 08:19:14 -07:00
|
|
|
}, {
|
|
|
|
input: "1 == 1",
|
|
|
|
fail: true,
|
2016-12-28 00:16:48 -08:00
|
|
|
errMsg: "parse error at char 7: comparisons between scalars must use BOOL modifier",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "1 or 1",
|
|
|
|
fail: true,
|
2016-12-28 00:16:48 -08:00
|
|
|
errMsg: "set operator \"or\" not allowed in binary scalar expression",
|
2016-04-02 15:52:18 -07:00
|
|
|
}, {
|
|
|
|
input: "1 unless 1",
|
|
|
|
fail: true,
|
2016-12-28 00:16:48 -08:00
|
|
|
errMsg: "set operator \"unless\" not allowed in binary scalar expression",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "1 !~ 1",
|
|
|
|
fail: true,
|
|
|
|
errMsg: "could not parse remaining input \"!~ 1\"...",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "1 =~ 1",
|
|
|
|
fail: true,
|
|
|
|
errMsg: "could not parse remaining input \"=~ 1\"...",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-08-04 05:57:34 -07:00
|
|
|
input: `-"string"`,
|
2015-04-29 07:35:18 -07:00
|
|
|
fail: true,
|
2016-12-28 00:16:48 -08:00
|
|
|
errMsg: `unary expression only allowed on expressions of type scalar or instant vector, got "string"`,
|
2015-04-29 07:35:18 -07:00
|
|
|
}, {
|
2015-08-04 05:57:34 -07:00
|
|
|
input: `-test[5m]`,
|
2015-04-29 07:35:18 -07:00
|
|
|
fail: true,
|
2016-12-28 00:16:48 -08:00
|
|
|
errMsg: `unary expression only allowed on expressions of type scalar or instant vector, got "range vector"`,
|
2015-08-04 05:57:34 -07:00
|
|
|
}, {
|
|
|
|
input: `*test`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "no valid expression found",
|
2016-01-25 10:22:37 -08:00
|
|
|
}, {
|
|
|
|
input: "1 offset 1d",
|
|
|
|
fail: true,
|
|
|
|
errMsg: "offset modifier must be preceded by an instant or range selector",
|
2016-04-21 03:45:06 -07:00
|
|
|
}, {
|
2016-04-21 07:53:14 -07:00
|
|
|
input: "a - on(b) ignoring(c) d",
|
2016-04-21 03:45:06 -07:00
|
|
|
fail: true,
|
2016-04-21 07:53:14 -07:00
|
|
|
errMsg: "parse error at char 11: no valid expression found",
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
// Vector binary operations.
|
|
|
|
{
|
|
|
|
input: "foo * bar",
|
|
|
|
expected: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: MUL,
|
2015-03-30 09:12:51 -07:00
|
|
|
LHS: &VectorSelector{
|
|
|
|
Name: "foo",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
RHS: &VectorSelector{
|
|
|
|
Name: "bar",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "bar"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
VectorMatching: &VectorMatching{Card: CardOneToOne},
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: "foo == 1",
|
|
|
|
expected: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: EQL,
|
2015-03-30 09:12:51 -07:00
|
|
|
LHS: &VectorSelector{
|
|
|
|
Name: "foo",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
RHS: &NumberLiteral{1},
|
|
|
|
},
|
2015-09-02 06:51:44 -07:00
|
|
|
}, {
|
|
|
|
input: "foo == bool 1",
|
|
|
|
expected: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: EQL,
|
2015-09-02 06:51:44 -07:00
|
|
|
LHS: &VectorSelector{
|
|
|
|
Name: "foo",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
2015-09-02 06:51:44 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
RHS: &NumberLiteral{1},
|
|
|
|
ReturnBool: true,
|
|
|
|
},
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
|
|
|
input: "2.5 / bar",
|
|
|
|
expected: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: DIV,
|
2015-03-30 09:12:51 -07:00
|
|
|
LHS: &NumberLiteral{2.5},
|
|
|
|
RHS: &VectorSelector{
|
|
|
|
Name: "bar",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "bar"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: "foo and bar",
|
|
|
|
expected: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: LAND,
|
2015-03-30 09:12:51 -07:00
|
|
|
LHS: &VectorSelector{
|
|
|
|
Name: "foo",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
RHS: &VectorSelector{
|
|
|
|
Name: "bar",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "bar"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
VectorMatching: &VectorMatching{Card: CardManyToMany},
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: "foo or bar",
|
|
|
|
expected: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: LOR,
|
2015-03-30 09:12:51 -07:00
|
|
|
LHS: &VectorSelector{
|
|
|
|
Name: "foo",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
RHS: &VectorSelector{
|
|
|
|
Name: "bar",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "bar"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
VectorMatching: &VectorMatching{Card: CardManyToMany},
|
|
|
|
},
|
2016-04-02 15:52:18 -07:00
|
|
|
}, {
|
|
|
|
input: "foo unless bar",
|
|
|
|
expected: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: LUNLESS,
|
2016-04-02 15:52:18 -07:00
|
|
|
LHS: &VectorSelector{
|
|
|
|
Name: "foo",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
2016-04-02 15:52:18 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
RHS: &VectorSelector{
|
|
|
|
Name: "bar",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "bar"),
|
2016-04-02 15:52:18 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
VectorMatching: &VectorMatching{Card: CardManyToMany},
|
|
|
|
},
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
|
|
|
// Test and/or precedence and reassigning of operands.
|
|
|
|
input: "foo + bar or bla and blub",
|
|
|
|
expected: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: LOR,
|
2015-03-30 09:12:51 -07:00
|
|
|
LHS: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: ADD,
|
2015-03-30 09:12:51 -07:00
|
|
|
LHS: &VectorSelector{
|
|
|
|
Name: "foo",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
RHS: &VectorSelector{
|
|
|
|
Name: "bar",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "bar"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
VectorMatching: &VectorMatching{Card: CardOneToOne},
|
|
|
|
},
|
|
|
|
RHS: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: LAND,
|
2015-03-30 09:12:51 -07:00
|
|
|
LHS: &VectorSelector{
|
|
|
|
Name: "bla",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "bla"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
RHS: &VectorSelector{
|
|
|
|
Name: "blub",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "blub"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
VectorMatching: &VectorMatching{Card: CardManyToMany},
|
|
|
|
},
|
|
|
|
VectorMatching: &VectorMatching{Card: CardManyToMany},
|
|
|
|
},
|
2016-04-02 15:52:18 -07:00
|
|
|
}, {
|
|
|
|
// Test and/or/unless precedence.
|
|
|
|
input: "foo and bar unless baz or qux",
|
|
|
|
expected: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: LOR,
|
2016-04-02 15:52:18 -07:00
|
|
|
LHS: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: LUNLESS,
|
2016-04-02 15:52:18 -07:00
|
|
|
LHS: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: LAND,
|
2016-04-02 15:52:18 -07:00
|
|
|
LHS: &VectorSelector{
|
|
|
|
Name: "foo",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
2016-04-02 15:52:18 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
RHS: &VectorSelector{
|
|
|
|
Name: "bar",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "bar"),
|
2016-04-02 15:52:18 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
VectorMatching: &VectorMatching{Card: CardManyToMany},
|
|
|
|
},
|
|
|
|
RHS: &VectorSelector{
|
|
|
|
Name: "baz",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "baz"),
|
2016-04-02 15:52:18 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
VectorMatching: &VectorMatching{Card: CardManyToMany},
|
|
|
|
},
|
|
|
|
RHS: &VectorSelector{
|
|
|
|
Name: "qux",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "qux"),
|
2016-04-02 15:52:18 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
VectorMatching: &VectorMatching{Card: CardManyToMany},
|
|
|
|
},
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
|
|
|
// Test precedence and reassigning of operands.
|
|
|
|
input: "bar + on(foo) bla / on(baz, buz) group_right(test) blub",
|
|
|
|
expected: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: ADD,
|
2015-03-30 09:12:51 -07:00
|
|
|
LHS: &VectorSelector{
|
|
|
|
Name: "bar",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "bar"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
RHS: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: DIV,
|
2015-03-30 09:12:51 -07:00
|
|
|
LHS: &VectorSelector{
|
|
|
|
Name: "bla",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "bla"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
RHS: &VectorSelector{
|
|
|
|
Name: "blub",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "blub"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
VectorMatching: &VectorMatching{
|
2016-04-26 06:28:36 -07:00
|
|
|
Card: CardOneToMany,
|
2016-12-23 04:51:59 -08:00
|
|
|
MatchingLabels: []string{"baz", "buz"},
|
2016-06-23 09:23:44 -07:00
|
|
|
On: true,
|
2016-12-23 04:51:59 -08:00
|
|
|
Include: []string{"test"},
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
VectorMatching: &VectorMatching{
|
2016-04-26 06:28:36 -07:00
|
|
|
Card: CardOneToOne,
|
2016-12-23 04:51:59 -08:00
|
|
|
MatchingLabels: []string{"foo"},
|
2016-06-23 09:23:44 -07:00
|
|
|
On: true,
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: "foo * on(test,blub) bar",
|
|
|
|
expected: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: MUL,
|
2015-03-30 09:12:51 -07:00
|
|
|
LHS: &VectorSelector{
|
|
|
|
Name: "foo",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
RHS: &VectorSelector{
|
|
|
|
Name: "bar",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "bar"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
VectorMatching: &VectorMatching{
|
2016-04-26 06:28:36 -07:00
|
|
|
Card: CardOneToOne,
|
2016-12-23 04:51:59 -08:00
|
|
|
MatchingLabels: []string{"test", "blub"},
|
2016-06-23 09:23:44 -07:00
|
|
|
On: true,
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
2016-04-21 11:03:10 -07:00
|
|
|
}, {
|
|
|
|
input: "foo * on(test,blub) group_left bar",
|
|
|
|
expected: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: MUL,
|
2016-04-21 11:03:10 -07:00
|
|
|
LHS: &VectorSelector{
|
|
|
|
Name: "foo",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
2016-04-21 11:03:10 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
RHS: &VectorSelector{
|
|
|
|
Name: "bar",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "bar"),
|
2016-04-21 11:03:10 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
VectorMatching: &VectorMatching{
|
2016-04-26 06:28:36 -07:00
|
|
|
Card: CardManyToOne,
|
2016-12-23 04:51:59 -08:00
|
|
|
MatchingLabels: []string{"test", "blub"},
|
2016-06-23 09:23:44 -07:00
|
|
|
On: true,
|
2016-04-21 11:03:10 -07:00
|
|
|
},
|
|
|
|
},
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
|
|
|
input: "foo and on(test,blub) bar",
|
|
|
|
expected: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: LAND,
|
2015-03-30 09:12:51 -07:00
|
|
|
LHS: &VectorSelector{
|
|
|
|
Name: "foo",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
RHS: &VectorSelector{
|
|
|
|
Name: "bar",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "bar"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
VectorMatching: &VectorMatching{
|
2016-04-26 06:28:36 -07:00
|
|
|
Card: CardManyToMany,
|
2016-12-23 04:51:59 -08:00
|
|
|
MatchingLabels: []string{"test", "blub"},
|
2016-06-23 09:23:44 -07:00
|
|
|
On: true,
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
2016-06-23 09:49:22 -07:00
|
|
|
}, {
|
|
|
|
input: "foo and on() bar",
|
|
|
|
expected: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: LAND,
|
2016-06-23 09:49:22 -07:00
|
|
|
LHS: &VectorSelector{
|
|
|
|
Name: "foo",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
2016-06-23 09:49:22 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
RHS: &VectorSelector{
|
|
|
|
Name: "bar",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "bar"),
|
2016-06-23 09:49:22 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
VectorMatching: &VectorMatching{
|
|
|
|
Card: CardManyToMany,
|
2016-12-23 04:51:59 -08:00
|
|
|
MatchingLabels: []string{},
|
2016-06-23 09:49:22 -07:00
|
|
|
On: true,
|
|
|
|
},
|
|
|
|
},
|
2016-04-21 03:45:06 -07:00
|
|
|
}, {
|
|
|
|
input: "foo and ignoring(test,blub) bar",
|
|
|
|
expected: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: LAND,
|
2016-04-21 03:45:06 -07:00
|
|
|
LHS: &VectorSelector{
|
|
|
|
Name: "foo",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
2016-04-21 03:45:06 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
RHS: &VectorSelector{
|
|
|
|
Name: "bar",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "bar"),
|
2016-04-21 03:45:06 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
VectorMatching: &VectorMatching{
|
2016-04-26 06:28:36 -07:00
|
|
|
Card: CardManyToMany,
|
2016-12-23 04:51:59 -08:00
|
|
|
MatchingLabels: []string{"test", "blub"},
|
2016-04-21 03:45:06 -07:00
|
|
|
},
|
|
|
|
},
|
2016-06-23 09:49:22 -07:00
|
|
|
}, {
|
|
|
|
input: "foo and ignoring() bar",
|
|
|
|
expected: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: LAND,
|
2016-06-23 09:49:22 -07:00
|
|
|
LHS: &VectorSelector{
|
|
|
|
Name: "foo",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
2016-06-23 09:49:22 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
RHS: &VectorSelector{
|
|
|
|
Name: "bar",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "bar"),
|
2016-06-23 09:49:22 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
VectorMatching: &VectorMatching{
|
|
|
|
Card: CardManyToMany,
|
2016-12-23 04:51:59 -08:00
|
|
|
MatchingLabels: []string{},
|
2016-06-23 09:49:22 -07:00
|
|
|
},
|
|
|
|
},
|
2016-04-02 15:52:18 -07:00
|
|
|
}, {
|
|
|
|
input: "foo unless on(bar) baz",
|
|
|
|
expected: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: LUNLESS,
|
2016-04-02 15:52:18 -07:00
|
|
|
LHS: &VectorSelector{
|
|
|
|
Name: "foo",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
2016-04-02 15:52:18 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
RHS: &VectorSelector{
|
|
|
|
Name: "baz",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "baz"),
|
2016-04-02 15:52:18 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
VectorMatching: &VectorMatching{
|
2016-04-26 06:28:36 -07:00
|
|
|
Card: CardManyToMany,
|
2016-12-23 04:51:59 -08:00
|
|
|
MatchingLabels: []string{"bar"},
|
2016-06-23 09:23:44 -07:00
|
|
|
On: true,
|
2016-04-02 15:52:18 -07:00
|
|
|
},
|
|
|
|
},
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
|
|
|
input: "foo / on(test,blub) group_left(bar) bar",
|
|
|
|
expected: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: DIV,
|
2015-03-30 09:12:51 -07:00
|
|
|
LHS: &VectorSelector{
|
|
|
|
Name: "foo",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
RHS: &VectorSelector{
|
|
|
|
Name: "bar",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "bar"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
VectorMatching: &VectorMatching{
|
2016-04-26 06:28:36 -07:00
|
|
|
Card: CardManyToOne,
|
2016-12-23 04:51:59 -08:00
|
|
|
MatchingLabels: []string{"test", "blub"},
|
2016-06-23 09:23:44 -07:00
|
|
|
On: true,
|
2016-12-23 04:51:59 -08:00
|
|
|
Include: []string{"bar"},
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
2016-04-21 07:53:14 -07:00
|
|
|
}, {
|
|
|
|
input: "foo / ignoring(test,blub) group_left(blub) bar",
|
|
|
|
expected: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: DIV,
|
2016-04-21 07:53:14 -07:00
|
|
|
LHS: &VectorSelector{
|
|
|
|
Name: "foo",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
2016-04-21 07:53:14 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
RHS: &VectorSelector{
|
|
|
|
Name: "bar",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "bar"),
|
2016-04-21 07:53:14 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
VectorMatching: &VectorMatching{
|
2016-04-26 06:28:36 -07:00
|
|
|
Card: CardManyToOne,
|
2016-12-23 04:51:59 -08:00
|
|
|
MatchingLabels: []string{"test", "blub"},
|
|
|
|
Include: []string{"blub"},
|
2016-04-21 07:53:14 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: "foo / ignoring(test,blub) group_left(bar) bar",
|
|
|
|
expected: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: DIV,
|
2016-04-21 07:53:14 -07:00
|
|
|
LHS: &VectorSelector{
|
|
|
|
Name: "foo",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
2016-04-21 07:53:14 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
RHS: &VectorSelector{
|
|
|
|
Name: "bar",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "bar"),
|
2016-04-21 07:53:14 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
VectorMatching: &VectorMatching{
|
2016-04-26 06:28:36 -07:00
|
|
|
Card: CardManyToOne,
|
2016-12-23 04:51:59 -08:00
|
|
|
MatchingLabels: []string{"test", "blub"},
|
|
|
|
Include: []string{"bar"},
|
2016-04-21 07:53:14 -07:00
|
|
|
},
|
|
|
|
},
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
|
|
|
input: "foo - on(test,blub) group_right(bar,foo) bar",
|
|
|
|
expected: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: SUB,
|
2015-03-30 09:12:51 -07:00
|
|
|
LHS: &VectorSelector{
|
|
|
|
Name: "foo",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
RHS: &VectorSelector{
|
|
|
|
Name: "bar",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "bar"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
VectorMatching: &VectorMatching{
|
2016-04-26 06:28:36 -07:00
|
|
|
Card: CardOneToMany,
|
2016-12-23 04:51:59 -08:00
|
|
|
MatchingLabels: []string{"test", "blub"},
|
|
|
|
Include: []string{"bar", "foo"},
|
2016-06-23 09:23:44 -07:00
|
|
|
On: true,
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
2016-04-21 07:53:14 -07:00
|
|
|
}, {
|
|
|
|
input: "foo - ignoring(test,blub) group_right(bar,foo) bar",
|
|
|
|
expected: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: SUB,
|
2016-04-21 07:53:14 -07:00
|
|
|
LHS: &VectorSelector{
|
|
|
|
Name: "foo",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
2016-04-21 07:53:14 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
RHS: &VectorSelector{
|
|
|
|
Name: "bar",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "bar"),
|
2016-04-21 07:53:14 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
VectorMatching: &VectorMatching{
|
2016-04-26 06:28:36 -07:00
|
|
|
Card: CardOneToMany,
|
2016-12-23 04:51:59 -08:00
|
|
|
MatchingLabels: []string{"test", "blub"},
|
|
|
|
Include: []string{"bar", "foo"},
|
2016-04-21 07:53:14 -07:00
|
|
|
},
|
|
|
|
},
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "foo and 1",
|
|
|
|
fail: true,
|
2016-12-28 00:16:48 -08:00
|
|
|
errMsg: "set operator \"and\" not allowed in binary scalar expression",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "1 and foo",
|
|
|
|
fail: true,
|
2016-12-28 00:16:48 -08:00
|
|
|
errMsg: "set operator \"and\" not allowed in binary scalar expression",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "foo or 1",
|
|
|
|
fail: true,
|
2016-12-28 00:16:48 -08:00
|
|
|
errMsg: "set operator \"or\" not allowed in binary scalar expression",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "1 or foo",
|
|
|
|
fail: true,
|
2016-12-28 00:16:48 -08:00
|
|
|
errMsg: "set operator \"or\" not allowed in binary scalar expression",
|
2016-04-02 15:52:18 -07:00
|
|
|
}, {
|
|
|
|
input: "foo unless 1",
|
|
|
|
fail: true,
|
2016-12-28 00:16:48 -08:00
|
|
|
errMsg: "set operator \"unless\" not allowed in binary scalar expression",
|
2016-04-02 15:52:18 -07:00
|
|
|
}, {
|
|
|
|
input: "1 unless foo",
|
|
|
|
fail: true,
|
2016-12-28 00:16:48 -08:00
|
|
|
errMsg: "set operator \"unless\" not allowed in binary scalar expression",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "1 or on(bar) foo",
|
|
|
|
fail: true,
|
2016-12-28 00:16:48 -08:00
|
|
|
errMsg: "vector matching only allowed between instant vectors",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "foo == on(bar) 10",
|
|
|
|
fail: true,
|
2016-12-28 00:16:48 -08:00
|
|
|
errMsg: "vector matching only allowed between instant vectors",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "foo and on(bar) group_left(baz) bar",
|
|
|
|
fail: true,
|
2016-04-02 15:52:18 -07:00
|
|
|
errMsg: "no grouping allowed for \"and\" operation",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "foo and on(bar) group_right(baz) bar",
|
|
|
|
fail: true,
|
2016-04-02 15:52:18 -07:00
|
|
|
errMsg: "no grouping allowed for \"and\" operation",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "foo or on(bar) group_left(baz) bar",
|
|
|
|
fail: true,
|
2016-04-02 15:52:18 -07:00
|
|
|
errMsg: "no grouping allowed for \"or\" operation",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "foo or on(bar) group_right(baz) bar",
|
|
|
|
fail: true,
|
2016-04-02 15:52:18 -07:00
|
|
|
errMsg: "no grouping allowed for \"or\" operation",
|
|
|
|
}, {
|
|
|
|
input: "foo unless on(bar) group_left(baz) bar",
|
|
|
|
fail: true,
|
|
|
|
errMsg: "no grouping allowed for \"unless\" operation",
|
|
|
|
}, {
|
|
|
|
input: "foo unless on(bar) group_right(baz) bar",
|
|
|
|
fail: true,
|
|
|
|
errMsg: "no grouping allowed for \"unless\" operation",
|
2015-05-12 03:00:28 -07:00
|
|
|
}, {
|
|
|
|
input: `http_requests{group="production"} + on(instance) group_left(job,instance) cpu_count{type="smp"}`,
|
|
|
|
fail: true,
|
2016-04-26 06:31:00 -07:00
|
|
|
errMsg: "label \"instance\" must not occur in ON and GROUP clause at once",
|
2015-09-02 06:51:44 -07:00
|
|
|
}, {
|
|
|
|
input: "foo + bool bar",
|
|
|
|
fail: true,
|
|
|
|
errMsg: "bool modifier can only be used on comparison operators",
|
|
|
|
}, {
|
|
|
|
input: "foo + bool 10",
|
|
|
|
fail: true,
|
|
|
|
errMsg: "bool modifier can only be used on comparison operators",
|
|
|
|
}, {
|
|
|
|
input: "foo and bool 10",
|
|
|
|
fail: true,
|
|
|
|
errMsg: "bool modifier can only be used on comparison operators",
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
2016-12-24 01:40:09 -08:00
|
|
|
// Test Vector selector.
|
2015-03-30 09:12:51 -07:00
|
|
|
{
|
|
|
|
input: "foo",
|
|
|
|
expected: &VectorSelector{
|
|
|
|
Name: "foo",
|
|
|
|
Offset: 0,
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: "foo offset 5m",
|
|
|
|
expected: &VectorSelector{
|
|
|
|
Name: "foo",
|
|
|
|
Offset: 5 * time.Minute,
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}, {
|
2015-05-08 07:43:02 -07:00
|
|
|
input: `foo:bar{a="bc"}`,
|
2015-03-30 09:12:51 -07:00
|
|
|
expected: &VectorSelector{
|
|
|
|
Name: "foo:bar",
|
|
|
|
Offset: 0,
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, "a", "bc"),
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo:bar"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}, {
|
2015-05-08 07:43:02 -07:00
|
|
|
input: `foo{NaN='bc'}`,
|
2015-03-30 09:12:51 -07:00
|
|
|
expected: &VectorSelector{
|
|
|
|
Name: "foo",
|
|
|
|
Offset: 0,
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, "NaN", "bc"),
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
2019-12-05 08:16:12 -08:00
|
|
|
}, {
|
|
|
|
input: `foo{bar='}'}`,
|
|
|
|
expected: &VectorSelector{
|
|
|
|
Name: "foo",
|
|
|
|
Offset: 0,
|
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, "bar", "}"),
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
|
|
|
},
|
|
|
|
},
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
|
|
|
input: `foo{a="b", foo!="bar", test=~"test", bar!~"baz"}`,
|
|
|
|
expected: &VectorSelector{
|
|
|
|
Name: "foo",
|
|
|
|
Offset: 0,
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, "a", "b"),
|
|
|
|
mustLabelMatcher(labels.MatchNotEqual, "foo", "bar"),
|
|
|
|
mustLabelMatcher(labels.MatchRegexp, "test", "test"),
|
|
|
|
mustLabelMatcher(labels.MatchNotRegexp, "bar", "baz"),
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: `{`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "unexpected end of input inside braces",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: `}`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "unexpected character: '}'",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: `some{`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "unexpected end of input inside braces",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: `some}`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "could not parse remaining input \"}\"...",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: `some_metric{a=b}`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "unexpected identifier \"b\" in label matching, expected string",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: `some_metric{a:b="b"}`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "unexpected character inside braces: ':'",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: `foo{a*"b"}`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "unexpected character inside braces: '*'",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: `foo{a>="b"}`,
|
|
|
|
fail: true,
|
2019-02-01 06:35:32 -08:00
|
|
|
// TODO(fabxc): willingly lexing wrong tokens allows for more precise error
|
2015-04-29 07:35:18 -07:00
|
|
|
// messages from the parser - consider if this is an option.
|
|
|
|
errMsg: "unexpected character inside braces: '>'",
|
2017-06-16 07:19:24 -07:00
|
|
|
}, {
|
|
|
|
input: "some_metric{a=\"\xff\"}",
|
|
|
|
fail: true,
|
|
|
|
errMsg: "parse error at char 15: invalid UTF-8 rune",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: `foo{gibberish}`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "expected label matching operator but got }",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: `foo{1}`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "unexpected character inside braces: '1'",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: `{}`,
|
|
|
|
fail: true,
|
2016-12-28 00:16:48 -08:00
|
|
|
errMsg: "vector selector must contain label matchers or metric name",
|
2015-06-15 09:34:41 -07:00
|
|
|
}, {
|
|
|
|
input: `{x=""}`,
|
|
|
|
fail: true,
|
2016-12-28 00:16:48 -08:00
|
|
|
errMsg: "vector selector must contain at least one non-empty matcher",
|
2015-06-15 09:34:41 -07:00
|
|
|
}, {
|
|
|
|
input: `{x=~".*"}`,
|
|
|
|
fail: true,
|
2016-12-28 00:16:48 -08:00
|
|
|
errMsg: "vector selector must contain at least one non-empty matcher",
|
2015-06-15 09:34:41 -07:00
|
|
|
}, {
|
|
|
|
input: `{x!~".+"}`,
|
|
|
|
fail: true,
|
2016-12-28 00:16:48 -08:00
|
|
|
errMsg: "vector selector must contain at least one non-empty matcher",
|
2015-06-15 09:34:41 -07:00
|
|
|
}, {
|
|
|
|
input: `{x!="a"}`,
|
|
|
|
fail: true,
|
2016-12-28 00:16:48 -08:00
|
|
|
errMsg: "vector selector must contain at least one non-empty matcher",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: `foo{__name__="bar"}`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "metric name must not be set twice: \"foo\" or \"bar\"",
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
// Test matrix selector.
|
|
|
|
{
|
|
|
|
input: "test[5s]",
|
|
|
|
expected: &MatrixSelector{
|
|
|
|
Name: "test",
|
|
|
|
Offset: 0,
|
|
|
|
Range: 5 * time.Second,
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "test"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: "test[5m]",
|
|
|
|
expected: &MatrixSelector{
|
|
|
|
Name: "test",
|
|
|
|
Offset: 0,
|
|
|
|
Range: 5 * time.Minute,
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "test"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: "test[5h] OFFSET 5m",
|
|
|
|
expected: &MatrixSelector{
|
|
|
|
Name: "test",
|
|
|
|
Offset: 5 * time.Minute,
|
|
|
|
Range: 5 * time.Hour,
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "test"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: "test[5d] OFFSET 10s",
|
|
|
|
expected: &MatrixSelector{
|
|
|
|
Name: "test",
|
|
|
|
Offset: 10 * time.Second,
|
|
|
|
Range: 5 * 24 * time.Hour,
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "test"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: "test[5w] offset 2w",
|
|
|
|
expected: &MatrixSelector{
|
|
|
|
Name: "test",
|
|
|
|
Offset: 14 * 24 * time.Hour,
|
|
|
|
Range: 5 * 7 * 24 * time.Hour,
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "test"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: `test{a="b"}[5y] OFFSET 3d`,
|
|
|
|
expected: &MatrixSelector{
|
|
|
|
Name: "test",
|
|
|
|
Offset: 3 * 24 * time.Hour,
|
|
|
|
Range: 5 * 365 * 24 * time.Hour,
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, "a", "b"),
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "test"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: `foo[5mm]`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "bad duration syntax: \"5mm\"",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: `foo[0m]`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "duration must be greater than 0",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: `foo[5m30s]`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "bad duration syntax: \"5m3\"",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: `foo[5m] OFFSET 1h30m`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "bad number or duration syntax: \"1h3\"",
|
2015-05-12 03:00:28 -07:00
|
|
|
}, {
|
|
|
|
input: `foo["5m"]`,
|
|
|
|
fail: true,
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: `foo[]`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "missing unit character in duration",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: `foo[1]`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "missing unit character in duration",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: `some_metric[5m] OFFSET 1`,
|
|
|
|
fail: true,
|
2016-01-24 19:50:46 -08:00
|
|
|
errMsg: "unexpected number \"1\" in offset, expected duration",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: `some_metric[5m] OFFSET 1mm`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "bad number or duration syntax: \"1mm\"",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: `some_metric[5m] OFFSET`,
|
|
|
|
fail: true,
|
2016-01-24 19:50:46 -08:00
|
|
|
errMsg: "unexpected end of input in offset, expected duration",
|
|
|
|
}, {
|
|
|
|
input: `some_metric OFFSET 1m[5m]`,
|
|
|
|
fail: true,
|
2018-12-22 05:47:13 -08:00
|
|
|
errMsg: "parse error at char 25: unexpected \"]\" in subquery selector, expected \":\"",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: `(foo + bar)[5m]`,
|
|
|
|
fail: true,
|
2018-12-22 05:47:13 -08:00
|
|
|
errMsg: "parse error at char 15: unexpected \"]\" in subquery selector, expected \":\"",
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
// Test aggregation.
|
|
|
|
{
|
|
|
|
input: "sum by (foo)(some_metric)",
|
|
|
|
expected: &AggregateExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: SUM,
|
2015-03-30 09:12:51 -07:00
|
|
|
Expr: &VectorSelector{
|
|
|
|
Name: "some_metric",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "some_metric"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
2016-12-23 04:51:59 -08:00
|
|
|
Grouping: []string{"foo"},
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: "avg by (foo)(some_metric)",
|
|
|
|
expected: &AggregateExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: AVG,
|
2015-03-30 09:12:51 -07:00
|
|
|
Expr: &VectorSelector{
|
|
|
|
Name: "some_metric",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "some_metric"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
2016-12-23 04:51:59 -08:00
|
|
|
Grouping: []string{"foo"},
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: "max by (foo)(some_metric)",
|
|
|
|
expected: &AggregateExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: MAX,
|
2015-03-30 09:12:51 -07:00
|
|
|
Expr: &VectorSelector{
|
|
|
|
Name: "some_metric",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "some_metric"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
2016-12-23 04:51:59 -08:00
|
|
|
Grouping: []string{"foo"},
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
2016-02-07 10:03:16 -08:00
|
|
|
}, {
|
|
|
|
input: "sum without (foo) (some_metric)",
|
|
|
|
expected: &AggregateExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: SUM,
|
2016-02-07 10:03:16 -08:00
|
|
|
Without: true,
|
|
|
|
Expr: &VectorSelector{
|
|
|
|
Name: "some_metric",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "some_metric"),
|
2016-02-07 10:03:16 -08:00
|
|
|
},
|
|
|
|
},
|
2016-12-23 04:51:59 -08:00
|
|
|
Grouping: []string{"foo"},
|
2016-02-07 10:03:16 -08:00
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: "sum (some_metric) without (foo)",
|
|
|
|
expected: &AggregateExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: SUM,
|
2016-02-07 10:03:16 -08:00
|
|
|
Without: true,
|
|
|
|
Expr: &VectorSelector{
|
|
|
|
Name: "some_metric",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "some_metric"),
|
2016-02-07 10:03:16 -08:00
|
|
|
},
|
|
|
|
},
|
2016-12-23 04:51:59 -08:00
|
|
|
Grouping: []string{"foo"},
|
2016-02-07 10:03:16 -08:00
|
|
|
},
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
|
|
|
input: "stddev(some_metric)",
|
|
|
|
expected: &AggregateExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: STDDEV,
|
2015-03-30 09:12:51 -07:00
|
|
|
Expr: &VectorSelector{
|
|
|
|
Name: "some_metric",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "some_metric"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: "stdvar by (foo)(some_metric)",
|
|
|
|
expected: &AggregateExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: STDVAR,
|
2015-03-30 09:12:51 -07:00
|
|
|
Expr: &VectorSelector{
|
|
|
|
Name: "some_metric",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "some_metric"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
2016-12-23 04:51:59 -08:00
|
|
|
Grouping: []string{"foo"},
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
2016-06-23 09:49:22 -07:00
|
|
|
}, {
|
|
|
|
input: "sum by ()(some_metric)",
|
|
|
|
expected: &AggregateExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: SUM,
|
2016-06-23 09:49:22 -07:00
|
|
|
Expr: &VectorSelector{
|
|
|
|
Name: "some_metric",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "some_metric"),
|
2016-06-23 09:49:22 -07:00
|
|
|
},
|
|
|
|
},
|
2016-12-23 04:51:59 -08:00
|
|
|
Grouping: []string{},
|
2016-06-23 09:49:22 -07:00
|
|
|
},
|
2016-07-04 05:10:42 -07:00
|
|
|
}, {
|
|
|
|
input: "topk(5, some_metric)",
|
|
|
|
expected: &AggregateExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: TOPK,
|
2016-07-04 05:10:42 -07:00
|
|
|
Expr: &VectorSelector{
|
|
|
|
Name: "some_metric",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "some_metric"),
|
2016-07-04 05:10:42 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
Param: &NumberLiteral{5},
|
|
|
|
},
|
2016-07-05 09:12:19 -07:00
|
|
|
}, {
|
|
|
|
input: "count_values(\"value\", some_metric)",
|
|
|
|
expected: &AggregateExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: COUNT_VALUES,
|
2016-07-05 09:12:19 -07:00
|
|
|
Expr: &VectorSelector{
|
|
|
|
Name: "some_metric",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "some_metric"),
|
2016-07-05 09:12:19 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
Param: &StringLiteral{"value"},
|
|
|
|
},
|
Fix parsing of label names which are also keywords
The current separation between lexer and parser is a bit fuzzy when it
comes to operators, aggregators and other keywords. The lexer already
tries to determine the type of a token, even though that type might
change depending on the context.
This led to the problematic behavior that no tokens known to the lexer
could be used as label names, including operators (and, by, ...),
aggregators (count, quantile, ...) or other keywords (for, offset, ...).
This change additionally checks whether an identifier is one of these
types. We might want to check whether the specific item identification
should be moved from the lexer to the parser.
2016-09-07 12:16:34 -07:00
|
|
|
}, {
|
|
|
|
// Test usage of keywords as label names.
|
|
|
|
input: "sum without(and, by, avg, count, alert, annotations)(some_metric)",
|
|
|
|
expected: &AggregateExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: SUM,
|
Fix parsing of label names which are also keywords
The current separation between lexer and parser is a bit fuzzy when it
comes to operators, aggregators and other keywords. The lexer already
tries to determine the type of a token, even though that type might
change depending on the context.
This led to the problematic behavior that no tokens known to the lexer
could be used as label names, including operators (and, by, ...),
aggregators (count, quantile, ...) or other keywords (for, offset, ...).
This change additionally checks whether an identifier is one of these
types. We might want to check whether the specific item identification
should be moved from the lexer to the parser.
2016-09-07 12:16:34 -07:00
|
|
|
Without: true,
|
|
|
|
Expr: &VectorSelector{
|
|
|
|
Name: "some_metric",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "some_metric"),
|
Fix parsing of label names which are also keywords
The current separation between lexer and parser is a bit fuzzy when it
comes to operators, aggregators and other keywords. The lexer already
tries to determine the type of a token, even though that type might
change depending on the context.
This led to the problematic behavior that no tokens known to the lexer
could be used as label names, including operators (and, by, ...),
aggregators (count, quantile, ...) or other keywords (for, offset, ...).
This change additionally checks whether an identifier is one of these
types. We might want to check whether the specific item identification
should be moved from the lexer to the parser.
2016-09-07 12:16:34 -07:00
|
|
|
},
|
|
|
|
},
|
2016-12-23 04:51:59 -08:00
|
|
|
Grouping: []string{"and", "by", "avg", "count", "alert", "annotations"},
|
Fix parsing of label names which are also keywords
The current separation between lexer and parser is a bit fuzzy when it
comes to operators, aggregators and other keywords. The lexer already
tries to determine the type of a token, even though that type might
change depending on the context.
This led to the problematic behavior that no tokens known to the lexer
could be used as label names, including operators (and, by, ...),
aggregators (count, quantile, ...) or other keywords (for, offset, ...).
This change additionally checks whether an identifier is one of these
types. We might want to check whether the specific item identification
should be moved from the lexer to the parser.
2016-09-07 12:16:34 -07:00
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: "sum without(==)(some_metric)",
|
|
|
|
fail: true,
|
|
|
|
errMsg: "unexpected <op:==> in grouping opts, expected label",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: `sum some_metric by (test)`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "unexpected identifier \"some_metric\" in aggregation, expected \"(\"",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: `sum (some_metric) by test`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "unexpected identifier \"test\" in grouping opts, expected \"(\"",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: `sum (some_metric) by test`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "unexpected identifier \"test\" in grouping opts, expected \"(\"",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: `sum () by (test)`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "no valid expression found",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2017-10-05 05:19:52 -07:00
|
|
|
input: "MIN keep_common (some_metric)",
|
2015-04-29 07:35:18 -07:00
|
|
|
fail: true,
|
2017-10-05 05:19:52 -07:00
|
|
|
errMsg: "parse error at char 5: unexpected identifier \"keep_common\" in aggregation, expected \"(\"",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2017-10-05 05:19:52 -07:00
|
|
|
input: "MIN (some_metric) keep_common",
|
2015-04-29 07:35:18 -07:00
|
|
|
fail: true,
|
2015-06-12 05:21:01 -07:00
|
|
|
errMsg: "could not parse remaining input \"keep_common\"...",
|
2016-02-07 10:03:16 -08:00
|
|
|
}, {
|
|
|
|
input: `sum (some_metric) without (test) by (test)`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "could not parse remaining input \"by (test)\"...",
|
|
|
|
}, {
|
|
|
|
input: `sum without (test) (some_metric) by (test)`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "could not parse remaining input \"by (test)\"...",
|
2016-07-04 05:10:42 -07:00
|
|
|
}, {
|
|
|
|
input: `topk(some_metric)`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "parse error at char 17: unexpected \")\" in aggregation, expected \",\"",
|
2016-07-04 10:03:05 -07:00
|
|
|
}, {
|
|
|
|
input: `topk(some_metric, other_metric)`,
|
|
|
|
fail: true,
|
2016-12-28 00:16:48 -08:00
|
|
|
errMsg: "parse error at char 32: expected type scalar in aggregation parameter, got instant vector",
|
2016-07-05 09:12:19 -07:00
|
|
|
}, {
|
|
|
|
input: `count_values(5, other_metric)`,
|
|
|
|
fail: true,
|
2016-12-28 00:16:48 -08:00
|
|
|
errMsg: "parse error at char 30: expected type string in aggregation parameter, got scalar",
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
// Test function calls.
|
|
|
|
{
|
|
|
|
input: "time()",
|
|
|
|
expected: &Call{
|
|
|
|
Func: mustGetFunction("time"),
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: `floor(some_metric{foo!="bar"})`,
|
|
|
|
expected: &Call{
|
|
|
|
Func: mustGetFunction("floor"),
|
|
|
|
Args: Expressions{
|
|
|
|
&VectorSelector{
|
|
|
|
Name: "some_metric",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchNotEqual, "foo", "bar"),
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "some_metric"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: "rate(some_metric[5m])",
|
|
|
|
expected: &Call{
|
|
|
|
Func: mustGetFunction("rate"),
|
|
|
|
Args: Expressions{
|
|
|
|
&MatrixSelector{
|
|
|
|
Name: "some_metric",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "some_metric"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
Range: 5 * time.Minute,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: "round(some_metric)",
|
|
|
|
expected: &Call{
|
|
|
|
Func: mustGetFunction("round"),
|
|
|
|
Args: Expressions{
|
|
|
|
&VectorSelector{
|
|
|
|
Name: "some_metric",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "some_metric"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: "round(some_metric, 5)",
|
|
|
|
expected: &Call{
|
|
|
|
Func: mustGetFunction("round"),
|
|
|
|
Args: Expressions{
|
|
|
|
&VectorSelector{
|
|
|
|
Name: "some_metric",
|
2016-12-25 02:34:22 -08:00
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "some_metric"),
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
&NumberLiteral{5},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "floor()",
|
|
|
|
fail: true,
|
2017-06-16 06:51:22 -07:00
|
|
|
errMsg: "expected 1 argument(s) in call to \"floor\", got 0",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "floor(some_metric, other_metric)",
|
|
|
|
fail: true,
|
2017-06-16 06:51:22 -07:00
|
|
|
errMsg: "expected 1 argument(s) in call to \"floor\", got 2",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "floor(1)",
|
|
|
|
fail: true,
|
2016-12-28 00:16:48 -08:00
|
|
|
errMsg: "expected type instant vector in call to function \"floor\", got scalar",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2016-09-14 20:23:28 -07:00
|
|
|
input: "non_existent_function_far_bar()",
|
2015-04-29 07:35:18 -07:00
|
|
|
fail: true,
|
2016-09-14 20:23:28 -07:00
|
|
|
errMsg: "unknown function with name \"non_existent_function_far_bar\"",
|
2015-03-30 09:12:51 -07:00
|
|
|
}, {
|
2015-04-29 07:35:18 -07:00
|
|
|
input: "rate(some_metric)",
|
|
|
|
fail: true,
|
2016-12-28 00:16:48 -08:00
|
|
|
errMsg: "expected type range vector in call to function \"rate\", got instant vector",
|
2017-06-16 07:19:24 -07:00
|
|
|
}, {
|
|
|
|
input: "label_replace(a, `b`, `c\xff`, `d`, `.*`)",
|
|
|
|
fail: true,
|
|
|
|
errMsg: "parse error at char 23: invalid UTF-8 rune",
|
2015-03-30 09:12:51 -07:00
|
|
|
},
|
2015-08-03 03:28:40 -07:00
|
|
|
// Fuzzing regression tests.
|
|
|
|
{
|
|
|
|
input: "-=",
|
|
|
|
fail: true,
|
|
|
|
errMsg: `no valid expression found`,
|
2015-08-04 05:57:34 -07:00
|
|
|
}, {
|
2015-08-03 03:28:40 -07:00
|
|
|
input: "++-++-+-+-<",
|
|
|
|
fail: true,
|
|
|
|
errMsg: `no valid expression found`,
|
2015-08-04 05:57:34 -07:00
|
|
|
}, {
|
2015-08-03 03:28:40 -07:00
|
|
|
input: "e-+=/(0)",
|
|
|
|
fail: true,
|
|
|
|
errMsg: `no valid expression found`,
|
|
|
|
},
|
2015-09-30 12:27:08 -07:00
|
|
|
// String quoting and escape sequence interpretation tests.
|
|
|
|
{
|
|
|
|
input: `"double-quoted string \" with escaped quote"`,
|
|
|
|
expected: &StringLiteral{
|
|
|
|
Val: "double-quoted string \" with escaped quote",
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: `'single-quoted string \' with escaped quote'`,
|
|
|
|
expected: &StringLiteral{
|
|
|
|
Val: "single-quoted string ' with escaped quote",
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: "`backtick-quoted string`",
|
|
|
|
expected: &StringLiteral{
|
|
|
|
Val: "backtick-quoted string",
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: `"\a\b\f\n\r\t\v\\\" - \xFF\377\u1234\U00010111\U0001011111☺"`,
|
|
|
|
expected: &StringLiteral{
|
|
|
|
Val: "\a\b\f\n\r\t\v\\\" - \xFF\377\u1234\U00010111\U0001011111☺",
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: `'\a\b\f\n\r\t\v\\\' - \xFF\377\u1234\U00010111\U0001011111☺'`,
|
|
|
|
expected: &StringLiteral{
|
|
|
|
Val: "\a\b\f\n\r\t\v\\' - \xFF\377\u1234\U00010111\U0001011111☺",
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: "`" + `\a\b\f\n\r\t\v\\\"\' - \xFF\377\u1234\U00010111\U0001011111☺` + "`",
|
|
|
|
expected: &StringLiteral{
|
|
|
|
Val: `\a\b\f\n\r\t\v\\\"\' - \xFF\377\u1234\U00010111\U0001011111☺`,
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: "`\\``",
|
|
|
|
fail: true,
|
|
|
|
errMsg: "could not parse remaining input",
|
|
|
|
}, {
|
|
|
|
input: `"\`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "escape sequence not terminated",
|
|
|
|
}, {
|
|
|
|
input: `"\c"`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "unknown escape sequence U+0063 'c'",
|
|
|
|
}, {
|
|
|
|
input: `"\x."`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "illegal character U+002E '.' in escape sequence",
|
|
|
|
},
|
2018-12-22 05:47:13 -08:00
|
|
|
// Subquery.
|
|
|
|
{
|
|
|
|
input: `foo{bar="baz"}[10m:6s]`,
|
|
|
|
expected: &SubqueryExpr{
|
|
|
|
Expr: &VectorSelector{
|
|
|
|
Name: "foo",
|
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, "bar", "baz"),
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Range: 10 * time.Minute,
|
|
|
|
Step: 6 * time.Second,
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: `foo[10m:]`,
|
|
|
|
expected: &SubqueryExpr{
|
|
|
|
Expr: &VectorSelector{
|
|
|
|
Name: "foo",
|
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Range: 10 * time.Minute,
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: `min_over_time(rate(foo{bar="baz"}[2s])[5m:5s])`,
|
|
|
|
expected: &Call{
|
|
|
|
Func: mustGetFunction("min_over_time"),
|
|
|
|
Args: Expressions{
|
|
|
|
&SubqueryExpr{
|
|
|
|
Expr: &Call{
|
|
|
|
Func: mustGetFunction("rate"),
|
|
|
|
Args: Expressions{
|
|
|
|
&MatrixSelector{
|
|
|
|
Name: "foo",
|
|
|
|
Range: 2 * time.Second,
|
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, "bar", "baz"),
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Range: 5 * time.Minute,
|
|
|
|
Step: 5 * time.Second,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: `min_over_time(rate(foo{bar="baz"}[2s])[5m:])[4m:3s]`,
|
|
|
|
expected: &SubqueryExpr{
|
|
|
|
Expr: &Call{
|
|
|
|
Func: mustGetFunction("min_over_time"),
|
|
|
|
Args: Expressions{
|
|
|
|
&SubqueryExpr{
|
|
|
|
Expr: &Call{
|
|
|
|
Func: mustGetFunction("rate"),
|
|
|
|
Args: Expressions{
|
|
|
|
&MatrixSelector{
|
|
|
|
Name: "foo",
|
|
|
|
Range: 2 * time.Second,
|
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, "bar", "baz"),
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Range: 5 * time.Minute,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Range: 4 * time.Minute,
|
|
|
|
Step: 3 * time.Second,
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: `min_over_time(rate(foo{bar="baz"}[2s])[5m:] offset 4m)[4m:3s]`,
|
|
|
|
expected: &SubqueryExpr{
|
|
|
|
Expr: &Call{
|
|
|
|
Func: mustGetFunction("min_over_time"),
|
|
|
|
Args: Expressions{
|
|
|
|
&SubqueryExpr{
|
|
|
|
Expr: &Call{
|
|
|
|
Func: mustGetFunction("rate"),
|
|
|
|
Args: Expressions{
|
|
|
|
&MatrixSelector{
|
|
|
|
Name: "foo",
|
|
|
|
Range: 2 * time.Second,
|
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, "bar", "baz"),
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Range: 5 * time.Minute,
|
|
|
|
Offset: 4 * time.Minute,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Range: 4 * time.Minute,
|
|
|
|
Step: 3 * time.Second,
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: "sum without(and, by, avg, count, alert, annotations)(some_metric) [30m:10s]",
|
|
|
|
expected: &SubqueryExpr{
|
|
|
|
Expr: &AggregateExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: SUM,
|
2018-12-22 05:47:13 -08:00
|
|
|
Without: true,
|
|
|
|
Expr: &VectorSelector{
|
|
|
|
Name: "some_metric",
|
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "some_metric"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Grouping: []string{"and", "by", "avg", "count", "alert", "annotations"},
|
|
|
|
},
|
|
|
|
Range: 30 * time.Minute,
|
|
|
|
Step: 10 * time.Second,
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: `some_metric OFFSET 1m [10m:5s]`,
|
|
|
|
expected: &SubqueryExpr{
|
|
|
|
Expr: &VectorSelector{
|
|
|
|
Name: "some_metric",
|
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "some_metric"),
|
|
|
|
},
|
|
|
|
Offset: 1 * time.Minute,
|
|
|
|
},
|
|
|
|
Range: 10 * time.Minute,
|
|
|
|
Step: 5 * time.Second,
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: `(foo + bar{nm="val"})[5m:]`,
|
|
|
|
expected: &SubqueryExpr{
|
|
|
|
Expr: &ParenExpr{
|
|
|
|
Expr: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: ADD,
|
2018-12-22 05:47:13 -08:00
|
|
|
VectorMatching: &VectorMatching{
|
|
|
|
Card: CardOneToOne,
|
|
|
|
},
|
|
|
|
LHS: &VectorSelector{
|
|
|
|
Name: "foo",
|
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
RHS: &VectorSelector{
|
|
|
|
Name: "bar",
|
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, "nm", "val"),
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "bar"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Range: 5 * time.Minute,
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: `(foo + bar{nm="val"})[5m:] offset 10m`,
|
|
|
|
expected: &SubqueryExpr{
|
|
|
|
Expr: &ParenExpr{
|
|
|
|
Expr: &BinaryExpr{
|
2019-11-26 05:29:42 -08:00
|
|
|
Op: ADD,
|
2018-12-22 05:47:13 -08:00
|
|
|
VectorMatching: &VectorMatching{
|
|
|
|
Card: CardOneToOne,
|
|
|
|
},
|
|
|
|
LHS: &VectorSelector{
|
|
|
|
Name: "foo",
|
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "foo"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
RHS: &VectorSelector{
|
|
|
|
Name: "bar",
|
|
|
|
LabelMatchers: []*labels.Matcher{
|
|
|
|
mustLabelMatcher(labels.MatchEqual, "nm", "val"),
|
|
|
|
mustLabelMatcher(labels.MatchEqual, string(model.MetricNameLabel), "bar"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Range: 5 * time.Minute,
|
|
|
|
Offset: 10 * time.Minute,
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
input: "test[5d] OFFSET 10s [10m:5s]",
|
|
|
|
fail: true,
|
|
|
|
errMsg: "parse error at char 29: subquery is only allowed on instant vector, got matrix in \"test[5d] offset 10s[10m:5s]\"",
|
|
|
|
}, {
|
|
|
|
input: `(foo + bar{nm="val"})[5m:][10m:5s]`,
|
|
|
|
fail: true,
|
|
|
|
errMsg: "parse error at char 27: could not parse remaining input \"[10m:5s]\"...",
|
|
|
|
},
|
2015-03-30 09:12:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestParseExpressions(t *testing.T) {
|
|
|
|
for _, test := range testExpr {
|
2018-03-20 07:30:52 -07:00
|
|
|
expr, err := ParseExpr(test.input)
|
2015-08-03 03:53:31 -07:00
|
|
|
|
|
|
|
// Unexpected errors are always caused by a bug.
|
2019-10-09 17:06:53 -07:00
|
|
|
testutil.Assert(t, err != errUnexpected, "unexpected error occurred")
|
2015-03-30 09:12:51 -07:00
|
|
|
|
2019-10-09 17:06:53 -07:00
|
|
|
if !test.fail {
|
|
|
|
testutil.Ok(t, err)
|
|
|
|
testutil.Equals(t, expr, test.expected, "error on input '%s'", test.input)
|
|
|
|
} else {
|
|
|
|
testutil.NotOk(t, err)
|
|
|
|
testutil.Assert(t, strings.Contains(err.Error(), test.errMsg), "unexpected error on input '%s'", test.input)
|
2015-03-30 09:12:51 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NaN has no equality. Thus, we need a separate test for it.
|
|
|
|
func TestNaNExpression(t *testing.T) {
|
2018-03-20 07:30:52 -07:00
|
|
|
expr, err := ParseExpr("NaN")
|
2019-10-09 17:06:53 -07:00
|
|
|
testutil.Ok(t, err)
|
2015-03-30 09:12:51 -07:00
|
|
|
|
|
|
|
nl, ok := expr.(*NumberLiteral)
|
2019-10-09 17:06:53 -07:00
|
|
|
testutil.Assert(t, ok, "expected number literal but got %T", expr)
|
|
|
|
testutil.Assert(t, math.IsNaN(float64(nl.Val)), "expected 'NaN' in number literal but got %v", nl.Val)
|
2015-03-30 09:12:51 -07:00
|
|
|
}
|
|
|
|
|
2016-12-25 02:34:22 -08:00
|
|
|
func mustLabelMatcher(mt labels.MatchType, name, val string) *labels.Matcher {
|
|
|
|
m, err := labels.NewMatcher(mt, name, val)
|
2015-03-30 09:12:51 -07:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
|
|
|
func mustGetFunction(name string) *Function {
|
2015-03-30 10:13:36 -07:00
|
|
|
f, ok := getFunction(name)
|
2015-03-30 09:12:51 -07:00
|
|
|
if !ok {
|
2019-03-25 16:01:12 -07:00
|
|
|
panic(errors.Errorf("function %q does not exist", name))
|
2015-03-30 09:12:51 -07:00
|
|
|
}
|
|
|
|
return f
|
|
|
|
}
|
2015-05-11 05:04:53 -07:00
|
|
|
|
|
|
|
var testSeries = []struct {
|
|
|
|
input string
|
2016-12-28 00:16:48 -08:00
|
|
|
expectedMetric labels.Labels
|
2015-05-11 05:04:53 -07:00
|
|
|
expectedValues []sequenceValue
|
|
|
|
fail bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
input: `{} 1 2 3`,
|
2016-12-28 00:16:48 -08:00
|
|
|
expectedMetric: labels.Labels{},
|
2015-05-11 05:04:53 -07:00
|
|
|
expectedValues: newSeq(1, 2, 3),
|
|
|
|
}, {
|
2016-12-28 00:16:48 -08:00
|
|
|
input: `{a="b"} -1 2 3`,
|
|
|
|
expectedMetric: labels.FromStrings("a", "b"),
|
2015-05-11 05:04:53 -07:00
|
|
|
expectedValues: newSeq(-1, 2, 3),
|
|
|
|
}, {
|
2016-12-28 00:16:48 -08:00
|
|
|
input: `my_metric 1 2 3`,
|
|
|
|
expectedMetric: labels.FromStrings(labels.MetricName, "my_metric"),
|
2015-05-11 05:04:53 -07:00
|
|
|
expectedValues: newSeq(1, 2, 3),
|
|
|
|
}, {
|
2016-12-28 00:16:48 -08:00
|
|
|
input: `my_metric{} 1 2 3`,
|
|
|
|
expectedMetric: labels.FromStrings(labels.MetricName, "my_metric"),
|
2015-05-11 05:04:53 -07:00
|
|
|
expectedValues: newSeq(1, 2, 3),
|
|
|
|
}, {
|
2016-12-28 00:16:48 -08:00
|
|
|
input: `my_metric{a="b"} 1 2 3`,
|
|
|
|
expectedMetric: labels.FromStrings(labels.MetricName, "my_metric", "a", "b"),
|
2015-05-11 05:04:53 -07:00
|
|
|
expectedValues: newSeq(1, 2, 3),
|
|
|
|
}, {
|
2016-12-28 00:16:48 -08:00
|
|
|
input: `my_metric{a="b"} 1 2 3-10x4`,
|
|
|
|
expectedMetric: labels.FromStrings(labels.MetricName, "my_metric", "a", "b"),
|
2015-05-11 05:04:53 -07:00
|
|
|
expectedValues: newSeq(1, 2, 3, -7, -17, -27, -37),
|
2015-06-04 09:21:24 -07:00
|
|
|
}, {
|
2016-12-28 00:16:48 -08:00
|
|
|
input: `my_metric{a="b"} 1 2 3-0x4`,
|
|
|
|
expectedMetric: labels.FromStrings(labels.MetricName, "my_metric", "a", "b"),
|
2015-06-04 09:21:24 -07:00
|
|
|
expectedValues: newSeq(1, 2, 3, 3, 3, 3, 3),
|
2015-05-11 05:04:53 -07:00
|
|
|
}, {
|
2016-12-28 00:16:48 -08:00
|
|
|
input: `my_metric{a="b"} 1 3 _ 5 _x4`,
|
|
|
|
expectedMetric: labels.FromStrings(labels.MetricName, "my_metric", "a", "b"),
|
2015-05-11 05:04:53 -07:00
|
|
|
expectedValues: newSeq(1, 3, none, 5, none, none, none, none),
|
|
|
|
}, {
|
|
|
|
input: `my_metric{a="b"} 1 3 _ 5 _a4`,
|
|
|
|
fail: true,
|
2018-09-13 01:08:01 -07:00
|
|
|
}, {
|
|
|
|
input: `my_metric{a="b"} 1 -1`,
|
|
|
|
expectedMetric: labels.FromStrings(labels.MetricName, "my_metric", "a", "b"),
|
|
|
|
expectedValues: newSeq(1, -1),
|
|
|
|
}, {
|
|
|
|
input: `my_metric{a="b"} 1 +1`,
|
|
|
|
expectedMetric: labels.FromStrings(labels.MetricName, "my_metric", "a", "b"),
|
|
|
|
expectedValues: newSeq(1, 1),
|
|
|
|
}, {
|
|
|
|
input: `my_metric{a="b"} 1 -1 -3-10x4 7 9 +5`,
|
|
|
|
expectedMetric: labels.FromStrings(labels.MetricName, "my_metric", "a", "b"),
|
|
|
|
expectedValues: newSeq(1, -1, -3, -13, -23, -33, -43, 7, 9, 5),
|
|
|
|
}, {
|
|
|
|
input: `my_metric{a="b"} 1 +1 +4 -6 -2 8`,
|
|
|
|
expectedMetric: labels.FromStrings(labels.MetricName, "my_metric", "a", "b"),
|
|
|
|
expectedValues: newSeq(1, 1, 4, -6, -2, 8),
|
|
|
|
}, {
|
|
|
|
// Trailing spaces should be correctly handles.
|
|
|
|
input: `my_metric{a="b"} 1 2 3 `,
|
|
|
|
expectedMetric: labels.FromStrings(labels.MetricName, "my_metric", "a", "b"),
|
|
|
|
expectedValues: newSeq(1, 2, 3),
|
|
|
|
}, {
|
|
|
|
input: `my_metric{a="b"} -3-3 -3`,
|
|
|
|
fail: true,
|
|
|
|
}, {
|
|
|
|
input: `my_metric{a="b"} -3 -3-3`,
|
|
|
|
fail: true,
|
|
|
|
}, {
|
|
|
|
input: `my_metric{a="b"} -3 _-2`,
|
|
|
|
fail: true,
|
|
|
|
}, {
|
|
|
|
input: `my_metric{a="b"} -3 3+3x4-4`,
|
|
|
|
fail: true,
|
2015-05-11 05:04:53 -07:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-05-11 06:56:35 -07:00
|
|
|
// For these tests only, we use the smallest float64 to signal an omitted value.
|
2015-05-11 05:04:53 -07:00
|
|
|
const none = math.SmallestNonzeroFloat64
|
|
|
|
|
|
|
|
func newSeq(vals ...float64) (res []sequenceValue) {
|
|
|
|
for _, v := range vals {
|
|
|
|
if v == none {
|
|
|
|
res = append(res, sequenceValue{omitted: true})
|
|
|
|
} else {
|
2016-12-23 04:51:59 -08:00
|
|
|
res = append(res, sequenceValue{value: v})
|
2015-05-11 05:04:53 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestParseSeries(t *testing.T) {
|
|
|
|
for _, test := range testSeries {
|
2018-03-20 07:30:52 -07:00
|
|
|
metric, vals, err := parseSeriesDesc(test.input)
|
2015-08-03 03:53:31 -07:00
|
|
|
|
|
|
|
// Unexpected errors are always caused by a bug.
|
2019-10-09 17:06:53 -07:00
|
|
|
testutil.Assert(t, err != errUnexpected, "unexpected error occurred")
|
2015-08-03 03:53:31 -07:00
|
|
|
|
2019-10-09 17:06:53 -07:00
|
|
|
if !test.fail {
|
|
|
|
testutil.Ok(t, err)
|
|
|
|
testutil.Equals(t, test.expectedMetric, metric, "error on input '%s'", test.input)
|
|
|
|
testutil.Equals(t, test.expectedValues, vals, "error in input '%s'", test.input)
|
2018-03-20 07:30:52 -07:00
|
|
|
} else {
|
2019-10-09 17:06:53 -07:00
|
|
|
testutil.NotOk(t, err)
|
2015-05-11 05:04:53 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-08-02 04:37:42 -07:00
|
|
|
|
2015-08-19 06:28:53 -07:00
|
|
|
func TestRecoverParserRuntime(t *testing.T) {
|
2018-11-12 10:47:13 -08:00
|
|
|
p := newParser("foo bar")
|
2015-08-02 04:37:42 -07:00
|
|
|
var err error
|
|
|
|
|
2018-11-12 10:47:13 -08:00
|
|
|
defer func() {
|
2019-10-09 17:06:53 -07:00
|
|
|
testutil.Equals(t, err, errUnexpected)
|
2018-11-12 10:47:13 -08:00
|
|
|
}()
|
|
|
|
defer p.recover(&err)
|
2015-08-02 04:37:42 -07:00
|
|
|
// Cause a runtime panic.
|
|
|
|
var a []int
|
2019-05-03 06:11:28 -07:00
|
|
|
//nolint:govet
|
2015-08-02 04:37:42 -07:00
|
|
|
a[123] = 1
|
|
|
|
}
|
|
|
|
|
2015-08-19 06:28:53 -07:00
|
|
|
func TestRecoverParserError(t *testing.T) {
|
2018-11-12 10:47:13 -08:00
|
|
|
p := newParser("foo bar")
|
2015-08-02 04:37:42 -07:00
|
|
|
var err error
|
|
|
|
|
2019-03-25 16:01:12 -07:00
|
|
|
e := errors.New("custom error")
|
2015-08-02 04:37:42 -07:00
|
|
|
|
2015-08-25 17:04:01 -07:00
|
|
|
defer func() {
|
2019-10-09 17:06:53 -07:00
|
|
|
testutil.Equals(t, err.Error(), e.Error())
|
2015-08-25 17:04:01 -07:00
|
|
|
}()
|
|
|
|
defer p.recover(&err)
|
|
|
|
|
|
|
|
panic(e)
|
2015-08-02 04:37:42 -07:00
|
|
|
}
|