-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtesting.go
83 lines (73 loc) · 2.78 KB
/
testing.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
package pool
import (
"context"
"testing"
"time"
redis "github.com/redis/go-redis/v9"
"github.com/stretchr/testify/require"
"goa.design/pulse/pulse"
)
// mockHandler is a mock worker mockHandler for testing
type mockHandler struct {
startFunc func(job *Job) error
stopFunc func(key string) error
notifyFunc func(key string, payload []byte) error
}
// mockHandlerWithoutNotify is a mock handler that doesn't implement NotificationHandler
type mockHandlerWithoutNotify struct {
startFunc func(job *Job) error
stopFunc func(key string) error
}
const (
testWorkerShutdownTTL = 100 * time.Millisecond
testJobSinkBlockDuration = 100 * time.Millisecond
testWorkerTTL = 150 * time.Millisecond
testAckGracePeriod = 50 * time.Millisecond
)
// newTestNode creates a new Node instance for testing purposes.
// It configures the node with specific TTL and block duration settings
// suitable for testing, and uses the provided Redis client and name.
func newTestNode(t *testing.T, ctx context.Context, rdb *redis.Client, name string) *Node {
t.Helper()
node, err := AddNode(ctx, name, rdb,
WithLogger(pulse.ClueLogger(ctx)),
WithWorkerShutdownTTL(testWorkerShutdownTTL),
WithJobSinkBlockDuration(testJobSinkBlockDuration),
WithWorkerTTL(testWorkerTTL),
WithAckGracePeriod(testAckGracePeriod))
require.NoError(t, err)
return node
}
// newTestWorker creates a new Worker instance for testing purposes.
// It sets up a mock handler with basic job management functions and adds the
// worker to the given node.
func newTestWorker(t *testing.T, ctx context.Context, node *Node) *Worker {
t.Helper()
handler := &mockHandler{
startFunc: func(job *Job) error { return nil },
stopFunc: func(key string) error { return nil },
notifyFunc: func(key string, payload []byte) error { return nil },
}
worker, err := node.AddWorker(ctx, handler)
require.NoError(t, err)
return worker
}
// newTestWorkerWithoutNotify creates a new Worker instance for testing purposes.
// It sets up a mock handler without NotificationHandler for testing.
func newTestWorkerWithoutNotify(t *testing.T, ctx context.Context, node *Node) *Worker {
t.Helper()
handler := &mockHandlerWithoutNotify{
startFunc: func(job *Job) error { return nil },
stopFunc: func(key string) error { return nil },
}
worker, err := node.AddWorker(ctx, handler)
require.NoError(t, err)
return worker
}
func (w *mockHandler) Start(job *Job) error { return w.startFunc(job) }
func (w *mockHandler) Stop(key string) error { return w.stopFunc(key) }
func (w *mockHandler) HandleNotification(key string, payload []byte) error {
return w.notifyFunc(key, payload)
}
func (h *mockHandlerWithoutNotify) Start(job *Job) error { return h.startFunc(job) }
func (h *mockHandlerWithoutNotify) Stop(key string) error { return h.stopFunc(key) }