mirror of https://github.com/v2ray/v2ray-core
test case for http proxy error
parent
be1c175de6
commit
0ad4f99762
|
@ -16,6 +16,7 @@ import (
|
||||||
"v2ray.com/core/app/proxyman"
|
"v2ray.com/core/app/proxyman"
|
||||||
"v2ray.com/core/common/net"
|
"v2ray.com/core/common/net"
|
||||||
"v2ray.com/core/common/serial"
|
"v2ray.com/core/common/serial"
|
||||||
|
"v2ray.com/core/proxy/blackhole"
|
||||||
"v2ray.com/core/proxy/freedom"
|
"v2ray.com/core/proxy/freedom"
|
||||||
v2http "v2ray.com/core/proxy/http"
|
v2http "v2ray.com/core/proxy/http"
|
||||||
v2httptest "v2ray.com/core/testing/servers/http"
|
v2httptest "v2ray.com/core/testing/servers/http"
|
||||||
|
@ -80,6 +81,49 @@ func TestHttpConformance(t *testing.T) {
|
||||||
CloseAllServers(servers)
|
CloseAllServers(servers)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestHttpError(t *testing.T) {
|
||||||
|
assert := With(t)
|
||||||
|
|
||||||
|
serverPort := tcp.PickPort()
|
||||||
|
serverConfig := &core.Config{
|
||||||
|
Inbound: []*core.InboundHandlerConfig{
|
||||||
|
{
|
||||||
|
ReceiverSettings: serial.ToTypedMessage(&proxyman.ReceiverConfig{
|
||||||
|
PortRange: net.SinglePortRange(serverPort),
|
||||||
|
Listen: net.NewIPOrDomain(net.LocalHostIP),
|
||||||
|
}),
|
||||||
|
ProxySettings: serial.ToTypedMessage(&v2http.ServerConfig{}),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Outbound: []*core.OutboundHandlerConfig{
|
||||||
|
{
|
||||||
|
ProxySettings: serial.ToTypedMessage(&blackhole.Config{}),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
servers, err := InitializeServerConfigs(serverConfig)
|
||||||
|
assert(err, IsNil)
|
||||||
|
|
||||||
|
{
|
||||||
|
transport := &http.Transport{
|
||||||
|
Proxy: func(req *http.Request) (*url.URL, error) {
|
||||||
|
return url.Parse("http://127.0.0.1:" + serverPort.String())
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
client := &http.Client{
|
||||||
|
Transport: transport,
|
||||||
|
}
|
||||||
|
|
||||||
|
resp, err := client.Get("http://127.0.0.1:80")
|
||||||
|
assert(err, IsNil)
|
||||||
|
assert(resp.StatusCode, Equals, 503)
|
||||||
|
}
|
||||||
|
|
||||||
|
CloseAllServers(servers)
|
||||||
|
}
|
||||||
|
|
||||||
func TestHttpConnectMethod(t *testing.T) {
|
func TestHttpConnectMethod(t *testing.T) {
|
||||||
assert := With(t)
|
assert := With(t)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue