-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsqsjkr_test.go
150 lines (121 loc) · 2.63 KB
/
sqsjkr_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
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
package sqsjkr
import (
"context"
"fmt"
"sync"
"testing"
"time"
"github.com/aws/aws-sdk-go/service/sqs"
"github.com/kayac/sqsjkr/lock"
"github.com/kayac/sqsjkr/throttle"
)
type TestSQSJkr struct {
jobs chan Job
locker lock.Locker
throttler throttle.Throttler
conf *Config
}
var (
TestMessages []*sqs.Message
Score = 0
)
// Mock ReceiveMessage
func (tsjkr TestSQSJkr) receiveMessage(ctx context.Context) {
for i := 0; i < 10; i++ {
var job Job
if i == 9 {
job = NewTestJob("job-duplicated")
} else {
job = NewTestJob(fmt.Sprintf("job-%d", i))
}
tsjkr.jobs <- job
}
// jod-duplicated job's sleep 200 msec, so this last job will not be executed.
job := NewTestJob("job-duplicated")
tsjkr.jobs <- job
<-ctx.Done()
close(tsjkr.jobs)
}
func (tsjkr TestSQSJkr) Run(ctx context.Context) error {
tsjkr.receiveMessage(ctx)
return nil
}
func (tsjkr TestSQSJkr) Config() *Config {
return tsjkr.conf
}
// JobStream return Job chan.
func (tsjkr TestSQSJkr) JobStream() chan Job {
return tsjkr.jobs
}
func (tsjkr TestSQSJkr) Throttler() throttle.Throttler {
return tsjkr.throttler
}
func (tsjkr TestSQSJkr) Locker() lock.Locker {
return tsjkr.locker
}
func (tsjkr TestSQSJkr) SetLocker(l lock.Locker) {
}
func (tsjkr TestSQSJkr) SetThrottler(t throttle.Throttler) {
}
// TestJob for test
type TestJob struct {
jobID string
}
func (tj TestJob) String() string {
return tj.jobID
}
func (tj TestJob) Execute(locker lock.Locker) ([]byte, error) {
if tj.jobID == "job-duplicated" {
time.Sleep(time.Millisecond * 200)
}
Score++
return []byte(fmt.Sprintf("success %s", tj.jobID)), nil
}
func (tj TestJob) JobID() string {
return tj.jobID
}
func (tj TestJob) Command() string {
return "echo ok"
}
func (tj TestJob) EventID() string {
return "event_id"
}
// This test includes tests to check duplicated sqs messages and lock events.
func TestReceiveAndExecCommand(t *testing.T) {
var err error
wg := sync.WaitGroup{}
conf, _ := LoadConfig("./test/sqsjkr.toml")
testSQSjkr := TestSQSJkr{
jobs: make(chan Job),
locker: &TestLocker{
lockTable: map[string]bool{},
},
throttler: &TestThrottle{
table: map[string]bool{},
},
conf: conf,
}
ctx := context.Background()
ctx, cancel := context.WithCancel(ctx)
// Start SQSJkr daemon
wg.Add(1)
go func() {
err = Run(ctx, testSQSjkr, "debug")
// checks Daemon error
if err != nil {
t.Error(err)
fmt.Println("[error]: ", err)
}
wg.Done()
}()
cancel()
wg.Wait()
if Score != 10 {
t.Errorf("Could not delete message correctly: expected=10 got=%d ", Score)
}
}
func NewTestJob(id string) Job {
return &TestJob{
jobID: id,
}
}