2016-06-10 23:01:17 +02:00
|
|
|
package blackhole_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"net/http"
|
|
|
|
"testing"
|
|
|
|
|
2022-01-02 15:16:23 +00:00
|
|
|
"github.com/v2fly/v2ray-core/v5/common"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/common/buf"
|
|
|
|
. "github.com/v2fly/v2ray-core/v5/proxy/blackhole"
|
2016-06-10 23:01:17 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestHTTPResponse(t *testing.T) {
|
2016-12-09 12:08:25 +01:00
|
|
|
buffer := buf.New()
|
2016-06-10 23:01:17 +02:00
|
|
|
|
|
|
|
httpResponse := new(HTTPResponse)
|
2016-12-09 13:17:34 +01:00
|
|
|
httpResponse.WriteTo(buf.NewWriter(buffer))
|
2016-06-10 23:01:17 +02:00
|
|
|
|
|
|
|
reader := bufio.NewReader(buffer)
|
|
|
|
response, err := http.ReadResponse(reader, nil)
|
2019-02-01 14:38:14 +01:00
|
|
|
common.Must(err)
|
2020-11-22 05:05:01 +08:00
|
|
|
defer response.Body.Close()
|
2020-10-11 19:22:46 +08:00
|
|
|
|
2019-02-01 14:38:14 +01:00
|
|
|
if response.StatusCode != 403 {
|
|
|
|
t.Error("expected status code 403, but got ", response.StatusCode)
|
|
|
|
}
|
2016-06-10 23:01:17 +02:00
|
|
|
}
|