2020-06-01 10:46:37 +00:00
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/url"
|
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
2020-06-15 19:15:47 +00:00
|
|
|
"time"
|
2020-06-01 10:46:37 +00:00
|
|
|
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/app/vmalert/notifier"
|
2020-09-11 19:14:30 +00:00
|
|
|
"gopkg.in/yaml.v2"
|
2020-06-01 10:46:37 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
u, _ := url.Parse("https://victoriametrics.com/path")
|
|
|
|
notifier.InitTemplateFunc(u)
|
|
|
|
os.Exit(m.Run())
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestParseGood(t *testing.T) {
|
2020-06-06 20:27:09 +00:00
|
|
|
if _, err := Parse([]string{"testdata/*good.rules", "testdata/dir/*good.*"}, true, true); err != nil {
|
2020-06-01 10:46:37 +00:00
|
|
|
t.Errorf("error parsing files %s", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestParseBad(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
path []string
|
|
|
|
expErr string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
[]string{"testdata/rules0-bad.rules"},
|
|
|
|
"unexpected token",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
[]string{"testdata/dir/rules0-bad.rules"},
|
|
|
|
"error parsing annotation",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
[]string{"testdata/dir/rules1-bad.rules"},
|
|
|
|
"duplicate in file",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
[]string{"testdata/dir/rules2-bad.rules"},
|
|
|
|
"function \"value\" not defined",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
[]string{"testdata/dir/rules3-bad.rules"},
|
|
|
|
"either `record` or `alert` must be set",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
[]string{"testdata/dir/rules4-bad.rules"},
|
|
|
|
"either `record` or `alert` must be set",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tc := range testCases {
|
2020-06-06 20:27:09 +00:00
|
|
|
_, err := Parse(tc.path, true, true)
|
2020-06-01 10:46:37 +00:00
|
|
|
if err == nil {
|
|
|
|
t.Errorf("expected to get error")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if !strings.Contains(err.Error(), tc.expErr) {
|
|
|
|
t.Errorf("expected err to contain %q; got %q instead", tc.expErr, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRule_Validate(t *testing.T) {
|
|
|
|
if err := (&Rule{}).Validate(); err == nil {
|
2020-07-02 15:05:36 +00:00
|
|
|
t.Errorf("expected empty name error")
|
2020-06-01 10:46:37 +00:00
|
|
|
}
|
|
|
|
if err := (&Rule{Alert: "alert"}).Validate(); err == nil {
|
2020-07-02 15:05:36 +00:00
|
|
|
t.Errorf("expected empty expr error")
|
2020-06-01 10:46:37 +00:00
|
|
|
}
|
|
|
|
if err := (&Rule{Alert: "alert", Expr: "test>0"}).Validate(); err != nil {
|
2020-07-02 15:05:36 +00:00
|
|
|
t.Errorf("expected valid rule; got %s", err)
|
2020-06-06 20:27:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGroup_Validate(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
group *Group
|
|
|
|
rules []Rule
|
|
|
|
validateAnnotations bool
|
|
|
|
validateExpressions bool
|
|
|
|
expErr string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
group: &Group{},
|
|
|
|
expErr: "group name must be set",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
group: &Group{Name: "test"},
|
|
|
|
expErr: "contain no rules",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
group: &Group{Name: "test",
|
|
|
|
Rules: []Rule{
|
|
|
|
{
|
|
|
|
Record: "record",
|
|
|
|
Expr: "up | 0",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expErr: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
group: &Group{Name: "test",
|
|
|
|
Rules: []Rule{
|
|
|
|
{
|
|
|
|
Record: "record",
|
|
|
|
Expr: "up | 0",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expErr: "invalid expression",
|
|
|
|
validateExpressions: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
group: &Group{Name: "test",
|
|
|
|
Rules: []Rule{
|
|
|
|
{
|
|
|
|
Alert: "alert",
|
|
|
|
Expr: "up == 1",
|
|
|
|
Labels: map[string]string{
|
|
|
|
"summary": "{{ value|query }}",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expErr: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
group: &Group{Name: "test",
|
|
|
|
Rules: []Rule{
|
|
|
|
{
|
|
|
|
Alert: "alert",
|
|
|
|
Expr: "up == 1",
|
|
|
|
Labels: map[string]string{
|
|
|
|
"summary": "{{ value|query }}",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expErr: "error parsing annotation",
|
|
|
|
validateAnnotations: true,
|
|
|
|
},
|
2020-06-15 19:15:47 +00:00
|
|
|
{
|
|
|
|
group: &Group{Name: "test",
|
|
|
|
Rules: []Rule{
|
|
|
|
{
|
|
|
|
Alert: "alert",
|
|
|
|
Expr: "up == 1",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Alert: "alert",
|
|
|
|
Expr: "up == 1",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expErr: "duplicate",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
group: &Group{Name: "test",
|
|
|
|
Rules: []Rule{
|
|
|
|
{Alert: "alert", Expr: "up == 1", Labels: map[string]string{
|
|
|
|
"summary": "{{ value|query }}",
|
|
|
|
}},
|
|
|
|
{Alert: "alert", Expr: "up == 1", Labels: map[string]string{
|
|
|
|
"summary": "{{ value|query }}",
|
|
|
|
}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expErr: "duplicate",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
group: &Group{Name: "test",
|
|
|
|
Rules: []Rule{
|
|
|
|
{Record: "record", Expr: "up == 1", Labels: map[string]string{
|
|
|
|
"summary": "{{ value|query }}",
|
|
|
|
}},
|
|
|
|
{Record: "record", Expr: "up == 1", Labels: map[string]string{
|
|
|
|
"summary": "{{ value|query }}",
|
|
|
|
}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expErr: "duplicate",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
group: &Group{Name: "test",
|
|
|
|
Rules: []Rule{
|
|
|
|
{Alert: "alert", Expr: "up == 1", Labels: map[string]string{
|
|
|
|
"summary": "{{ value|query }}",
|
|
|
|
}},
|
|
|
|
{Alert: "alert", Expr: "up == 1", Labels: map[string]string{
|
|
|
|
"description": "{{ value|query }}",
|
|
|
|
}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expErr: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
group: &Group{Name: "test",
|
|
|
|
Rules: []Rule{
|
|
|
|
{Record: "alert", Expr: "up == 1", Labels: map[string]string{
|
|
|
|
"summary": "{{ value|query }}",
|
|
|
|
}},
|
|
|
|
{Alert: "alert", Expr: "up == 1", Labels: map[string]string{
|
|
|
|
"summary": "{{ value|query }}",
|
|
|
|
}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expErr: "",
|
|
|
|
},
|
2020-06-06 20:27:09 +00:00
|
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
|
|
err := tc.group.Validate(tc.validateAnnotations, tc.validateExpressions)
|
|
|
|
if err == nil {
|
|
|
|
if tc.expErr != "" {
|
|
|
|
t.Errorf("expected to get err %q; got nil insted", tc.expErr)
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if !strings.Contains(err.Error(), tc.expErr) {
|
|
|
|
t.Errorf("expected err to contain %q; got %q instead", tc.expErr, err)
|
|
|
|
}
|
2020-06-01 10:46:37 +00:00
|
|
|
}
|
|
|
|
}
|
2020-06-15 19:15:47 +00:00
|
|
|
|
|
|
|
func TestHashRule(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
a, b Rule
|
|
|
|
equal bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
Rule{Record: "record", Expr: "up == 1"},
|
|
|
|
Rule{Record: "record", Expr: "up == 1"},
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Rule{Alert: "alert", Expr: "up == 1"},
|
|
|
|
Rule{Alert: "alert", Expr: "up == 1"},
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Rule{Alert: "alert", Expr: "up == 1", Labels: map[string]string{
|
|
|
|
"foo": "bar",
|
|
|
|
"baz": "foo",
|
|
|
|
}},
|
|
|
|
Rule{Alert: "alert", Expr: "up == 1", Labels: map[string]string{
|
|
|
|
"foo": "bar",
|
|
|
|
"baz": "foo",
|
|
|
|
}},
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Rule{Alert: "alert", Expr: "up == 1", Labels: map[string]string{
|
|
|
|
"foo": "bar",
|
|
|
|
"baz": "foo",
|
|
|
|
}},
|
|
|
|
Rule{Alert: "alert", Expr: "up == 1", Labels: map[string]string{
|
|
|
|
"baz": "foo",
|
|
|
|
"foo": "bar",
|
|
|
|
}},
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Rule{Alert: "record", Expr: "up == 1"},
|
|
|
|
Rule{Alert: "record", Expr: "up == 1"},
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
2020-10-08 17:12:57 +00:00
|
|
|
Rule{Alert: "alert", Expr: "up == 1", For: NewPromDuration(time.Minute)},
|
2020-06-15 19:15:47 +00:00
|
|
|
Rule{Alert: "alert", Expr: "up == 1"},
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Rule{Alert: "record", Expr: "up == 1"},
|
|
|
|
Rule{Record: "record", Expr: "up == 1"},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Rule{Record: "record", Expr: "up == 1"},
|
|
|
|
Rule{Record: "record", Expr: "up == 2"},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Rule{Alert: "alert", Expr: "up == 1", Labels: map[string]string{
|
|
|
|
"foo": "bar",
|
|
|
|
"baz": "foo",
|
|
|
|
}},
|
|
|
|
Rule{Alert: "alert", Expr: "up == 1", Labels: map[string]string{
|
|
|
|
"baz": "foo",
|
|
|
|
"foo": "baz",
|
|
|
|
}},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Rule{Alert: "alert", Expr: "up == 1", Labels: map[string]string{
|
|
|
|
"foo": "bar",
|
|
|
|
"baz": "foo",
|
|
|
|
}},
|
|
|
|
Rule{Alert: "alert", Expr: "up == 1", Labels: map[string]string{
|
|
|
|
"baz": "foo",
|
|
|
|
}},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Rule{Alert: "alert", Expr: "up == 1", Labels: map[string]string{
|
|
|
|
"foo": "bar",
|
|
|
|
"baz": "foo",
|
|
|
|
}},
|
|
|
|
Rule{Alert: "alert", Expr: "up == 1"},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for i, tc := range testCases {
|
|
|
|
aID, bID := HashRule(tc.a), HashRule(tc.b)
|
|
|
|
if tc.equal != (aID == bID) {
|
|
|
|
t.Fatalf("missmatch for rule %d", i)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-09-11 19:14:30 +00:00
|
|
|
|
|
|
|
func TestGroupChecksum(t *testing.T) {
|
|
|
|
data := `
|
|
|
|
name: TestGroup
|
|
|
|
rules:
|
|
|
|
- alert: ExampleAlertAlwaysFiring
|
|
|
|
expr: sum by(job) (up == 1)
|
|
|
|
- record: handler:requests:rate5m
|
|
|
|
expr: sum(rate(prometheus_http_requests_total[5m])) by (handler)
|
|
|
|
`
|
|
|
|
var g Group
|
|
|
|
if err := yaml.Unmarshal([]byte(data), &g); err != nil {
|
|
|
|
t.Fatalf("failed to unmarshal: %s", err)
|
|
|
|
}
|
|
|
|
if g.Checksum == "" {
|
|
|
|
t.Fatalf("expected to get non-empty checksum")
|
|
|
|
}
|
|
|
|
newData := `
|
|
|
|
name: TestGroup
|
|
|
|
rules:
|
|
|
|
- record: handler:requests:rate5m
|
|
|
|
expr: sum(rate(prometheus_http_requests_total[5m])) by (handler)
|
|
|
|
- alert: ExampleAlertAlwaysFiring
|
|
|
|
expr: sum by(job) (up == 1)
|
|
|
|
`
|
|
|
|
var ng Group
|
|
|
|
if err := yaml.Unmarshal([]byte(newData), &g); err != nil {
|
|
|
|
t.Fatalf("failed to unmarshal: %s", err)
|
|
|
|
}
|
|
|
|
if g.Checksum == ng.Checksum {
|
|
|
|
t.Fatalf("expected to get different checksums")
|
|
|
|
}
|
|
|
|
}
|