|
@@ -8,12 +8,13 @@ import (
|
|
|
)
|
|
)
|
|
|
|
|
|
|
|
type conditionStub struct {
|
|
type conditionStub struct {
|
|
|
- firing bool
|
|
|
|
|
- matches []*EvalMatch
|
|
|
|
|
|
|
+ firing bool
|
|
|
|
|
+ operator string
|
|
|
|
|
+ matches []*EvalMatch
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (c *conditionStub) Eval(context *EvalContext) (*ConditionResult, error) {
|
|
func (c *conditionStub) Eval(context *EvalContext) (*ConditionResult, error) {
|
|
|
- return &ConditionResult{Firing: c.firing, EvalMatches: c.matches}, nil
|
|
|
|
|
|
|
+ return &ConditionResult{Firing: c.firing, EvalMatches: c.matches, Operator: c.operator}, nil
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func TestAlertingExecutor(t *testing.T) {
|
|
func TestAlertingExecutor(t *testing.T) {
|
|
@@ -29,6 +30,7 @@ func TestAlertingExecutor(t *testing.T) {
|
|
|
|
|
|
|
|
handler.Eval(context)
|
|
handler.Eval(context)
|
|
|
So(context.Firing, ShouldEqual, true)
|
|
So(context.Firing, ShouldEqual, true)
|
|
|
|
|
+ So(context.FiringEval, ShouldEqual, "true = true")
|
|
|
})
|
|
})
|
|
|
|
|
|
|
|
Convey("Show return false with not passing asdf", func() {
|
|
Convey("Show return false with not passing asdf", func() {
|
|
@@ -41,6 +43,89 @@ func TestAlertingExecutor(t *testing.T) {
|
|
|
|
|
|
|
|
handler.Eval(context)
|
|
handler.Eval(context)
|
|
|
So(context.Firing, ShouldEqual, false)
|
|
So(context.Firing, ShouldEqual, false)
|
|
|
|
|
+ So(context.FiringEval, ShouldEqual, "[true AND false] = false")
|
|
|
|
|
+ })
|
|
|
|
|
+
|
|
|
|
|
+ Convey("Show return true if any of the condition is passing with OR operator", func() {
|
|
|
|
|
+ context := NewEvalContext(context.TODO(), &Rule{
|
|
|
|
|
+ Conditions: []Condition{
|
|
|
|
|
+ &conditionStub{firing: true, operator: "and"},
|
|
|
|
|
+ &conditionStub{firing: false, operator: "or"},
|
|
|
|
|
+ },
|
|
|
|
|
+ })
|
|
|
|
|
+
|
|
|
|
|
+ handler.Eval(context)
|
|
|
|
|
+ So(context.Firing, ShouldEqual, true)
|
|
|
|
|
+ So(context.FiringEval, ShouldEqual, "[true OR false] = true")
|
|
|
|
|
+ })
|
|
|
|
|
+
|
|
|
|
|
+ Convey("Show return false if any of the condition is failing with AND operator", func() {
|
|
|
|
|
+ context := NewEvalContext(context.TODO(), &Rule{
|
|
|
|
|
+ Conditions: []Condition{
|
|
|
|
|
+ &conditionStub{firing: true, operator: "and"},
|
|
|
|
|
+ &conditionStub{firing: false, operator: "and"},
|
|
|
|
|
+ },
|
|
|
|
|
+ })
|
|
|
|
|
+
|
|
|
|
|
+ handler.Eval(context)
|
|
|
|
|
+ So(context.Firing, ShouldEqual, false)
|
|
|
|
|
+ So(context.FiringEval, ShouldEqual, "[true AND false] = false")
|
|
|
|
|
+ })
|
|
|
|
|
+
|
|
|
|
|
+ Convey("Show return true if one condition is failing with nested OR operator", func() {
|
|
|
|
|
+ context := NewEvalContext(context.TODO(), &Rule{
|
|
|
|
|
+ Conditions: []Condition{
|
|
|
|
|
+ &conditionStub{firing: true, operator: "and"},
|
|
|
|
|
+ &conditionStub{firing: true, operator: "and"},
|
|
|
|
|
+ &conditionStub{firing: false, operator: "or"},
|
|
|
|
|
+ },
|
|
|
|
|
+ })
|
|
|
|
|
+
|
|
|
|
|
+ handler.Eval(context)
|
|
|
|
|
+ So(context.Firing, ShouldEqual, true)
|
|
|
|
|
+ So(context.FiringEval, ShouldEqual, "[[true AND true] OR false] = true")
|
|
|
|
|
+ })
|
|
|
|
|
+
|
|
|
|
|
+ Convey("Show return false if one condition is passing with nested OR operator", func() {
|
|
|
|
|
+ context := NewEvalContext(context.TODO(), &Rule{
|
|
|
|
|
+ Conditions: []Condition{
|
|
|
|
|
+ &conditionStub{firing: true, operator: "and"},
|
|
|
|
|
+ &conditionStub{firing: false, operator: "and"},
|
|
|
|
|
+ &conditionStub{firing: false, operator: "or"},
|
|
|
|
|
+ },
|
|
|
|
|
+ })
|
|
|
|
|
+
|
|
|
|
|
+ handler.Eval(context)
|
|
|
|
|
+ So(context.Firing, ShouldEqual, false)
|
|
|
|
|
+ So(context.FiringEval, ShouldEqual, "[[true AND false] OR false] = false")
|
|
|
|
|
+ })
|
|
|
|
|
+
|
|
|
|
|
+ Convey("Show return false if a condition is failing with nested AND operator", func() {
|
|
|
|
|
+ context := NewEvalContext(context.TODO(), &Rule{
|
|
|
|
|
+ Conditions: []Condition{
|
|
|
|
|
+ &conditionStub{firing: true, operator: "and"},
|
|
|
|
|
+ &conditionStub{firing: false, operator: "and"},
|
|
|
|
|
+ &conditionStub{firing: true, operator: "and"},
|
|
|
|
|
+ },
|
|
|
|
|
+ })
|
|
|
|
|
+
|
|
|
|
|
+ handler.Eval(context)
|
|
|
|
|
+ So(context.Firing, ShouldEqual, false)
|
|
|
|
|
+ So(context.FiringEval, ShouldEqual, "[[true AND false] AND true] = false")
|
|
|
|
|
+ })
|
|
|
|
|
+
|
|
|
|
|
+ Convey("Show return true if a condition is passing with nested OR operator", func() {
|
|
|
|
|
+ context := NewEvalContext(context.TODO(), &Rule{
|
|
|
|
|
+ Conditions: []Condition{
|
|
|
|
|
+ &conditionStub{firing: true, operator: "and"},
|
|
|
|
|
+ &conditionStub{firing: false, operator: "or"},
|
|
|
|
|
+ &conditionStub{firing: true, operator: "or"},
|
|
|
|
|
+ },
|
|
|
|
|
+ })
|
|
|
|
|
+
|
|
|
|
|
+ handler.Eval(context)
|
|
|
|
|
+ So(context.Firing, ShouldEqual, true)
|
|
|
|
|
+ So(context.FiringEval, ShouldEqual, "[[true OR false] OR true] = true")
|
|
|
})
|
|
})
|
|
|
})
|
|
})
|
|
|
}
|
|
}
|