mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
* propagate notificationservice down to the notifiers * replace dispatch in result handler * remove dispatch from the rule reader * remove dispatch from eval context * remove dispatch from alerting usage * remove dispatch from alerting usage * remove dispatch from notifier * attempt to fix tests in alerting * hello linter, my old friend; also disable some tests for now * use mocks to fix the tests * resolving wire providers * make linter happy * remove yet another bus.dispatch * fix tests using store mock
49 lines
1.4 KiB
Go
49 lines
1.4 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/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestWebhookNotifier_parsingFromSettings(t *testing.T) {
|
|
t.Run("Empty settings should cause error", func(t *testing.T) {
|
|
const json = `{}`
|
|
|
|
settingsJSON, err := simplejson.NewJson([]byte(json))
|
|
require.NoError(t, err)
|
|
model := &models.AlertNotification{
|
|
Name: "ops",
|
|
Type: "webhook",
|
|
Settings: settingsJSON,
|
|
}
|
|
|
|
_, err = NewWebHookNotifier(model, ossencryption.ProvideService().GetDecryptedValue, nil)
|
|
require.Error(t, err)
|
|
})
|
|
|
|
t.Run("Valid settings should result in a valid notifier", func(t *testing.T) {
|
|
const json = `{"url": "http://google.com"}`
|
|
|
|
settingsJSON, err := simplejson.NewJson([]byte(json))
|
|
require.NoError(t, err)
|
|
model := &models.AlertNotification{
|
|
Name: "ops",
|
|
Type: "webhook",
|
|
Settings: settingsJSON,
|
|
}
|
|
|
|
not, err := NewWebHookNotifier(model, ossencryption.ProvideService().GetDecryptedValue, nil)
|
|
require.NoError(t, err)
|
|
webhookNotifier := not.(*WebhookNotifier)
|
|
|
|
assert.Equal(t, "ops", webhookNotifier.Name)
|
|
assert.Equal(t, "webhook", webhookNotifier.Type)
|
|
assert.Equal(t, "http://google.com", webhookNotifier.URL)
|
|
})
|
|
}
|