-
Notifications
You must be signed in to change notification settings - Fork 0
/
option_test.go
52 lines (45 loc) · 1.13 KB
/
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
46
47
48
49
50
51
52
package cron
import (
"context"
"log"
"strings"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func TestWithContext(t *testing.T) {
type key struct{}
ctx := context.WithValue(context.Background(), key{}, "value")
c := New(WithContext(ctx))
assert.Equal(t, "value", c.ctx.Value(key{}))
}
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) {
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 := log.New(&buf, "", log.LstdFlags)
c := New(WithLogger(VerbosePrintfLogger(logger)))
if c.logger.(printfLogger).logger != logger {
t.Error("expected provided logger")
}
c.AddFunc("@every 1s", func(context.Context) error { return nil }) //nolint:errcheck
c.Start()
time.Sleep(OneSecond)
c.Stop()
out := buf.String()
if !strings.Contains(out, "schedule,") ||
!strings.Contains(out, "run,") {
t.Error("expected to see some actions, got:", out)
}
}