// Statping // Copyright (C) 2018. Hunter Long and the project contributors // Written by Hunter Long and the project contributors // // https://github.com/hunterlong/statping // // The licenses for most software and other practical works are designed // to take away your freedom to share and change the works. By contrast, // the GNU General Public License is intended to guarantee your freedom to // share and change all versions of a program--to make sure it remains free // software for all its users. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . package notifiers import ( "github.com/hunterlong/statping/core/notifier" "github.com/stretchr/testify/assert" "os" "testing" "time" ) var ( SLACK_URL string slackTestMessage = `{"text":"this is a test from the slack notifier!"}` ) func init() { SLACK_URL = os.Getenv("SLACK_URL") Slacker.Host = SLACK_URL } func TestSlackNotifier(t *testing.T) { t.Parallel() SLACK_URL = os.Getenv("SLACK_URL") Slacker.Host = SLACK_URL if SLACK_URL == "" { t.Log("slack notifier testing skipped, missing SLACK_URL environment variable") t.SkipNow() } currentCount = CountNotifiers() t.Run("Load slack", func(t *testing.T) { Slacker.Host = SLACK_URL Slacker.Delay = time.Duration(100 * time.Millisecond) Slacker.Limits = 3 err := notifier.AddNotifiers(Slacker) assert.Nil(t, err) assert.Equal(t, "Hunter Long", Slacker.Author) assert.Equal(t, SLACK_URL, Slacker.Host) }) t.Run("slack Notifier Tester", func(t *testing.T) { assert.True(t, Slacker.CanTest()) }) //t.Run("slack parse message", func(t *testing.T) { // err := parseSlackMessage(slackText, "this is a test!") // assert.Nil(t, err) // assert.Equal(t, 1, len(Slacker.Queue)) //}) t.Run("slack Within Limits", func(t *testing.T) { ok, err := Slacker.WithinLimits() assert.Nil(t, err) assert.True(t, ok) }) t.Run("slack OnFailure", func(t *testing.T) { Slacker.OnFailure(TestService, TestFailure) assert.Equal(t, 1, len(Slacker.Queue)) }) t.Run("slack OnSuccess", func(t *testing.T) { Slacker.OnSuccess(TestService) assert.Equal(t, 1, len(Slacker.Queue)) }) t.Run("slack OnSuccess Again", func(t *testing.T) { assert.True(t, TestService.Online) Slacker.OnSuccess(TestService) assert.Equal(t, 1, len(Slacker.Queue)) go notifier.Queue(Slacker) time.Sleep(15 * time.Second) assert.Equal(t, 0, len(Slacker.Queue)) }) t.Run("slack Within Limits again", func(t *testing.T) { ok, err := Slacker.WithinLimits() assert.Nil(t, err) assert.True(t, ok) }) t.Run("slack Send", func(t *testing.T) { err := Slacker.Send(slackTestMessage) assert.Nil(t, err) assert.Equal(t, 0, len(Slacker.Queue)) }) t.Run("slack Test", func(t *testing.T) { err := Slacker.OnTest() assert.Nil(t, err) }) t.Run("slack Queue", func(t *testing.T) { go notifier.Queue(Slacker) time.Sleep(10 * time.Second) assert.Equal(t, SLACK_URL, Slacker.Host) assert.Equal(t, 0, len(Slacker.Queue)) }) }