2018-02-16 10:00:13 -06:00
|
|
|
package alerting
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
"math"
|
|
|
|
"testing"
|
2019-05-20 05:13:32 -05:00
|
|
|
"time"
|
|
|
|
|
2021-09-22 20:12:12 -05:00
|
|
|
"github.com/grafana/grafana/pkg/bus"
|
|
|
|
"github.com/grafana/grafana/pkg/components/simplejson"
|
|
|
|
"github.com/grafana/grafana/pkg/infra/usagestats"
|
|
|
|
"github.com/grafana/grafana/pkg/models"
|
2019-03-29 00:58:37 -05:00
|
|
|
"github.com/grafana/grafana/pkg/setting"
|
2018-02-16 10:00:13 -06:00
|
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
|
|
)
|
|
|
|
|
|
|
|
type FakeEvalHandler struct {
|
2018-04-13 11:40:14 -05:00
|
|
|
SuccessCallID int // 0 means never success
|
2018-02-16 10:00:13 -06:00
|
|
|
CallNb int
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewFakeEvalHandler(successCallID int) *FakeEvalHandler {
|
|
|
|
return &FakeEvalHandler{
|
|
|
|
SuccessCallID: successCallID,
|
|
|
|
CallNb: 0,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (handler *FakeEvalHandler) Eval(evalContext *EvalContext) {
|
|
|
|
handler.CallNb++
|
|
|
|
if handler.CallNb != handler.SuccessCallID {
|
|
|
|
evalContext.Error = errors.New("Fake evaluation failure")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type FakeResultHandler struct{}
|
|
|
|
|
2019-05-20 05:13:32 -05:00
|
|
|
func (handler *FakeResultHandler) handle(evalContext *EvalContext) error {
|
2018-02-16 10:00:13 -06:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestEngineProcessJob(t *testing.T) {
|
|
|
|
Convey("Alerting engine job processing", t, func() {
|
2021-09-22 20:12:12 -05:00
|
|
|
bus := bus.New()
|
2021-09-29 01:59:02 -05:00
|
|
|
usMock := &usagestats.UsageStatsMock{T: t}
|
2021-09-22 20:12:12 -05:00
|
|
|
engine := ProvideAlertEngine(nil, bus, nil, nil, usMock, setting.NewCfg())
|
2019-03-29 00:58:37 -05:00
|
|
|
setting.AlertingEvaluationTimeout = 30 * time.Second
|
|
|
|
setting.AlertingNotificationTimeout = 30 * time.Second
|
|
|
|
setting.AlertingMaxAttempts = 3
|
2018-02-16 10:00:13 -06:00
|
|
|
engine.resultHandler = &FakeResultHandler{}
|
2019-09-03 08:14:28 -05:00
|
|
|
job := &Job{running: true, Rule: &Rule{}}
|
2018-02-16 10:00:13 -06:00
|
|
|
|
2021-09-22 20:12:12 -05:00
|
|
|
Convey("Should register usage metrics func", func() {
|
|
|
|
bus.AddHandler(func(q *models.GetAllAlertsQuery) error {
|
|
|
|
settings, err := simplejson.NewJson([]byte(`{"conditions": [{"query": { "datasourceId": 1}}]}`))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
q.Result = []*models.Alert{{Settings: settings}}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
bus.AddHandler(func(q *models.GetDataSourceQuery) error {
|
|
|
|
q.Result = &models.DataSource{Id: 1, Type: models.DS_PROMETHEUS}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
report, err := usMock.GetUsageReport(context.Background())
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
|
|
|
|
So(report.Metrics["stats.alerting.ds.prometheus.count"], ShouldEqual, 1)
|
|
|
|
So(report.Metrics["stats.alerting.ds.other.count"], ShouldEqual, 0)
|
|
|
|
})
|
|
|
|
|
2018-02-16 10:00:13 -06:00
|
|
|
Convey("Should trigger retry if needed", func() {
|
|
|
|
Convey("error + not last attempt -> retry", func() {
|
|
|
|
engine.evalHandler = NewFakeEvalHandler(0)
|
|
|
|
|
2019-03-29 00:58:37 -05:00
|
|
|
for i := 1; i < setting.AlertingMaxAttempts; i++ {
|
2018-02-16 10:00:13 -06:00
|
|
|
attemptChan := make(chan int, 1)
|
2019-03-29 00:58:37 -05:00
|
|
|
cancelChan := make(chan context.CancelFunc, setting.AlertingMaxAttempts)
|
2018-02-16 10:00:13 -06:00
|
|
|
|
|
|
|
engine.processJob(i, attemptChan, cancelChan, job)
|
|
|
|
nextAttemptID, more := <-attemptChan
|
|
|
|
|
|
|
|
So(nextAttemptID, ShouldEqual, i+1)
|
|
|
|
So(more, ShouldEqual, true)
|
|
|
|
So(<-cancelChan, ShouldNotBeNil)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("error + last attempt -> no retry", func() {
|
|
|
|
engine.evalHandler = NewFakeEvalHandler(0)
|
|
|
|
attemptChan := make(chan int, 1)
|
2019-03-29 00:58:37 -05:00
|
|
|
cancelChan := make(chan context.CancelFunc, setting.AlertingMaxAttempts)
|
2018-02-16 10:00:13 -06:00
|
|
|
|
2019-03-29 00:58:37 -05:00
|
|
|
engine.processJob(setting.AlertingMaxAttempts, attemptChan, cancelChan, job)
|
2018-02-16 10:00:13 -06:00
|
|
|
nextAttemptID, more := <-attemptChan
|
|
|
|
|
|
|
|
So(nextAttemptID, ShouldEqual, 0)
|
|
|
|
So(more, ShouldEqual, false)
|
|
|
|
So(<-cancelChan, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("no error -> no retry", func() {
|
|
|
|
engine.evalHandler = NewFakeEvalHandler(1)
|
|
|
|
attemptChan := make(chan int, 1)
|
2019-03-29 00:58:37 -05:00
|
|
|
cancelChan := make(chan context.CancelFunc, setting.AlertingMaxAttempts)
|
2018-02-16 10:00:13 -06:00
|
|
|
|
|
|
|
engine.processJob(1, attemptChan, cancelChan, job)
|
|
|
|
nextAttemptID, more := <-attemptChan
|
|
|
|
|
|
|
|
So(nextAttemptID, ShouldEqual, 0)
|
|
|
|
So(more, ShouldEqual, false)
|
|
|
|
So(<-cancelChan, ShouldNotBeNil)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("Should trigger as many retries as needed", func() {
|
2018-04-13 11:40:14 -05:00
|
|
|
Convey("never success -> max retries number", func() {
|
2019-03-29 00:58:37 -05:00
|
|
|
expectedAttempts := setting.AlertingMaxAttempts
|
2018-02-16 10:00:13 -06:00
|
|
|
evalHandler := NewFakeEvalHandler(0)
|
|
|
|
engine.evalHandler = evalHandler
|
|
|
|
|
2019-10-22 07:08:18 -05:00
|
|
|
err := engine.processJobWithRetry(context.TODO(), job)
|
|
|
|
So(err, ShouldBeNil)
|
2018-02-16 10:00:13 -06:00
|
|
|
So(evalHandler.CallNb, ShouldEqual, expectedAttempts)
|
|
|
|
})
|
|
|
|
|
2018-04-13 11:40:14 -05:00
|
|
|
Convey("always success -> never retry", func() {
|
2018-02-16 10:00:13 -06:00
|
|
|
expectedAttempts := 1
|
|
|
|
evalHandler := NewFakeEvalHandler(1)
|
|
|
|
engine.evalHandler = evalHandler
|
|
|
|
|
2019-10-22 07:08:18 -05:00
|
|
|
err := engine.processJobWithRetry(context.TODO(), job)
|
|
|
|
So(err, ShouldBeNil)
|
2018-02-16 10:00:13 -06:00
|
|
|
So(evalHandler.CallNb, ShouldEqual, expectedAttempts)
|
|
|
|
})
|
|
|
|
|
2018-04-13 11:40:14 -05:00
|
|
|
Convey("some errors before success -> some retries", func() {
|
2019-03-29 00:58:37 -05:00
|
|
|
expectedAttempts := int(math.Ceil(float64(setting.AlertingMaxAttempts) / 2))
|
2018-02-16 10:00:13 -06:00
|
|
|
evalHandler := NewFakeEvalHandler(expectedAttempts)
|
|
|
|
engine.evalHandler = evalHandler
|
|
|
|
|
2019-10-22 07:08:18 -05:00
|
|
|
err := engine.processJobWithRetry(context.TODO(), job)
|
|
|
|
So(err, ShouldBeNil)
|
2018-02-16 10:00:13 -06:00
|
|
|
So(evalHandler.CallNb, ShouldEqual, expectedAttempts)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|