mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
43b15b92ad
* propagate notificationservice down to the notifiers * replace dispatch in result handler * remove dispatch from the rule reader * remove dispatch from eval context * remove dispatch from alerting usage * remove dispatch from alerting usage * remove dispatch from notifier * attempt to fix tests in alerting * hello linter, my old friend; also disable some tests for now * use mocks to fix the tests * resolving wire providers * make linter happy * remove yet another bus.dispatch * fix tests using store mock
80 lines
2.2 KiB
Go
80 lines
2.2 KiB
Go
package notifiers
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/grafana/grafana/pkg/components/simplejson"
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"github.com/grafana/grafana/pkg/services/encryption/ossencryption"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
//nolint:goconst
|
|
func TestHipChatNotifier(t *testing.T) {
|
|
t.Run("Parsing alert notification from settings", func(t *testing.T) {
|
|
t.Run("empty settings should return error", func(t *testing.T) {
|
|
json := `{ }`
|
|
|
|
settingsJSON, _ := simplejson.NewJson([]byte(json))
|
|
model := &models.AlertNotification{
|
|
Name: "ops",
|
|
Type: "hipchat",
|
|
Settings: settingsJSON,
|
|
}
|
|
|
|
_, err := NewHipChatNotifier(model, ossencryption.ProvideService().GetDecryptedValue, nil)
|
|
require.Error(t, err)
|
|
})
|
|
|
|
t.Run("from settings", func(t *testing.T) {
|
|
json := `
|
|
{
|
|
"url": "http://google.com"
|
|
}`
|
|
settingsJSON, _ := simplejson.NewJson([]byte(json))
|
|
model := &models.AlertNotification{
|
|
Name: "ops",
|
|
Type: "hipchat",
|
|
Settings: settingsJSON,
|
|
}
|
|
|
|
not, err := NewHipChatNotifier(model, ossencryption.ProvideService().GetDecryptedValue, nil)
|
|
hipchatNotifier := not.(*HipChatNotifier)
|
|
|
|
require.Nil(t, err)
|
|
require.Equal(t, "ops", hipchatNotifier.Name)
|
|
require.Equal(t, "hipchat", hipchatNotifier.Type)
|
|
require.Equal(t, "http://google.com", hipchatNotifier.URL)
|
|
require.Equal(t, "", hipchatNotifier.APIKey)
|
|
require.Equal(t, "", hipchatNotifier.RoomID)
|
|
})
|
|
|
|
t.Run("from settings with Recipient and Mention", func(t *testing.T) {
|
|
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, ossencryption.ProvideService().GetDecryptedValue, nil)
|
|
hipchatNotifier := not.(*HipChatNotifier)
|
|
|
|
require.Nil(t, err)
|
|
require.Equal(t, "ops", hipchatNotifier.Name)
|
|
require.Equal(t, "hipchat", hipchatNotifier.Type)
|
|
require.Equal(t, "http://www.hipchat.com", hipchatNotifier.URL)
|
|
require.Equal(t, "1234", hipchatNotifier.APIKey)
|
|
require.Equal(t, "1234", hipchatNotifier.RoomID)
|
|
})
|
|
})
|
|
}
|