2020-11-25 13:01:53 +02:00
|
|
|
package blackhole_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"net/http"
|
|
|
|
"testing"
|
|
|
|
|
2020-12-04 03:36:16 +02:00
|
|
|
"github.com/xtls/xray-core/common"
|
|
|
|
"github.com/xtls/xray-core/common/buf"
|
|
|
|
. "github.com/xtls/xray-core/proxy/blackhole"
|
2020-11-25 13:01:53 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestHTTPResponse(t *testing.T) {
|
|
|
|
buffer := buf.New()
|
|
|
|
|
|
|
|
httpResponse := new(HTTPResponse)
|
|
|
|
httpResponse.WriteTo(buf.NewWriter(buffer))
|
|
|
|
|
|
|
|
reader := bufio.NewReader(buffer)
|
|
|
|
response, err := http.ReadResponse(reader, nil)
|
|
|
|
common.Must(err)
|
|
|
|
|
|
|
|
if response.StatusCode != 403 {
|
|
|
|
t.Error("expected status code 403, but got ", response.StatusCode)
|
|
|
|
}
|
|
|
|
}
|