117 lines
2.5 KiB
Go
117 lines
2.5 KiB
Go
// Copyright 2018 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 main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/prometheus/prometheus/promql"
|
|
)
|
|
|
|
func TestRulesUnitTest(t *testing.T) {
|
|
type args struct {
|
|
files []string
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
args args
|
|
queryOpts promql.LazyLoaderOpts
|
|
want int
|
|
}{
|
|
{
|
|
name: "Passing Unit Tests",
|
|
args: args{
|
|
files: []string{"./testdata/unittest.yml"},
|
|
},
|
|
want: 0,
|
|
},
|
|
{
|
|
name: "Bad input series",
|
|
args: args{
|
|
files: []string{"./testdata/bad-input-series.yml"},
|
|
},
|
|
want: 1,
|
|
},
|
|
{
|
|
name: "Bad PromQL",
|
|
args: args{
|
|
files: []string{"./testdata/bad-promql.yml"},
|
|
},
|
|
want: 1,
|
|
},
|
|
{
|
|
name: "Bad rules (syntax error)",
|
|
args: args{
|
|
files: []string{"./testdata/bad-rules-syntax-test.yml"},
|
|
},
|
|
want: 1,
|
|
},
|
|
{
|
|
name: "Bad rules (error evaluating)",
|
|
args: args{
|
|
files: []string{"./testdata/bad-rules-error-test.yml"},
|
|
},
|
|
want: 1,
|
|
},
|
|
{
|
|
name: "Simple failing test",
|
|
args: args{
|
|
files: []string{"./testdata/failing.yml"},
|
|
},
|
|
want: 1,
|
|
},
|
|
{
|
|
name: "Disabled feature (@ modifier)",
|
|
args: args{
|
|
files: []string{"./testdata/at-modifier-test.yml"},
|
|
},
|
|
want: 1,
|
|
},
|
|
{
|
|
name: "Enabled feature (@ modifier)",
|
|
args: args{
|
|
files: []string{"./testdata/at-modifier-test.yml"},
|
|
},
|
|
queryOpts: promql.LazyLoaderOpts{
|
|
EnableAtModifier: true,
|
|
},
|
|
want: 0,
|
|
},
|
|
{
|
|
name: "Disabled feature (negative offset)",
|
|
args: args{
|
|
files: []string{"./testdata/negative-offset-test.yml"},
|
|
},
|
|
want: 1,
|
|
},
|
|
{
|
|
name: "Enabled feature (negative offset)",
|
|
args: args{
|
|
files: []string{"./testdata/negative-offset-test.yml"},
|
|
},
|
|
queryOpts: promql.LazyLoaderOpts{
|
|
EnableNegativeOffset: true,
|
|
},
|
|
want: 0,
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
if got := RulesUnitTest(tt.queryOpts, tt.args.files...); got != tt.want {
|
|
t.Errorf("RulesUnitTest() = %v, want %v", got, tt.want)
|
|
}
|
|
})
|
|
}
|
|
}
|