forked from digitalocean/captainslog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpriority_test.go
More file actions
248 lines (207 loc) · 5.92 KB
/
priority_test.go
File metadata and controls
248 lines (207 loc) · 5.92 KB
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
package captainslog_test
import (
"testing"
"github.com/digitalocean/captainslog"
)
func TestNewPriority(t *testing.T) {
_, err := captainslog.NewPriority(captainslog.Local0, captainslog.Err)
if err != nil {
t.Error(err)
}
}
func TestNewPriorityBadFacility(t *testing.T) {
_, err := captainslog.NewPriority(captainslog.Facility(30), captainslog.Err)
if want, got := captainslog.ErrBadFacility, err; want != got {
t.Errorf("want '%v', got '%v'", want, got)
}
}
func TestNewPriorityBadSeverity(t *testing.T) {
_, err := captainslog.NewPriority(captainslog.Local0, captainslog.Severity(50))
if want, got := captainslog.ErrBadSeverity, err; want != got {
t.Errorf("want '%v', got '%v'", want, got)
}
}
func TestFacilityToString(t *testing.T) {
f := captainslog.Kern
if want, got := "kern", f.String(); want != got {
t.Errorf("want %q, got %q", want, got)
}
f = captainslog.User
if want, got := "user", f.String(); want != got {
t.Errorf("want %q, got %q", want, got)
}
f = captainslog.Mail
if want, got := "mail", f.String(); want != got {
t.Errorf("want %q, got %q", want, got)
}
f = captainslog.Daemon
if want, got := "daemon", f.String(); want != got {
t.Errorf("want %q, got %q", want, got)
}
f = captainslog.Auth
if want, got := "auth", f.String(); want != got {
t.Errorf("want %q, got %q", want, got)
}
f = captainslog.Syslog
if want, got := "syslog", f.String(); want != got {
t.Errorf("want %q, got %q", want, got)
}
f = captainslog.LPR
if want, got := "lpr", f.String(); want != got {
t.Errorf("want %q, got %q", want, got)
}
f = captainslog.News
if want, got := "news", f.String(); want != got {
t.Errorf("want %q, got %q", want, got)
}
f = captainslog.UUCP
if want, got := "uucp", f.String(); want != got {
t.Errorf("want %q, got %q", want, got)
}
f = captainslog.Cron
if want, got := "cron", f.String(); want != got {
t.Errorf("want %q, got %q", want, got)
}
f = captainslog.AuthPriv
if want, got := "authpriv", f.String(); want != got {
t.Errorf("want %q, got %q", want, got)
}
f = captainslog.FTP
if want, got := "ftp", f.String(); want != got {
t.Errorf("want %q, got %q", want, got)
}
f = captainslog.Local0
if want, got := "local0", f.String(); want != got {
t.Errorf("want %q, got %q", want, got)
}
f = captainslog.Local1
if want, got := "local1", f.String(); want != got {
t.Errorf("want %q, got %q", want, got)
}
f = captainslog.Local2
if want, got := "local2", f.String(); want != got {
t.Errorf("want %q, got %q", want, got)
}
f = captainslog.Local3
if want, got := "local3", f.String(); want != got {
t.Errorf("want %q, got %q", want, got)
}
f = captainslog.Local4
if want, got := "local4", f.String(); want != got {
t.Errorf("want %q, got %q", want, got)
}
f = captainslog.Local5
if want, got := "local5", f.String(); want != got {
t.Errorf("want %q, got %q", want, got)
}
f = captainslog.Local6
if want, got := "local6", f.String(); want != got {
t.Errorf("want %q, got %q", want, got)
}
f = captainslog.Local7
if want, got := "local7", f.String(); want != got {
t.Errorf("want %q, got %q", want, got)
}
}
func TestSeverityToString(t *testing.T) {
s := captainslog.Emerg
if want, got := "emerg", s.String(); want != got {
t.Errorf("want %q, got %q", want, got)
}
s = captainslog.Alert
if want, got := "alert", s.String(); want != got {
t.Errorf("want %q, got %q", want, got)
}
s = captainslog.Crit
if want, got := "crit", s.String(); want != got {
t.Errorf("want %q, got %q", want, got)
}
s = captainslog.Err
if want, got := "err", s.String(); want != got {
t.Errorf("want %q, got %q", want, got)
}
s = captainslog.Warning
if want, got := "warning", s.String(); want != got {
t.Errorf("want %q, got %q", want, got)
}
s = captainslog.Notice
if want, got := "notice", s.String(); want != got {
t.Errorf("want %q, got %q", want, got)
}
s = captainslog.Info
if want, got := "info", s.String(); want != got {
t.Errorf("want %q, got %q", want, got)
}
s = captainslog.Debug
if want, got := "debug", s.String(); want != got {
t.Errorf("want %q, got %q", want, got)
}
}
func TestFacilityFromString(t *testing.T) {
var f captainslog.Facility
var tests = []struct {
in string
out captainslog.Facility
}{
{"kern", captainslog.Kern},
{"user", captainslog.User},
{"mail", captainslog.Mail},
{"daemon", captainslog.Daemon},
{"auth", captainslog.Auth},
{"syslog", captainslog.Syslog},
{"lpr", captainslog.LPR},
{"news", captainslog.News},
{"uucp", captainslog.UUCP},
{"cron", captainslog.Cron},
{"authpriv", captainslog.AuthPriv},
{"ftp", captainslog.FTP},
{"local0", captainslog.Local0},
{"local1", captainslog.Local1},
{"local2", captainslog.Local2},
{"local3", captainslog.Local3},
{"local4", captainslog.Local4},
{"local5", captainslog.Local5},
{"local6", captainslog.Local6},
{"local7", captainslog.Local7},
}
for _, tt := range tests {
err := f.FromString(tt.in)
if err != nil {
t.Errorf("error converting string to captainslog.Facility, err = %s", err)
}
if f != tt.out {
t.Errorf("want %q, got %q", tt.out, f)
}
}
if err := f.FromString("foo"); err == nil {
t.Errorf("Did not get error when converting foo to captainslog.Facility")
}
}
func TestSeverityFromString(t *testing.T) {
var s captainslog.Severity
var tests = []struct {
in string
out captainslog.Severity
}{
{"emerg", captainslog.Emerg},
{"alert", captainslog.Alert},
{"crit", captainslog.Crit},
{"err", captainslog.Err},
{"warning", captainslog.Warning},
{"notice", captainslog.Notice},
{"info", captainslog.Info},
{"debug", captainslog.Debug},
}
for _, tt := range tests {
err := s.FromString(tt.in)
if err != nil {
t.Errorf("error converting string to captainslog.Facility, err = %s", err)
}
if s != tt.out {
t.Errorf("want %q, got %q", tt.out, s)
}
}
if err := s.FromString("foo"); err == nil {
t.Errorf("Did not get error when converting foo to captainslog.Severity")
}
}