mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -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
58 lines
1.7 KiB
Go
58 lines
1.7 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 TestSensuGoNotifier(t *testing.T) {
|
|
json := `{ }`
|
|
|
|
settingsJSON, err := simplejson.NewJson([]byte(json))
|
|
require.NoError(t, err)
|
|
model := &models.AlertNotification{
|
|
Name: "Sensu Go",
|
|
Type: "sensugo",
|
|
Settings: settingsJSON,
|
|
}
|
|
|
|
_, err = NewSensuGoNotifier(model, ossencryption.ProvideService().GetDecryptedValue, nil)
|
|
require.Error(t, err)
|
|
|
|
json = `
|
|
{
|
|
"url": "http://sensu-api.example.com:8080",
|
|
"entity": "grafana_instance_01",
|
|
"check": "grafana_rule_0",
|
|
"namespace": "default",
|
|
"handler": "myhandler",
|
|
"apikey": "abcdef0123456789abcdef"
|
|
}`
|
|
|
|
settingsJSON, err = simplejson.NewJson([]byte(json))
|
|
require.NoError(t, err)
|
|
model = &models.AlertNotification{
|
|
Name: "Sensu Go",
|
|
Type: "sensugo",
|
|
Settings: settingsJSON,
|
|
}
|
|
|
|
not, err := NewSensuGoNotifier(model, ossencryption.ProvideService().GetDecryptedValue, nil)
|
|
require.NoError(t, err)
|
|
sensuGoNotifier := not.(*SensuGoNotifier)
|
|
|
|
assert.Equal(t, "Sensu Go", sensuGoNotifier.Name)
|
|
assert.Equal(t, "sensugo", sensuGoNotifier.Type)
|
|
assert.Equal(t, "http://sensu-api.example.com:8080", sensuGoNotifier.URL)
|
|
assert.Equal(t, "grafana_instance_01", sensuGoNotifier.Entity)
|
|
assert.Equal(t, "grafana_rule_0", sensuGoNotifier.Check)
|
|
assert.Equal(t, "default", sensuGoNotifier.Namespace)
|
|
assert.Equal(t, "myhandler", sensuGoNotifier.Handler)
|
|
assert.Equal(t, "abcdef0123456789abcdef", sensuGoNotifier.APIKey)
|
|
}
|