forked from nikoksr/notify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
notify_test.go
118 lines (98 loc) · 2.59 KB
/
notify_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
package notify
import (
"context"
"testing"
"github.com/google/go-cmp/cmp"
"github.com/nikoksr/notify/service/mail"
)
func TestNew(t *testing.T) {
t.Parallel()
n1 := New()
if n1 == nil {
t.Fatal("New() returned nil")
}
if n1.Disabled {
t.Fatal("New() returned disabled Notifier")
}
n2 := NewWithOptions()
if n2 == nil {
t.Fatal("NewWithOptions() returned nil")
}
diff := cmp.Diff(n1, n2, cmp.AllowUnexported(Notify{}))
if diff != "" {
t.Errorf("New() and NewWithOptions() returned different Notifiers:\n%s", diff)
}
n3 := NewWithOptions(Disable)
if !n3.Disabled {
t.Error("NewWithOptions(Disable) did not disable Notifier")
}
n3.WithOptions(Enable)
if n3.Disabled {
t.Error("WithOptions(Enable) did not enable Notifier")
}
n3Copy := *n3
n3.WithOptions()
diff = cmp.Diff(n3, &n3Copy, cmp.AllowUnexported(Notify{}))
if diff != "" {
t.Errorf("WithOptions() altered the Notifier:\n%s", diff)
}
n3.WithOptions(nil)
if r := recover(); r != nil {
t.Errorf("WithOptions(nil) panicked: %v", r)
}
}
func TestDefault(t *testing.T) {
t.Parallel()
n := Default()
if n == nil {
t.Fatal("Default() returned nil")
}
if n.Disabled {
t.Fatal("Default() returned disabled Notifier")
}
// Compare addresses on purpose.
if n != std {
t.Error("Default() did not return the default Notifier")
}
}
func TestNewWithServices(t *testing.T) {
t.Parallel()
n1 := NewWithServices()
if n1 == nil {
t.Fatal("NewWithServices() returned nil")
}
n2 := NewWithServices(nil)
if n2 == nil {
t.Fatal("NewWithServices(nil) returned nil")
}
if len(n2.notifiers) != 0 {
t.Error("NewWithServices(nil) did not return empty Notifier")
}
mailService := mail.New("", "")
n3 := NewWithServices(mailService)
if n3 == nil {
t.Fatal("NewWithServices(mail.New()) returned nil")
}
if len(n3.notifiers) != 1 {
t.Errorf("NewWithServices(mail.New()) was expected to have 1 notifier but had %d", len(n3.notifiers))
} else {
diff := cmp.Diff(n3.notifiers[0], mailService, cmp.AllowUnexported(mail.Mail{}))
if diff != "" {
t.Errorf("NewWithServices(mail.New()) did not correctly use service:\n%s", diff)
}
}
}
func TestGlobal(t *testing.T) {
t.Parallel()
ctx := context.Background()
if err := Send(ctx, "subject", "message"); err != nil {
t.Errorf("Send() with no receivers returned error: %v", err)
}
UseServices(mail.New("", ""), nil)
if len(std.notifiers) != 1 {
t.Errorf("UseServices(mail.New()) was expected to have 1 notifier but had %d", len(std.notifiers))
}
if err := Send(ctx, "subject", "message"); err == nil {
t.Error("Send() with invalid mail returned no error")
}
}