2018-10-24 13:16:07 -04:00
|
|
|
package blackhole_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
|
|
|
|
2022-01-02 10:16:23 -05:00
|
|
|
"github.com/v2fly/v2ray-core/v5/common"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/common/buf"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/common/serial"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/proxy/blackhole"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/transport"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/transport/pipe"
|
2018-10-24 13:16:07 -04:00
|
|
|
)
|
|
|
|
|
2021-01-11 07:50:58 -05:00
|
|
|
func TestBlackHoleHTTPResponse(t *testing.T) {
|
2018-10-24 13:16:07 -04: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 17:28:52 -04:00
|
|
|
readerError := make(chan error)
|
2018-10-24 13:16:07 -04:00
|
|
|
var mb buf.MultiBuffer
|
|
|
|
go func() {
|
|
|
|
b, e := reader.ReadMultiBuffer()
|
|
|
|
mb = b
|
2021-01-11 07:50:58 -05:00
|
|
|
readerError <- e
|
2018-10-24 13:16:07 -04:00
|
|
|
}()
|
|
|
|
|
2018-11-03 07:36:29 -04:00
|
|
|
link := transport.Link{
|
2018-10-24 13:16:07 -04:00
|
|
|
Reader: reader,
|
|
|
|
Writer: writer,
|
|
|
|
}
|
|
|
|
common.Must(handler.Process(context.Background(), &link, nil))
|
2021-01-11 07:50:58 -05:00
|
|
|
common.Must(<-readerError)
|
2018-10-24 13:16:07 -04:00
|
|
|
if mb.IsEmpty() {
|
|
|
|
t.Error("expect http response, but nothing")
|
|
|
|
}
|
|
|
|
}
|