mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
48 lines
1.2 KiB
Go
48 lines
1.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"
|
|
)
|
|
|
|
func TestLineNotifier(t *testing.T) {
|
|
t.Run("empty settings should return error", func(t *testing.T) {
|
|
json := `{ }`
|
|
|
|
settingsJSON, _ := simplejson.NewJson([]byte(json))
|
|
model := &models.AlertNotification{
|
|
Name: "line_testing",
|
|
Type: "line",
|
|
Settings: settingsJSON,
|
|
}
|
|
|
|
_, err := NewLINENotifier(model, ossencryption.ProvideService().GetDecryptedValue)
|
|
require.Error(t, err)
|
|
})
|
|
t.Run("settings should trigger incident", func(t *testing.T) {
|
|
json := `
|
|
{
|
|
"token": "abcdefgh0123456789"
|
|
}`
|
|
settingsJSON, _ := simplejson.NewJson([]byte(json))
|
|
model := &models.AlertNotification{
|
|
Name: "line_testing",
|
|
Type: "line",
|
|
Settings: settingsJSON,
|
|
}
|
|
|
|
not, err := NewLINENotifier(model, ossencryption.ProvideService().GetDecryptedValue)
|
|
lineNotifier := not.(*LineNotifier)
|
|
|
|
require.Nil(t, err)
|
|
require.Equal(t, "line_testing", lineNotifier.Name)
|
|
require.Equal(t, "line", lineNotifier.Type)
|
|
require.Equal(t, "abcdefgh0123456789", lineNotifier.Token)
|
|
})
|
|
}
|