| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- package notifiers
- import (
- "testing"
- "github.com/grafana/grafana/pkg/components/simplejson"
- m "github.com/grafana/grafana/pkg/models"
- . "github.com/smartystreets/goconvey/convey"
- )
- func TestEmailNotifier(t *testing.T) {
- Convey("Email notifier tests", t, func() {
- Convey("Parsing alert notification from settings", func() {
- Convey("empty settings should return error", func() {
- json := `{ }`
- settingsJSON, _ := simplejson.NewJson([]byte(json))
- model := &m.AlertNotification{
- Name: "ops",
- Type: "email",
- Settings: settingsJSON,
- }
- _, err := NewEmailNotifier(model)
- So(err, ShouldNotBeNil)
- })
- Convey("from settings", func() {
- json := `
- {
- "addresses": "ops@grafana.org"
- }`
- settingsJSON, _ := simplejson.NewJson([]byte(json))
- model := &m.AlertNotification{
- Name: "ops",
- Type: "email",
- Settings: settingsJSON,
- }
- not, err := NewEmailNotifier(model)
- emailNotifier := not.(*EmailNotifier)
- So(err, ShouldBeNil)
- So(emailNotifier.Name, ShouldEqual, "ops")
- So(emailNotifier.Type, ShouldEqual, "email")
- So(emailNotifier.Addresses[0], ShouldEqual, "ops@grafana.org")
- })
- Convey("from settings with two emails", func() {
- json := `
- {
- "addresses": "ops@grafana.org;dev@grafana.org"
- }`
- settingsJSON, err := simplejson.NewJson([]byte(json))
- So(err, ShouldBeNil)
- model := &m.AlertNotification{
- Name: "ops",
- Type: "email",
- Settings: settingsJSON,
- }
- not, err := NewEmailNotifier(model)
- emailNotifier := not.(*EmailNotifier)
- So(err, ShouldBeNil)
- So(emailNotifier.Name, ShouldEqual, "ops")
- So(emailNotifier.Type, ShouldEqual, "email")
- So(len(emailNotifier.Addresses), ShouldEqual, 2)
- So(emailNotifier.Addresses[0], ShouldEqual, "ops@grafana.org")
- So(emailNotifier.Addresses[1], ShouldEqual, "dev@grafana.org")
- })
- })
- })
- }
|