-
Notifications
You must be signed in to change notification settings - Fork 0
/
taskmaster_test.go
475 lines (457 loc) · 14.9 KB
/
taskmaster_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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
package main
import (
"flag"
"os"
"testing"
"time"
// . "github.com/Travmatth/taskmaster/ui"
// . "github.com/Travmatth/taskmaster/log"
// . "github.com/Travmatth/taskmaster/signals"
. "github.com/Travmatth/taskmaster/parse"
. "github.com/Travmatth/taskmaster/supervisor"
. "github.com/Travmatth/taskmaster/utils"
)
func PrepareSupervisor(t *testing.T, file string) *Supervisor {
Buf.Reset()
s := NewSupervisor(file, "", NewManager(), make(chan os.Signal))
if jobs, err := LoadJobsFromFile(file); err != nil {
panic(err)
} else {
s.Mgr.AddMultiJobs(jobs)
return s
}
}
func TestMain(m *testing.M) {
var logOut string
flag.StringVar(&logOut, "logs", "buf", "Log file output")
flag.Parse()
MockLogger(logOut)
os.Exit(m.Run())
}
func TestTaskMasterStartStopSingle(t *testing.T) {
ch := make(chan error)
s := PrepareSupervisor(t, "procfiles/StartStopSingle.yaml")
go func() {
if err := s.StartJob(0, true); err != nil {
ch <- err
} else if err = s.StopJob(0); err != nil {
ch <- err
} else {
ch <- nil
}
}()
select {
case err := <-ch:
if err != nil {
t.Errorf("Err not nil:\n%s\n%s", err, Buf.String())
} else {
LogsContain(t, Buf.String(), []string{
"Job 0 Instance 0 : Successfully Started after 1 second(s)",
"Job 0 Instance 0 : Sending Signal interrupt",
"Job 0 Instance 0 : exited with status: signal: interrupt",
"Job 0 Instance 0 : stopped by user, not restarting",
})
}
case <-time.After(time.Duration(5) * time.Second):
t.Errorf("TestStartStopMulti timed out, log:\n%s", Buf.String())
}
Buf.Reset()
}
func TestTaskMasterStartStopMultiJobs(t *testing.T) {
ch := make(chan struct{})
s := PrepareSupervisor(t, "procfiles/StartStopMulti.yaml")
go func() {
s.StartAllJobs(true)
s.StopAllJobs(true)
ch <- struct{}{}
}()
select {
case <-ch:
LogsContain(t, Buf.String(), []string{
"Job 1 Instance 0 : Successfully Started after 1 second(s)",
"Job 2 Instance 0 : Successfully Started after 1 second(s)",
"Job 1 Instance 0 : Sending Signal interrupt",
"Job 2 Instance 0 : Sending Signal interrupt",
"Job 1 Instance 0 : exited with status: signal: interrupt",
"Job 2 Instance 0 : exited with status: signal: interrupt",
"Job 1 Instance 0 : stopped by user, not restarting",
"Job 2 Instance 0 : stopped by user, not restarting",
})
case <-time.After(time.Duration(5) * time.Second):
t.Errorf("TestStartStopMulti timed out, log:\n%s", Buf.String())
}
}
func TestTaskMasterRestartAfterFailedStart(t *testing.T) {
ch := make(chan struct{})
s := PrepareSupervisor(t, "procfiles/RestartAfterFailedStart.yaml")
go func() {
s.StartAllJobs(true)
ch <- struct{}{}
}()
select {
case <-ch:
LogsContain(t, Buf.String(), []string{
"Job 3 Instance 0 : Creation failed: failed to start with error: fork/exec foo: no such file or directory",
})
case <-time.After(time.Duration(20) * time.Second):
t.Errorf("TestRestartAfterFailedStart timed out, log:\n%s", Buf.String())
}
Buf.Reset()
}
func TestTaskMasterRestartAfterUnexpectedExit(t *testing.T) {
ch := make(chan struct{})
s := PrepareSupervisor(t, "procfiles/RestartAfterUnexpectedExit.yaml")
go func() {
j, _ := s.Mgr.GetJob(4)
s.StartAllJobs(true)
<-j.Instances[0].FinishedCh
<-j.Instances[0].FinishedCh
<-j.Instances[0].FinishedCh
<-j.Instances[0].FinishedCh
<-j.Instances[0].FinishedCh
<-j.Instances[0].FinishedCh
time.Sleep(3)
ch <- struct{}{}
}()
select {
case <-ch:
LogsContain(t, Buf.String(), []string{
"Job 4 Instance 0 : Successfully Started with no start checkup",
"Job 4 Instance 0 : exited with status: exit status 1",
"Job 4 Instance 0 : Encountered unexpected exit code 1 , restarting",
"Job 4 Instance 0 : Successfully Started with no start checkup",
"Job 4 Instance 0 : exited with status: exit status 1",
"Job 4 Instance 0 : Encountered unexpected exit code 1 , restarting",
"Job 4 Instance 0 : Successfully Started with no start checkup",
"Job 4 Instance 0 : exited with status: exit status 1",
"Job 4 Instance 0 : Encountered unexpected exit code 1 , restarting",
"Job 4 Instance 0 : Successfully Started with no start checkup",
"Job 4 Instance 0 : exited with status: exit status 1",
"Job 4 Instance 0 : Encountered unexpected exit code 1 , restarting",
"Job 4 Instance 0 : Successfully Started with no start checkup",
"Job 4 Instance 0 : exited with status: exit status 1",
"Job 4 Instance 0 : Encountered unexpected exit code 1 , restarting",
"Job 4 Instance 0 : Successfully Started with no start checkup",
"Job 4 Instance 0 : exited with status: exit status 0",
})
case <-time.After(time.Duration(10) * time.Second):
t.Errorf("TestRestartAfterFailedStart timed out, log:\n%s", Buf.String())
}
Buf.Reset()
}
func TestTaskMasterNoRestartAfterExpectedExit(t *testing.T) {
ch := make(chan struct{})
s := PrepareSupervisor(t, "procfiles/NoRestartAfterExpectedExit.yaml")
go func() {
j, _ := s.Mgr.GetJob(5)
s.StartAllJobs(true)
<-j.Instances[0].FinishedCh
ch <- struct{}{}
}()
select {
case <-ch:
LogsContain(t, Buf.String(), []string{
"Job 5 Instance 0 : Successfully Started with no start checkup",
"Job 5 Instance 0 : exited with status: exit status 1",
})
case <-time.After(time.Duration(10) * time.Second):
t.Errorf("TestNoRestartAfterExpectedExit timed out, log:\n%s", Buf.String())
}
Buf.Reset()
}
func TestTaskMasterNoRestartAfterExit(t *testing.T) {
ch := make(chan struct{})
s := PrepareSupervisor(t, "procfiles/NoRestartAfterExit.yaml")
go func() {
j, _ := s.Mgr.GetJob(6)
s.StartAllJobs(true)
<-j.Instances[0].FinishedCh
ch <- struct{}{}
}()
select {
case <-ch:
LogsContain(t, Buf.String(), []string{
"Job 6 Instance 0 : Successfully Started with no start checkup",
"Job 6 Instance 0 : exited with status: exit status 1",
"Job 6 Instance 0 : restart policy specifies do not restart",
})
case <-time.After(time.Duration(10) * time.Second):
t.Errorf("TestNoRestartAfterExit timed out, logs:\n%s", Buf.String())
}
Buf.Reset()
}
func TestTaskMasterRestartAlways(t *testing.T) {
ch := make(chan struct{})
s := PrepareSupervisor(t, "procfiles/RestartAlways.yaml")
go func() {
j, _ := s.Mgr.GetJob(7)
s.StartAllJobs(true)
<-j.Instances[0].FinishedCh
<-j.Instances[0].FinishedCh
s.StopAllJobs(true)
ch <- struct{}{}
}()
select {
case <-ch:
LogsContain(t, Buf.String(), []string{
"Job 7 Instance 0 : Successfully Started with no start checkup",
"Job 7 Instance 0 : exited with status: exit status 1",
"Job 7 Instance 0 : Successfully Started with no start checkup",
"Job 7 Instance 0 : exited with status: exit status 1",
"Job 7 Instance 0 : Successfully Started with no start checkup",
"Job 7 Instance 0 : Sending Signal interrupt",
"Job 7 Instance 0 : exited with status: signal: interrupt",
"Job 7 Instance 0 : stopped by user, not restarting",
})
case <-time.After(time.Duration(10) * time.Second):
t.Errorf("TestNoRestartAfterExit timed out, logs:\n%s", Buf.String())
}
Buf.Reset()
}
func TestTaskMasterStartTimeout(t *testing.T) {
ch := make(chan struct{})
s := PrepareSupervisor(t, "procfiles/StartTimeout.yaml")
go func() {
j, _ := s.Mgr.GetJob(8)
s.StartAllJobs(true)
<-j.Instances[0].FinishedCh
ch <- struct{}{}
}()
select {
case <-ch:
LogsContain(t, Buf.String(), []string{
"Job 8 Instance 0 : exited with status: exit status 1",
"Job 8 Instance 0 : monitor failed, program exit: 1 with job status 2",
"Job 8 Instance 0 : Start failed, restarting",
"Job 8 Instance 0 : Successfully Started after 2 second(s)",
"Job 8 Instance 0 : exited with status: exit status 0",
"Job 8 Instance 0 : restart policy specifies do not restart",
})
case <-time.After(time.Duration(10) * time.Second):
t.Errorf("TestRestartAfterFailedStart timed out, log:\n%s", Buf.String())
}
Buf.Reset()
}
func TestTaskMasterKillAfterIgnoredStopSignal(t *testing.T) {
test := "test_scripts/KillAfterIgnoredStopSignal.test"
ch := make(chan error)
s := PrepareSupervisor(t, "procfiles/KillAfterIgnoredStopSignal.yaml")
go func() {
if err := s.StartJob(9, true); err != nil {
ch <- err
}
if err := s.StopJob(9); err != nil {
ch <- err
} else {
ch <- nil
}
}()
select {
case err := <-ch:
if err != nil {
t.Errorf("Err not nil:\n%s", Buf.String())
} else {
if contents, err := FileContains(test); err != nil {
t.Errorf("Error: failed to open file with error %s", err)
} else if contents != "INT caught" {
t.Errorf("Error: incorrect file contents %s", contents)
} else {
LogsContain(t, Buf.String(), []string{
"Job 9 Instance 0 : Sending Signal interrupt",
"Job 9 Instance 0 : Successfully Started after 2 second(s)",
"Job 9 Instance 0 : did not stop after timeout of 3 seconds SIGKILL issued",
"Job 9 Instance 0 : exited with status: signal: killed",
"Job 9 Instance 0 : stopped by user, not restarting",
})
os.Remove(test)
}
}
case <-time.After(time.Duration(10) * time.Second):
t.Errorf("TestStartStopMulti timed out, log:\n%s", Buf.String())
}
Buf.Reset()
}
func TestTaskMasterRedirectStdout(t *testing.T) {
testFile := "test_scripts/RedirectStdout.test"
ch := make(chan struct{})
s := PrepareSupervisor(t, "procfiles/RedirectStdout.yaml")
go func() {
j, _ := s.Mgr.GetJob(10)
s.StartAllJobs(true)
<-j.Instances[0].FinishedCh
ch <- struct{}{}
}()
select {
case <-ch:
logs := Buf.String()
if contents, err := FileContains(testFile); err != nil {
t.Errorf("Error: file error\n%s\nlogs:%s", err, logs)
} else if contents != "written to stdout" {
t.Errorf("Error: incorrect string\n%s\nlogs:%s", contents, logs)
} else {
LogsContain(t, logs, []string{
"Job 10 Instance 0 : Successfully Started with no start checkup",
"Job 10 Instance 0 : exited with status: exit status 0",
"Job 10 Instance 0 : restart policy specifies do not restart",
})
os.Remove(testFile)
}
case <-time.After(time.Duration(10) * time.Second):
t.Errorf("TestRedirectStdout timed out, logs:\n%s", Buf.String())
}
Buf.Reset()
}
func TestTaskMasterRedirectStderr(t *testing.T) {
testFile := "test_scripts/RedirectStderr.test"
ch := make(chan struct{})
s := PrepareSupervisor(t, "procfiles/RedirectStderr.yaml")
go func() {
j, _ := s.Mgr.GetJob(11)
s.StartAllJobs(true)
<-j.Instances[0].FinishedCh
ch <- struct{}{}
}()
select {
case <-ch:
logs := Buf.String()
if contents, err := FileContains(testFile); err != nil {
t.Errorf("Error: file error\n%s\nlogs:%s", err, logs)
} else if contents != "written to stderr" {
t.Errorf("Error: incorrect string\n%s\nlogs:%s", contents, logs)
} else {
LogsContain(t, logs, []string{
"Job 11 Instance 0 : Successfully Started with no start checkup",
"Job 11 Instance 0 : exited with status: exit status 0",
"Job 11 Instance 0 : restart policy specifies do not restart",
})
os.Remove(testFile)
}
case <-time.After(time.Duration(10) * time.Second):
t.Errorf("TestRedirectStderr timed out, logs:\n%s", Buf.String())
}
Buf.Reset()
}
func TestTaskMasterEnvVars(t *testing.T) {
testFile := "test_scripts/EnvVars.test"
ch := make(chan struct{})
s := PrepareSupervisor(t, "procfiles/EnvVars.yaml")
go func() {
j, _ := s.Mgr.GetJob(12)
s.StartAllJobs(true)
<-j.Instances[0].FinishedCh
ch <- struct{}{}
}()
select {
case <-ch:
logs := Buf.String()
if contents, err := FileContains(testFile); err != nil {
t.Errorf("Error: file error\n%s\nlogs:%s", err, logs)
} else if contents != "env vars working" {
t.Errorf("Error: incorrect string\n%s\nlogs:%s", contents, logs)
} else {
LogsContain(t, logs, []string{
"Job 12 Instance 0 : Successfully Started with no start checkup",
"Job 12 Instance 0 : exited with status: exit status 0",
"Job 12 Instance 0 : restart policy specifies do not restart",
})
os.Remove(testFile)
}
case <-time.After(time.Duration(10) * time.Second):
t.Errorf("TestEnvVars timed out, logs:\n%s", Buf.String())
}
Buf.Reset()
}
func TestTaskMasterSetWorkingDir(t *testing.T) {
testFile := "test_scripts/SetWorkingDir.test"
ch := make(chan struct{})
s := PrepareSupervisor(t, "procfiles/SetWorkingDir.yaml")
go func() {
j, _ := s.Mgr.GetJob(13)
s.StartAllJobs(true)
<-j.Instances[0].FinishedCh
time.Sleep(1)
ch <- struct{}{}
}()
select {
case <-ch:
logs := Buf.String()
if contents, err := FileContains(testFile); err != nil {
t.Errorf("Error: file error\n%s\nlogs:%s", err, logs)
} else if contents != "exists" {
t.Errorf("Error: incorrect string\n%s\nlogs:%s", contents, logs)
} else {
LogsContain(t, logs, []string{
"Job 13 Instance 0 : Successfully Started with no start checkup",
"Job 13 Instance 0 : exited with status: exit status 0",
"Job 13 Instance 0 : restart policy specifies do not restart",
})
os.Remove(testFile)
}
case <-time.After(time.Duration(10) * time.Second):
t.Errorf("TestRedirectStdout timed out, logs:\n%s", Buf.String())
}
Buf.Reset()
}
func TestTaskMasterUmask(t *testing.T) {
testFile := "test_scripts/SetUmask.test"
ch := make(chan struct{})
s := PrepareSupervisor(t, "procfiles/SetUmask.yaml")
go func() {
j, _ := s.Mgr.GetJob(14)
s.StartAllJobs(true)
<-j.Instances[0].FinishedCh
ch <- struct{}{}
}()
select {
case <-ch:
logs := Buf.String()
if contents, err := FileContains(testFile); err != nil {
t.Errorf("Error: file error\n%s\nlogs:%s", err, logs)
} else if contents != "0000" {
t.Errorf("Error: incorrect string\n%s\nlogs:\n%s", contents, logs)
} else {
LogsContain(t, logs, []string{
"Job 14 Instance 0 : Successfully Started with no start checkup",
"Job 14 Instance 0 : exited with status: exit status 0",
"Job 14 Instance 0 : restart policy specifies do not restart",
})
os.Remove(testFile)
}
case <-time.After(time.Duration(10) * time.Second):
t.Errorf("TestRedirectStdout timed out, logs:\n%s", Buf.String())
}
Buf.Reset()
}
func TestTaskMasterStartStopMultipleInstances(t *testing.T) {
ch := make(chan error)
s := PrepareSupervisor(t, "procfiles/StartStopMultipleInstances.yaml")
go func() {
if err := s.StartJob(15, true); err != nil {
ch <- err
} else if err = s.StopJob(15); err != nil {
ch <- err
} else {
ch <- nil
}
}()
select {
case err := <-ch:
if err != nil {
t.Errorf("Err not nil:\n%s\nLogs:\n%s\n", Buf.String(), err)
} else {
LogsContain(t, Buf.String(), []string{
"Job 15 Instance 0 : Successfully Started after 1 second(s)",
"Job 15 Instance 1 : Successfully Started after 1 second(s)",
"Job 15 Instance 0 : Sending Signal interrupt",
"Job 15 Instance 1 : Sending Signal interrupt",
"Job 15 Instance 0 : exited with status: signal: interrupt",
"Job 15 Instance 1 : exited with status: signal: interrupt",
"Job 15 Instance 0 : stopped by user, not restarting",
"Job 15 Instance 1 : stopped by user, not restarting",
})
}
case <-time.After(time.Duration(5) * time.Second):
t.Errorf("TestStartStopMulti timed out, log:\n%s", Buf.String())
}
Buf.Reset()
}