-
-
Notifications
You must be signed in to change notification settings - Fork 196
/
goreman_test.go
183 lines (172 loc) · 3.96 KB
/
goreman_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
package main
import (
"context"
"os"
"os/exec"
"path/filepath"
"runtime"
"testing"
"time"
)
var sleep string
func TestMain(m *testing.M) {
var dir string
var err error
sleep, err = exec.LookPath("sleep")
if err != nil {
if runtime.GOOS != "windows" {
panic(err)
}
code := `package main;import ("os";"strconv";"time");func main(){i,_:=strconv.ParseFloat(os.Args[1]);time.Sleep(time.Duration(i)*time.Second)}`
dir, err := os.MkdirTemp("", "goreman-test")
if err != nil {
panic(err)
}
sleep = filepath.Join(dir, "sleep.exe")
src := filepath.Join(dir, "sleep.go")
err = os.WriteFile(src, []byte(code), 0644)
if err != nil {
panic(err)
}
b, err := exec.Command("go", "build", "-o", sleep, src).CombinedOutput()
if err != nil {
panic(string(b))
}
oldpath := os.Getenv("PATH")
os.Setenv("PATH", dir+";"+oldpath)
defer os.Setenv("PATH", oldpath)
}
r := m.Run()
if dir != "" {
os.RemoveAll(dir)
}
os.Exit(r)
}
func startGoreman(ctx context.Context, t *testing.T, ch <-chan os.Signal, file []byte) error {
t.Helper()
f, err := os.CreateTemp("", "")
if err != nil {
t.Fatal(err)
}
if _, err := f.Write(file); err != nil {
t.Fatal(err)
}
cfg := &config{
ExitOnError: true,
Procfile: f.Name(),
}
if ch == nil {
ch = notifyCh()
}
return start(ctx, ch, cfg)
}
func TestGoreman(t *testing.T) {
var file = []byte(`
web1: sleep 0.1
web2: sleep 0.1
web3: sleep 0.1
web4: sleep 0.1
`)
if err := startGoreman(context.TODO(), t, nil, file); err != nil {
t.Fatal(err)
}
}
func TestGoremanSignal(t *testing.T) {
var file = []byte(`
web1: sleep 10
web2: sleep 10
web3: sleep 10
web4: sleep 10
`)
now := time.Now()
sc := make(chan os.Signal, 1)
go func() {
time.Sleep(100 * time.Millisecond)
sc <- os.Interrupt
}()
if err := startGoreman(context.TODO(), t, sc, file); err != nil {
t.Fatal(err)
}
if dur := time.Since(now); dur > 500*time.Millisecond {
t.Errorf("test took too much time; should have canceled after about 10ms, got %s", dur)
}
}
func TestGoremanExitsOnError(t *testing.T) {
var file = []byte(`
web1: sleep 10
web2: sleep 0.01 && foobarbangbazunknownproc
web3: sleep 10
web4: sleep 10
`)
now := time.Now()
// process 2 should exit which should trigger exit of entire program.
if err := startGoreman(context.TODO(), t, nil, file); err == nil {
t.Fatal("got nil err, should have received error")
}
if dur := time.Since(now); dur > time.Second {
t.Errorf("test took too much time; should have canceled after 1s, got %s", dur)
}
}
func TestGoremanExitsOnErrorOtherWay(t *testing.T) {
var file = []byte(`
web1: sleep 10
web2: sleep 0.01 && exit 2
web3: sleep 10
web4: sleep 10
`)
// process 2 should exit which should trigger exit of entire program.
now := time.Now()
if err := startGoreman(context.TODO(), t, nil, file); err == nil {
t.Fatal("got nil err, should have received error")
}
if dur := time.Since(now); dur > time.Second {
t.Errorf("test took too much time; should have canceled after 1s, got %s", dur)
}
}
func TestGoremanStopProcDoesntStopOtherProcs(t *testing.T) {
var file = []byte(`
web1: sleep 10
web2: sleep 10
web3: sleep 10
web4: sleep 10
`)
goremanStopped := make(chan struct{}, 1)
sc := make(chan os.Signal, 1)
go func() {
startGoreman(context.TODO(), t, sc, file)
goremanStopped <- struct{}{}
}()
for {
mu.Lock()
isEmpty := procs == nil
mu.Unlock()
if isEmpty {
time.Sleep(5 * time.Millisecond)
continue
}
proc := findProc("web2")
if proc == nil {
time.Sleep(5 * time.Millisecond)
continue
}
proc.mu.Lock()
cmd := proc.cmd
proc.mu.Unlock()
if cmd == nil || cmd.Process == nil {
time.Sleep(5 * time.Millisecond)
continue
}
// call Sleep that shell will start sleep command
time.Sleep(time.Second)
if err := stopProc("web2", nil); err != nil {
t.Fatal(err)
}
break
}
select {
case <-goremanStopped:
t.Errorf("stopping web2 subprocess should not have stopped supervisor")
case <-time.After(30 * time.Millisecond):
}
sc <- os.Interrupt
}