mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 11:20:27 -06:00
41d432b5ae
Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
54 lines
1.3 KiB
Go
54 lines
1.3 KiB
Go
package notifiers
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/grafana/grafana/pkg/components/simplejson"
|
|
"github.com/grafana/grafana/pkg/models"
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
)
|
|
|
|
func TestKafkaNotifier(t *testing.T) {
|
|
Convey("Kafka notifier tests", t, func() {
|
|
Convey("Parsing alert notification from settings", func() {
|
|
Convey("empty settings should return error", func() {
|
|
json := `{ }`
|
|
|
|
settingsJSON, _ := simplejson.NewJson([]byte(json))
|
|
model := &models.AlertNotification{
|
|
Name: "kafka_testing",
|
|
Type: "kafka",
|
|
Settings: settingsJSON,
|
|
}
|
|
|
|
_, err := NewKafkaNotifier(model)
|
|
So(err, ShouldNotBeNil)
|
|
})
|
|
|
|
Convey("settings should send an event to kafka", func() {
|
|
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)
|
|
kafkaNotifier := not.(*KafkaNotifier)
|
|
|
|
So(err, ShouldBeNil)
|
|
So(kafkaNotifier.Name, ShouldEqual, "kafka_testing")
|
|
So(kafkaNotifier.Type, ShouldEqual, "kafka")
|
|
So(kafkaNotifier.Endpoint, ShouldEqual, "http://localhost:8082")
|
|
So(kafkaNotifier.Topic, ShouldEqual, "topic1")
|
|
})
|
|
})
|
|
})
|
|
}
|