mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
543 B
26 lines
543 B
package blackhole_test |
|
|
|
import ( |
|
"bufio" |
|
"net/http" |
|
"testing" |
|
|
|
"github.com/xtls/xray-core/common" |
|
"github.com/xtls/xray-core/common/buf" |
|
. "github.com/xtls/xray-core/proxy/blackhole" |
|
) |
|
|
|
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) |
|
} |
|
}
|
|
|