1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00
v2fly/proxy/blackhole/config_test.go

26 lines
469 B
Go
Raw Normal View History

2016-06-10 23:01:17 +02:00
package blackhole_test
import (
"bufio"
"net/http"
"testing"
2016-12-09 11:35:27 +01:00
"v2ray.com/core/common/buf"
2016-08-20 20:55:45 +02:00
. "v2ray.com/core/proxy/blackhole"
2017-10-24 16:15:35 +02:00
. "v2ray.com/ext/assert"
2016-06-10 23:01:17 +02:00
)
func TestHTTPResponse(t *testing.T) {
2017-10-24 16:15:35 +02:00
assert := With(t)
2016-06-10 23:01:17 +02:00
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)
2017-10-24 16:15:35 +02:00
assert(err, IsNil)
assert(response.StatusCode, Equals, 403)
2016-06-10 23:01:17 +02:00
}