mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
07582a8e85
* Chore: Fix various spelling errors in back-end code Co-authored-by: Sofia Papagiannaki <papagian@users.noreply.github.com> Co-authored-by: Josh Soref <jsoref@users.noreply.github.com>>
65 lines
1.6 KiB
Go
65 lines
1.6 KiB
Go
package models
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/grafana/grafana/pkg/components/simplejson"
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
)
|
|
|
|
func TestAlertingModelTest(t *testing.T) {
|
|
Convey("Testing Alerting model", t, func() {
|
|
json1, err := simplejson.NewJson([]byte(`{ "field": "value" }`))
|
|
So(err, ShouldBeNil)
|
|
json2, err := simplejson.NewJson([]byte(`{ "field": "value" }`))
|
|
So(err, ShouldBeNil)
|
|
|
|
rule1 := &Alert{
|
|
Settings: json1,
|
|
Name: "Namn",
|
|
Message: "Message",
|
|
}
|
|
|
|
rule2 := &Alert{
|
|
Settings: json2,
|
|
Name: "Namn",
|
|
Message: "Message",
|
|
}
|
|
|
|
Convey("Testing AlertRule equals", func() {
|
|
So(rule1.ContainsUpdates(rule2), ShouldBeFalse)
|
|
})
|
|
|
|
Convey("Changing the expression should contain update", func() {
|
|
json2, err := simplejson.NewJson([]byte(`{ "field": "newValue" }`))
|
|
So(err, ShouldBeNil)
|
|
rule1.Settings = json2
|
|
So(rule1.ContainsUpdates(rule2), ShouldBeTrue)
|
|
})
|
|
|
|
Convey("Should parse alertRule tags correctly", func() {
|
|
json2, err := simplejson.NewJson([]byte(`{
|
|
"field": "value",
|
|
"alertRuleTags": {
|
|
"foo": "bar",
|
|
"waldo": "fred",
|
|
"tagMap": { "mapValue": "value" }
|
|
}
|
|
}`))
|
|
So(err, ShouldBeNil)
|
|
rule1.Settings = json2
|
|
expectedTags := []*Tag{
|
|
{Id: 0, Key: "foo", Value: "bar"},
|
|
{Id: 0, Key: "waldo", Value: "fred"},
|
|
{Id: 0, Key: "tagMap", Value: ""},
|
|
}
|
|
actualTags := rule1.GetTagsFromSettings()
|
|
|
|
So(len(actualTags), ShouldEqual, len(expectedTags))
|
|
for _, tag := range expectedTags {
|
|
So(ContainsTag(actualTags, tag), ShouldBeTrue)
|
|
}
|
|
})
|
|
})
|
|
}
|