| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- package notifiers
- import (
- "testing"
- "github.com/grafana/grafana/pkg/components/simplejson"
- "github.com/grafana/grafana/pkg/models"
- . "github.com/smartystreets/goconvey/convey"
- )
- //nolint:goconst
- func TestHipChatNotifier(t *testing.T) {
- Convey("HipChat 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 := &models.AlertNotification{
- Name: "ops",
- Type: "hipchat",
- Settings: settingsJSON,
- }
- _, err := NewHipChatNotifier(model)
- So(err, ShouldNotBeNil)
- })
- Convey("from settings", func() {
- json := `
- {
- "url": "http://google.com"
- }`
- settingsJSON, _ := simplejson.NewJson([]byte(json))
- model := &models.AlertNotification{
- Name: "ops",
- Type: "hipchat",
- Settings: settingsJSON,
- }
- not, err := NewHipChatNotifier(model)
- hipchatNotifier := not.(*HipChatNotifier)
- So(err, ShouldBeNil)
- So(hipchatNotifier.Name, ShouldEqual, "ops")
- So(hipchatNotifier.Type, ShouldEqual, "hipchat")
- So(hipchatNotifier.URL, ShouldEqual, "http://google.com")
- So(hipchatNotifier.APIKey, ShouldEqual, "")
- So(hipchatNotifier.RoomID, ShouldEqual, "")
- })
- Convey("from settings with Recipient and Mention", func() {
- json := `
- {
- "url": "http://www.hipchat.com",
- "apikey": "1234",
- "roomid": "1234"
- }`
- settingsJSON, _ := simplejson.NewJson([]byte(json))
- model := &models.AlertNotification{
- Name: "ops",
- Type: "hipchat",
- Settings: settingsJSON,
- }
- not, err := NewHipChatNotifier(model)
- hipchatNotifier := not.(*HipChatNotifier)
- So(err, ShouldBeNil)
- So(hipchatNotifier.Name, ShouldEqual, "ops")
- So(hipchatNotifier.Type, ShouldEqual, "hipchat")
- So(hipchatNotifier.URL, ShouldEqual, "http://www.hipchat.com")
- So(hipchatNotifier.APIKey, ShouldEqual, "1234")
- So(hipchatNotifier.RoomID, ShouldEqual, "1234")
- })
- })
- })
- }
|