mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 16:45:43 -06:00
This way we are able to edit notification behavior per notifier. This would be usefull to let some notifiers send notifications, even when the state doesn't change, or with custom condition. Signed-off-by: Thibault Chataigner <t.chataigner@criteo.com>
33 lines
747 B
Go
33 lines
747 B
Go
package alerting
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/grafana/grafana/pkg/models"
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
)
|
|
|
|
func TestAlertingEvalContext(t *testing.T) {
|
|
Convey("Eval context", t, func() {
|
|
ctx := NewEvalContext(context.TODO(), &Rule{Conditions: []Condition{&conditionStub{firing: true}}})
|
|
|
|
Convey("Should update alert state", func() {
|
|
|
|
Convey("ok -> alerting", func() {
|
|
ctx.PrevAlertState = models.AlertStateOK
|
|
ctx.Rule.State = models.AlertStateAlerting
|
|
|
|
So(ctx.ShouldUpdateAlertState(), ShouldBeTrue)
|
|
})
|
|
|
|
Convey("ok -> ok", func() {
|
|
ctx.PrevAlertState = models.AlertStateOK
|
|
ctx.Rule.State = models.AlertStateOK
|
|
|
|
So(ctx.ShouldUpdateAlertState(), ShouldBeFalse)
|
|
})
|
|
})
|
|
})
|
|
}
|