Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
063f863a
Unverified
Commit
063f863a
authored
Nov 23, 2020
by
Arve Knudsen
Committed by
GitHub
Nov 23, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WebhookNotifier: Convert tests away from goconvey (#29291)
Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
parent
81859880
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
21 deletions
+17
-21
pkg/services/alerting/notifiers/webhook_test.go
+17
-21
No files found.
pkg/services/alerting/notifiers/webhook_test.go
View file @
063f863a
...
@@ -5,33 +5,31 @@ import (
...
@@ -5,33 +5,31 @@ import (
"github.com/grafana/grafana/pkg/components/simplejson"
"github.com/grafana/grafana/pkg/components/simplejson"
"github.com/grafana/grafana/pkg/models"
"github.com/grafana/grafana/pkg/models"
.
"github.com/smartystreets/goconvey/convey"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
)
func
TestWebhookNotifier
(
t
*
testing
.
T
)
{
func
TestWebhookNotifier_parsingFromSettings
(
t
*
testing
.
T
)
{
Convey
(
"Webhook notifier tests"
,
t
,
func
()
{
t
.
Run
(
"Empty settings should cause error"
,
func
(
t
*
testing
.
T
)
{
Convey
(
"Parsing alert notification from settings"
,
func
()
{
const
json
=
`{}`
Convey
(
"empty settings should return error"
,
func
()
{
json
:=
`{ }`
settingsJSON
,
_
:=
simplejson
.
NewJson
([]
byte
(
json
))
settingsJSON
,
err
:=
simplejson
.
NewJson
([]
byte
(
json
))
require
.
NoError
(
t
,
err
)
model
:=
&
models
.
AlertNotification
{
model
:=
&
models
.
AlertNotification
{
Name
:
"ops"
,
Name
:
"ops"
,
Type
:
"webhook"
,
Type
:
"webhook"
,
Settings
:
settingsJSON
,
Settings
:
settingsJSON
,
}
}
_
,
err
:
=
NewWebHookNotifier
(
model
)
_
,
err
=
NewWebHookNotifier
(
model
)
So
(
err
,
ShouldNotBeNil
)
require
.
Error
(
t
,
err
)
})
})
Convey
(
"from settings"
,
func
()
{
t
.
Run
(
"Valid settings should result in a valid notifier"
,
func
(
t
*
testing
.
T
)
{
json
:=
`
const
json
=
`{"url": "http://google.com"}`
{
"url": "http://google.com"
}`
settingsJSON
,
_
:=
simplejson
.
NewJson
([]
byte
(
json
))
settingsJSON
,
err
:=
simplejson
.
NewJson
([]
byte
(
json
))
require
.
NoError
(
t
,
err
)
model
:=
&
models
.
AlertNotification
{
model
:=
&
models
.
AlertNotification
{
Name
:
"ops"
,
Name
:
"ops"
,
Type
:
"webhook"
,
Type
:
"webhook"
,
...
@@ -39,13 +37,11 @@ func TestWebhookNotifier(t *testing.T) {
...
@@ -39,13 +37,11 @@ func TestWebhookNotifier(t *testing.T) {
}
}
not
,
err
:=
NewWebHookNotifier
(
model
)
not
,
err
:=
NewWebHookNotifier
(
model
)
require
.
NoError
(
t
,
err
)
webhookNotifier
:=
not
.
(
*
WebhookNotifier
)
webhookNotifier
:=
not
.
(
*
WebhookNotifier
)
So
(
err
,
ShouldBeNil
)
assert
.
Equal
(
t
,
"ops"
,
webhookNotifier
.
Name
)
So
(
webhookNotifier
.
Name
,
ShouldEqual
,
"ops"
)
assert
.
Equal
(
t
,
"webhook"
,
webhookNotifier
.
Type
)
So
(
webhookNotifier
.
Type
,
ShouldEqual
,
"webhook"
)
assert
.
Equal
(
t
,
"http://google.com"
,
webhookNotifier
.
URL
)
So
(
webhookNotifier
.
URL
,
ShouldEqual
,
"http://google.com"
)
})
})
})
})
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment