mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
830 B
40 lines
830 B
package blackhole_test |
|
|
|
import ( |
|
"context" |
|
"testing" |
|
|
|
"v2ray.com/core/common" |
|
"v2ray.com/core/common/buf" |
|
"v2ray.com/core/common/serial" |
|
"v2ray.com/core/proxy/blackhole" |
|
"v2ray.com/core/transport" |
|
"v2ray.com/core/transport/pipe" |
|
) |
|
|
|
func TestBlackholeHTTPResponse(t *testing.T) { |
|
handler, err := blackhole.New(context.Background(), &blackhole.Config{ |
|
Response: serial.ToTypedMessage(&blackhole.HTTPResponse{}), |
|
}) |
|
common.Must(err) |
|
|
|
reader, writer := pipe.New(pipe.WithoutSizeLimit()) |
|
|
|
var mb buf.MultiBuffer |
|
var rerr error |
|
go func() { |
|
b, e := reader.ReadMultiBuffer() |
|
mb = b |
|
rerr = e |
|
}() |
|
|
|
link := transport.Link{ |
|
Reader: reader, |
|
Writer: writer, |
|
} |
|
common.Must(handler.Process(context.Background(), &link, nil)) |
|
common.Must(rerr) |
|
if mb.IsEmpty() { |
|
t.Error("expect http response, but nothing") |
|
} |
|
}
|
|
|