| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- package notifiers
- import (
- "testing"
- "github.com/grafana/grafana/pkg/components/simplejson"
- m "github.com/grafana/grafana/pkg/models"
- . "github.com/smartystreets/goconvey/convey"
- )
- func TestAlertmanagerNotifier(t *testing.T) {
- Convey("Alertmanager 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: "alertmanager",
- Type: "alertmanager",
- Settings: settingsJSON,
- }
- _, err := NewAlertmanagerNotifier(model)
- So(err, ShouldNotBeNil)
- })
- Convey("from settings", func() {
- json := `{ "url": "http://127.0.0.1:9093/" }`
- settingsJSON, _ := simplejson.NewJson([]byte(json))
- model := &m.AlertNotification{
- Name: "alertmanager",
- Type: "alertmanager",
- Settings: settingsJSON,
- }
- not, err := NewAlertmanagerNotifier(model)
- alertmanagerNotifier := not.(*AlertmanagerNotifier)
- So(err, ShouldBeNil)
- So(alertmanagerNotifier.Url, ShouldEqual, "http://127.0.0.1:9093/")
- })
- })
- })
- }
|