From 37d1a761397e44627d0e7b004dd175a4370e7684 Mon Sep 17 00:00:00 2001 From: Darien Raymond Date: Wed, 24 Oct 2018 19:16:07 +0200 Subject: [PATCH] more test cases --- proxy/blackhole/blackhole_test.go | 40 +++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 proxy/blackhole/blackhole_test.go diff --git a/proxy/blackhole/blackhole_test.go b/proxy/blackhole/blackhole_test.go new file mode 100644 index 00000000..4c8bb1e3 --- /dev/null +++ b/proxy/blackhole/blackhole_test.go @@ -0,0 +1,40 @@ +package blackhole_test + +import ( + "context" + "testing" + + "v2ray.com/core/common" + "v2ray.com/core/common/buf" + "v2ray.com/core/common/serial" + "v2ray.com/core/common/vio" + "v2ray.com/core/proxy/blackhole" + "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 := vio.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") + } +}