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
|
package roadrunner
import (
"context"
"os/exec"
"sync"
"testing"
"github.com/stretchr/testify/assert"
)
func Test_GetState(t *testing.T) {
ctx := context.Background()
cmd := exec.Command("php", "tests/client.php", "echo", "pipes")
w, err := NewPipeFactory().SpawnWorkerWithContext(ctx, cmd)
go func() {
assert.NoError(t, w.Wait())
assert.Equal(t, StateStopped, w.State().Value())
}()
assert.NoError(t, err)
assert.NotNil(t, w)
assert.Equal(t, StateReady, w.State().Value())
err = w.Stop(ctx)
if err != nil {
t.Errorf("error stopping the WorkerProcess: error %v", err)
}
}
func Test_Kill(t *testing.T) {
ctx := context.Background()
cmd := exec.Command("php", "tests/client.php", "echo", "pipes")
w, err := NewPipeFactory().SpawnWorkerWithContext(ctx, cmd)
wg := &sync.WaitGroup{}
wg.Add(1)
go func() {
defer wg.Done()
assert.Error(t, w.Wait())
// TODO changed from stopped, discuss
assert.Equal(t, StateErrored, w.State().Value())
}()
assert.NoError(t, err)
assert.NotNil(t, w)
assert.Equal(t, StateReady, w.State().Value())
err = w.Kill()
if err != nil {
t.Errorf("error killing the WorkerProcess: error %v", err)
}
wg.Wait()
}
func Test_OnStarted(t *testing.T) {
cmd := exec.Command("php", "tests/client.php", "broken", "pipes")
assert.Nil(t, cmd.Start())
w, err := InitBaseWorker(cmd)
assert.Nil(t, w)
assert.NotNil(t, err)
assert.Equal(t, "can't attach to running process", err.Error())
}
|