1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-19 14:05:23 +00:00
v2fly/proxy/blackhole/blackhole_test.go

41 lines
960 B
Go
Raw Normal View History

2018-10-24 17:16:07 +00:00
package blackhole_test
import (
"context"
"testing"
2021-02-16 20:31:50 +00:00
"github.com/v2fly/v2ray-core/v4/common"
"github.com/v2fly/v2ray-core/v4/common/buf"
"github.com/v2fly/v2ray-core/v4/common/serial"
"github.com/v2fly/v2ray-core/v4/proxy/blackhole"
"github.com/v2fly/v2ray-core/v4/transport"
"github.com/v2fly/v2ray-core/v4/transport/pipe"
2018-10-24 17:16:07 +00:00
)
func TestBlackHoleHTTPResponse(t *testing.T) {
2018-10-24 17:16:07 +00:00
handler, err := blackhole.New(context.Background(), &blackhole.Config{
Response: serial.ToTypedMessage(&blackhole.HTTPResponse{}),
})
common.Must(err)
reader, writer := pipe.New(pipe.WithoutSizeLimit())
2021-05-19 21:28:52 +00:00
readerError := make(chan error)
2018-10-24 17:16:07 +00:00
var mb buf.MultiBuffer
go func() {
b, e := reader.ReadMultiBuffer()
mb = b
readerError <- e
2018-10-24 17:16:07 +00:00
}()
2018-11-03 11:36:29 +00:00
link := transport.Link{
2018-10-24 17:16:07 +00:00
Reader: reader,
Writer: writer,
}
common.Must(handler.Process(context.Background(), &link, nil))
common.Must(<-readerError)
2018-10-24 17:16:07 +00:00
if mb.IsEmpty() {
t.Error("expect http response, but nothing")
}
}