2020-03-25 18:46:50 +00:00
|
|
|
package notifiers
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/statping/statping/database"
|
|
|
|
"github.com/statping/statping/types/notifications"
|
|
|
|
"github.com/statping/statping/types/null"
|
2020-04-16 09:57:00 +00:00
|
|
|
"github.com/statping/statping/utils"
|
2020-03-25 18:46:50 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2020-04-16 09:57:00 +00:00
|
|
|
DISCORD_URL = utils.Params.GetString("DISCORD_URL")
|
2020-03-25 18:46:50 +00:00
|
|
|
discordMessage = `{"content": "The discord notifier on Statping has been tested!"}`
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
DISCORD_URL = os.Getenv("DISCORD_URL")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDiscordNotifier(t *testing.T) {
|
2020-06-04 22:59:31 +00:00
|
|
|
err := utils.InitLogs()
|
|
|
|
require.Nil(t, err)
|
2020-03-25 18:46:50 +00:00
|
|
|
db, err := database.OpenTester()
|
|
|
|
require.Nil(t, err)
|
|
|
|
db.AutoMigrate(¬ifications.Notification{})
|
|
|
|
notifications.SetDB(db)
|
|
|
|
|
|
|
|
if DISCORD_URL == "" {
|
|
|
|
t.Log("discord notifier testing skipped, missing DISCORD_URL environment variable")
|
|
|
|
t.SkipNow()
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Run("Load discord", func(t *testing.T) {
|
|
|
|
Discorder.Host = DISCORD_URL
|
|
|
|
Discorder.Delay = time.Duration(100 * time.Millisecond)
|
|
|
|
Discorder.Enabled = null.NewNullBool(true)
|
|
|
|
|
|
|
|
Add(Discorder)
|
|
|
|
|
|
|
|
assert.Equal(t, "Hunter Long", Discorder.Author)
|
|
|
|
assert.Equal(t, DISCORD_URL, Discorder.Host)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("discord Notifier Tester", func(t *testing.T) {
|
|
|
|
assert.True(t, Discorder.CanSend())
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("discord OnFailure", func(t *testing.T) {
|
|
|
|
err := Discorder.OnFailure(exampleService, exampleFailure)
|
|
|
|
assert.Nil(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("discord OnSuccess", func(t *testing.T) {
|
|
|
|
err := Discorder.OnSuccess(exampleService)
|
|
|
|
assert.Nil(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("discord Test", func(t *testing.T) {
|
2020-04-13 11:30:16 +00:00
|
|
|
_, err := Discorder.OnTest()
|
2020-03-25 18:46:50 +00:00
|
|
|
assert.Nil(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|