forked from gdgvda/cron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
option_test.go
45 lines (40 loc) · 882 Bytes
/
option_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
package cron
import (
"log/slog"
"strings"
"testing"
"time"
)
func TestWithLocation(t *testing.T) {
c := New(WithLocation(time.UTC))
if c.location != time.UTC {
t.Errorf("expected UTC, got %v", c.location)
}
}
func TestWithParser(t *testing.T) {
var parser = NewParser(Dow)
c := New(WithParser(parser))
if c.parser != parser {
t.Error("expected provided parser")
}
}
func TestWithVerboseLogger(t *testing.T) {
var buf syncWriter
logger := slog.New(slog.NewTextHandler(&buf, nil))
c := New(WithLogger(logger))
if c.logger != logger {
t.Error("expected provided logger")
}
_, err := c.Add("@every 1s", func() {})
if err != nil {
t.Error("non-nil error")
}
c.Start()
time.Sleep(OneSecond)
c.Stop()
out := buf.String()
if !strings.Contains(out, "start") ||
!strings.Contains(out, "run") {
t.Error("expected to see some actions, got:", out)
}
}