1
0
mirror of https://github.com/nikoksr/notify.git synced 2024-11-24 08:22:18 +02:00
notify/use_test.go
Niko Köser 1f8d183210
test(notify): add tests for Notify's core functions
This only adds tests for Notify itself, not for the list of supported
services.
2022-04-22 20:33:52 +02:00

40 lines
698 B
Go

package notify
import (
"testing"
"github.com/nikoksr/notify/service/mail"
)
func TestUseServices(t *testing.T) {
t.Parallel()
n := New()
if n == nil {
t.Fatal("New() returned nil")
}
if len(n.notifiers) != 0 {
t.Fatalf("Expected len(n.notifiers) == 0, got %d", len(n.notifiers))
}
n.UseServices(mail.New("", ""))
if len(n.notifiers) != 1 {
t.Errorf("Expected len(n.notifiers) == 1, got %d", len(n.notifiers))
}
n.UseServices(
mail.New("", ""),
mail.New("", ""),
)
if len(n.notifiers) != 3 {
t.Errorf("Expected len(n.notifiers) == 3, got %d", len(n.notifiers))
}
n.UseServices(nil)
if r := recover(); r != nil {
t.Errorf("Expected no panic, got %v", r)
}
}