1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-17 10:44:26 -04:00
v2fly/proxy/blackhole/config_test.go

26 lines
469 B
Go
Raw Normal View History

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