2017-01-11 06:57:07 -06:00
|
|
|
package notifiers
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/grafana/grafana/pkg/components/simplejson"
|
2019-05-14 01:15:05 -05:00
|
|
|
"github.com/grafana/grafana/pkg/models"
|
2021-10-07 09:33:50 -05:00
|
|
|
"github.com/grafana/grafana/pkg/services/encryption/ossencryption"
|
2021-10-21 10:04:43 -05:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/require"
|
2017-01-11 06:57:07 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestSensuNotifier(t *testing.T) {
|
2021-10-21 10:04:43 -05:00
|
|
|
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: "sensu",
|
|
|
|
Type: "sensu",
|
|
|
|
Settings: settingsJSON,
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err := NewSensuNotifier(model, ossencryption.ProvideService().GetDecryptedValue)
|
|
|
|
require.Error(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("from settings", func(t *testing.T) {
|
|
|
|
json := `
|
2017-01-11 06:57:07 -06:00
|
|
|
{
|
2017-05-24 06:42:24 -05:00
|
|
|
"url": "http://sensu-api.example.com:4567/results",
|
|
|
|
"source": "grafana_instance_01",
|
|
|
|
"handler": "myhandler"
|
2017-01-11 06:57:07 -06:00
|
|
|
}`
|
|
|
|
|
2021-10-21 10:04:43 -05:00
|
|
|
settingsJSON, _ := simplejson.NewJson([]byte(json))
|
|
|
|
model := &models.AlertNotification{
|
|
|
|
Name: "sensu",
|
|
|
|
Type: "sensu",
|
|
|
|
Settings: settingsJSON,
|
|
|
|
}
|
|
|
|
|
|
|
|
not, err := NewSensuNotifier(model, ossencryption.ProvideService().GetDecryptedValue)
|
|
|
|
sensuNotifier := not.(*SensuNotifier)
|
|
|
|
|
|
|
|
require.Nil(t, err)
|
|
|
|
require.Equal(t, "sensu", sensuNotifier.Name)
|
|
|
|
require.Equal(t, "sensu", sensuNotifier.Type)
|
|
|
|
require.Equal(t, "http://sensu-api.example.com:4567/results", sensuNotifier.URL)
|
|
|
|
require.Equal(t, "grafana_instance_01", sensuNotifier.Source)
|
|
|
|
require.Equal(t, "myhandler", sensuNotifier.Handler)
|
2017-01-11 06:57:07 -06:00
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|