mirror of
https://github.com/grafana/grafana.git
synced 2024-11-30 04:34:23 -06:00
6768c6c059
Removes the public variable setting.SecretKey plus some other ones. Introduces some new functions for creating setting.Cfg.
54 lines
1.4 KiB
Go
54 lines
1.4 KiB
Go
package notifiers
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/grafana/grafana/pkg/components/simplejson"
|
|
"github.com/grafana/grafana/pkg/services/alerting/models"
|
|
encryptionservice "github.com/grafana/grafana/pkg/services/encryption/service"
|
|
)
|
|
|
|
func TestGoogleChatNotifier(t *testing.T) {
|
|
encryptionService := encryptionservice.SetupTestService(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: "googlechat",
|
|
Settings: settingsJSON,
|
|
}
|
|
|
|
_, err := newGoogleChatNotifier(nil, model, encryptionService.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: "googlechat",
|
|
Settings: settingsJSON,
|
|
}
|
|
|
|
not, err := newGoogleChatNotifier(nil, model, encryptionService.GetDecryptedValue, nil)
|
|
webhookNotifier := not.(*GoogleChatNotifier)
|
|
|
|
require.Nil(t, err)
|
|
require.Equal(t, "ops", webhookNotifier.Name)
|
|
require.Equal(t, "googlechat", webhookNotifier.Type)
|
|
require.Equal(t, "http://google.com", webhookNotifier.URL)
|
|
})
|
|
})
|
|
}
|