1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-02 20:15:24 +00:00
v2fly/proxy/blackhole/config_test.go

26 lines
469 B
Go
Raw Normal View History

2016-06-10 21:01:17 +00:00
package blackhole_test
import (
"bufio"
"net/http"
"testing"
2016-12-09 10:35:27 +00:00
"v2ray.com/core/common/buf"
2016-08-20 18:55:45 +00:00
. "v2ray.com/core/proxy/blackhole"
2017-10-24 14:15:35 +00:00
. "v2ray.com/ext/assert"
2016-06-10 21:01:17 +00:00
)
func TestHTTPResponse(t *testing.T) {
2017-10-24 14:15:35 +00:00
assert := With(t)
2016-06-10 21:01:17 +00:00
2016-12-09 11:08:25 +00:00
buffer := buf.New()
2016-06-10 21:01:17 +00:00
httpResponse := new(HTTPResponse)
2016-12-09 12:17:34 +00:00
httpResponse.WriteTo(buf.NewWriter(buffer))
2016-06-10 21:01:17 +00:00
reader := bufio.NewReader(buffer)
response, err := http.ReadResponse(reader, nil)
2017-10-24 14:15:35 +00:00
assert(err, IsNil)
assert(response.StatusCode, Equals, 403)
2016-06-10 21:01:17 +00:00
}