mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
79 lines
2.1 KiB
Go
79 lines
2.1 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"
|
|
)
|
|
|
|
func TestEmailNotifier(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: "email",
|
|
Settings: settingsJSON,
|
|
}
|
|
|
|
_, err := NewEmailNotifier(model, ossencryption.ProvideService().GetDecryptedValue)
|
|
require.Error(t, err)
|
|
})
|
|
|
|
t.Run("from settings", func(t *testing.T) {
|
|
json := `
|
|
{
|
|
"addresses": "ops@grafana.org"
|
|
}`
|
|
|
|
settingsJSON, _ := simplejson.NewJson([]byte(json))
|
|
model := &models.AlertNotification{
|
|
Name: "ops",
|
|
Type: "email",
|
|
Settings: settingsJSON,
|
|
}
|
|
|
|
not, err := NewEmailNotifier(model, ossencryption.ProvideService().GetDecryptedValue)
|
|
emailNotifier := not.(*EmailNotifier)
|
|
|
|
require.Nil(t, err)
|
|
require.Equal(t, "ops", emailNotifier.Name)
|
|
require.Equal(t, "email", emailNotifier.Type)
|
|
require.Equal(t, "ops@grafana.org", emailNotifier.Addresses[0])
|
|
})
|
|
|
|
t.Run("from settings with two emails", func(t *testing.T) {
|
|
json := `
|
|
{
|
|
"addresses": "ops@grafana.org;dev@grafana.org"
|
|
}`
|
|
|
|
settingsJSON, err := simplejson.NewJson([]byte(json))
|
|
require.Nil(t, err)
|
|
|
|
model := &models.AlertNotification{
|
|
Name: "ops",
|
|
Type: "email",
|
|
Settings: settingsJSON,
|
|
}
|
|
|
|
not, err := NewEmailNotifier(model, ossencryption.ProvideService().GetDecryptedValue)
|
|
emailNotifier := not.(*EmailNotifier)
|
|
|
|
require.Nil(t, err)
|
|
require.Equal(t, "ops", emailNotifier.Name)
|
|
require.Equal(t, "email", emailNotifier.Type)
|
|
require.Equal(t, 2, len(emailNotifier.Addresses))
|
|
|
|
require.Equal(t, "ops@grafana.org", emailNotifier.Addresses[0])
|
|
require.Equal(t, "dev@grafana.org", emailNotifier.Addresses[1])
|
|
})
|
|
})
|
|
}
|