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
|
package test
import (
"io"
"net"
"testing"
)
func TestStressIOPipe(t *testing.T) {
r, w := io.Pipe()
opt := Options{
MsgSize: 2048,
MsgCount: 100,
}
err := Stress(w, r, opt)
if err != nil {
t.Fatal(err)
}
}
func TestStressDuplexNetPipe(t *testing.T) {
ca, cb := net.Pipe()
opt := Options{
MsgSize: 2048,
MsgCount: 100,
}
err := StressDuplex(ca, cb, opt)
if err != nil {
t.Fatal(err)
}
}
func BenchmarkPipe(b *testing.B) {
ca, cb := net.Pipe()
b.ResetTimer()
opt := Options{
MsgSize: 2048,
MsgCount: b.N,
}
check(Stress(ca, cb, opt))
}
func check(err error) {
if err != nil {
panic(err)
}
}
|