forked from roadrunner-server/roadrunner
-
Notifications
You must be signed in to change notification settings - Fork 1
/
unix_socket_factory_test.go
145 lines (117 loc) · 3.06 KB
/
unix_socket_factory_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
package roadrunner
import (
"net"
"os/exec"
"runtime"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func Test_UnixSocket_Start(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("not supported on " + runtime.GOOS)
}
cmd := exec.Command("php", "php-src/tests/client.php", "echo", "unix", "withpid")
w, err := NewUnixSocketFactory("sock.unix", time.Minute).SpawnWorker(cmd)
assert.NoError(t, err)
assert.NotNil(t, w)
go func() {
assert.NoError(t, w.Wait())
}()
w.Stop()
}
func Test_UnixSocket_Echo(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("not supported on " + runtime.GOOS)
}
cmd := exec.Command("php", "php-src/tests/client.php", "echo", "unix", "withpid")
w, err := NewUnixSocketFactory("sock.unix", time.Minute).SpawnWorker(cmd)
go func() {
assert.NoError(t, w.Wait())
}()
defer w.Stop()
res, err := w.Exec(&Payload{Body: []byte("hello")})
assert.NoError(t, err)
assert.NotNil(t, res)
assert.NotNil(t, res.Body)
assert.Nil(t, res.Context)
assert.Equal(t, "hello", res.String())
}
func Benchmark_UnixSocket_SpawnWorker_Stop(b *testing.B) {
if runtime.GOOS == "windows" {
b.Skip("not supported on " + runtime.GOOS)
}
f := NewUnixSocketFactory("sock.unix", time.Minute)
for n := 0; n < b.N; n++ {
cmd := exec.Command("php", "php-src/tests/client.php", "echo", "unix", "withpid")
w, _ := f.SpawnWorker(cmd)
go func() {
if w.Wait() != nil {
b.Fail()
}
}()
w.Stop()
}
}
func Benchmark_UnixSocket_Worker_ExecEcho(b *testing.B) {
if runtime.GOOS == "windows" {
b.Skip("not supported on " + runtime.GOOS)
}
cmd := exec.Command("php", "php-src/tests/client.php", "echo", "unix", "withpid")
w, _ := NewUnixSocketFactory("sock.unix", time.Minute).SpawnWorker(cmd)
go func() {
w.Wait()
}()
defer w.Stop()
for n := 0; n < b.N; n++ {
if _, err := w.Exec(&Payload{Body: []byte("hello")}); err != nil {
b.Fail()
}
}
}
func Benchmark_UnixSocket_Pool_ExecEcho(b *testing.B) {
if runtime.GOOS == "windows" {
b.Skip("not supported on " + runtime.GOOS)
}
p, _ := NewPool(
func() *exec.Cmd { return exec.Command("php", "php-src/tests/client.php", "echo", "unix", "withpid") },
NewUnixSocketFactory("sock.unix", time.Minute),
Config{
NumWorkers: 8,
AllocateTimeout: time.Second,
DestroyTimeout: time.Second,
},
)
defer p.Destroy()
for n := 0; n < b.N; n++ {
if _, err := p.Exec(&Payload{Body: []byte("hello")}); err != nil {
b.Fail()
}
}
}
func Benchmark_Unix_Pool_ExecEcho(b *testing.B) {
if runtime.GOOS == "windows" {
b.Skip("not supported on " + runtime.GOOS)
}
ls, err := net.Listen("unix", "sock.unix")
if err == nil {
defer ls.Close()
} else {
b.Skip("socket is busy")
}
p, _ := NewPool(
func() *exec.Cmd { return exec.Command("php", "php-src/tests/client.php", "echo", "unix") },
NewSocketFactory(ls, time.Minute),
Config{
NumWorkers: 8,
AllocateTimeout: time.Second,
DestroyTimeout: time.Second,
},
)
defer p.Destroy()
for n := 0; n < b.N; n++ {
if _, err := p.Exec(&Payload{Body: []byte("hello")}); err != nil {
b.Fail()
}
}
}