-
Notifications
You must be signed in to change notification settings - Fork 6
/
options_test.go
79 lines (58 loc) · 1.4 KB
/
options_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
package buffer_test
import (
"time"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"github.com/globocom/go-buffer/v2"
)
var _ = Describe("Options", func() {
It("sets up size", func() {
// arrange
opts := &buffer.Options{}
// act
buffer.WithSize(10)(opts)
// assert
Expect(opts.Size).To(BeIdenticalTo(uint(10)))
})
It("sets up flusher", func() {
// arrange
opts := &buffer.Options{}
flusher := func(items []interface{}) {}
// act
buffer.WithFlusher(buffer.FlusherFunc(flusher))(opts)
// assert
Expect(opts.Flusher).NotTo(BeNil())
})
It("sets up flush interval", func() {
// arrange
opts := &buffer.Options{}
// act
buffer.WithFlushInterval(5 * time.Second)(opts)
// assert
Expect(opts.FlushInterval).To(Equal(5 * time.Second))
})
It("sets up push timeout", func() {
// arrange
opts := &buffer.Options{}
// act
buffer.WithPushTimeout(10 * time.Second)(opts)
// assert
Expect(opts.PushTimeout).To(Equal(10 * time.Second))
})
It("sets up flush timeout", func() {
// arrange
opts := &buffer.Options{}
// act
buffer.WithFlushTimeout(15 * time.Second)(opts)
// assert
Expect(opts.FlushTimeout).To(Equal(15 * time.Second))
})
It("sets up close timeout", func() {
// arrange
opts := &buffer.Options{}
// act
buffer.WithCloseTimeout(3 * time.Second)(opts)
// assert
Expect(opts.CloseTimeout).To(Equal(3 * time.Second))
})
})