forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.2 KiB
47 lines
1.2 KiB
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)
|
|
})
|
|
}
|
|
|