mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 03:11:01 -06:00
43b15b92ad
* 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
54 lines
1.5 KiB
Go
54 lines
1.5 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 TestKafkaNotifier(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: "kafka_testing",
|
|
Type: "kafka",
|
|
Settings: settingsJSON,
|
|
}
|
|
|
|
_, err := NewKafkaNotifier(model, ossencryption.ProvideService().GetDecryptedValue, nil)
|
|
require.Error(t, err)
|
|
})
|
|
|
|
t.Run("settings should send an event to kafka", func(t *testing.T) {
|
|
json := `
|
|
{
|
|
"kafkaRestProxy": "http://localhost:8082",
|
|
"kafkaTopic": "topic1"
|
|
}`
|
|
|
|
settingsJSON, _ := simplejson.NewJson([]byte(json))
|
|
model := &models.AlertNotification{
|
|
Name: "kafka_testing",
|
|
Type: "kafka",
|
|
Settings: settingsJSON,
|
|
}
|
|
|
|
not, err := NewKafkaNotifier(model, ossencryption.ProvideService().GetDecryptedValue, nil)
|
|
kafkaNotifier := not.(*KafkaNotifier)
|
|
|
|
require.Nil(t, err)
|
|
require.Equal(t, "kafka_testing", kafkaNotifier.Name)
|
|
require.Equal(t, "kafka", kafkaNotifier.Type)
|
|
require.Equal(t, "http://localhost:8082", kafkaNotifier.Endpoint)
|
|
require.Equal(t, "topic1", kafkaNotifier.Topic)
|
|
})
|
|
})
|
|
}
|