1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-28 14:56:33 -04:00
v2fly/testing/scenarios/http_test.go

163 lines
3.7 KiB
Go
Raw Normal View History

2016-01-24 15:48:38 -05:00
package scenarios
import (
"io/ioutil"
"net/http"
"net/url"
"testing"
"v2ray.com/core"
"v2ray.com/core/app/proxyman"
"v2ray.com/core/common/net"
"v2ray.com/core/common/serial"
"v2ray.com/core/proxy/freedom"
v2http "v2ray.com/core/proxy/http"
v2httptest "v2ray.com/core/testing/servers/http"
2017-10-26 15:44:13 -04:00
. "v2ray.com/ext/assert"
2016-01-24 15:48:38 -05:00
)
func TestHttpConformance(t *testing.T) {
2017-10-24 10:15:35 -04:00
assert := With(t)
2016-01-24 15:48:38 -05:00
httpServerPort := pickPort()
httpServer := &v2httptest.Server{
Port: httpServerPort,
2016-01-24 15:48:38 -05:00
PathHandler: make(map[string]http.HandlerFunc),
}
_, err := httpServer.Start()
2017-10-24 10:15:35 -04:00
assert(err, IsNil)
2016-01-24 15:48:38 -05:00
defer httpServer.Close()
serverPort := pickPort()
serverConfig := &core.Config{
Inbound: []*proxyman.InboundHandlerConfig{
{
ReceiverSettings: serial.ToTypedMessage(&proxyman.ReceiverConfig{
PortRange: net.SinglePortRange(serverPort),
Listen: net.NewIPOrDomain(net.LocalHostIP),
}),
ProxySettings: serial.ToTypedMessage(&v2http.ServerConfig{}),
},
},
Outbound: []*proxyman.OutboundHandlerConfig{
{
ProxySettings: serial.ToTypedMessage(&freedom.Config{}),
},
2016-01-24 15:48:38 -05:00
},
}
2017-05-17 18:39:30 -04:00
servers, err := InitializeServerConfigs(serverConfig)
2017-10-24 10:15:35 -04:00
assert(err, IsNil)
2016-06-10 17:01:17 -04:00
{
transport := &http.Transport{
Proxy: func(req *http.Request) (*url.URL, error) {
return url.Parse("http://127.0.0.1:" + serverPort.String())
},
}
2016-06-10 17:01:17 -04:00
client := &http.Client{
Transport: transport,
}
2016-06-10 17:01:17 -04:00
resp, err := client.Get("http://127.0.0.1:" + httpServerPort.String())
2017-10-24 10:15:35 -04:00
assert(err, IsNil)
assert(resp.StatusCode, Equals, 200)
2016-06-10 17:01:17 -04:00
content, err := ioutil.ReadAll(resp.Body)
2017-10-24 10:15:35 -04:00
assert(err, IsNil)
assert(string(content), Equals, "Home")
2016-06-10 17:01:17 -04:00
}
2017-05-17 18:39:30 -04:00
CloseAllServers(servers)
2016-06-10 17:01:17 -04:00
}
2017-10-26 15:44:13 -04:00
2017-10-28 08:25:22 -04:00
func setProxyBasicAuth(req *http.Request, user, pass string) {
req.SetBasicAuth(user, pass)
req.Header.Set("Proxy-Authorization", req.Header.Get("Authorization"))
req.Header.Del("Authorization")
}
2017-10-26 15:44:13 -04:00
func TestHttpBasicAuth(t *testing.T) {
assert := With(t)
httpServerPort := pickPort()
httpServer := &v2httptest.Server{
Port: httpServerPort,
PathHandler: make(map[string]http.HandlerFunc),
}
_, err := httpServer.Start()
assert(err, IsNil)
defer httpServer.Close()
serverPort := pickPort()
serverConfig := &core.Config{
Inbound: []*proxyman.InboundHandlerConfig{
{
ReceiverSettings: serial.ToTypedMessage(&proxyman.ReceiverConfig{
PortRange: net.SinglePortRange(serverPort),
Listen: net.NewIPOrDomain(net.LocalHostIP),
}),
ProxySettings: serial.ToTypedMessage(&v2http.ServerConfig{
Accounts: map[string]string{
"a": "b",
},
}),
},
},
Outbound: []*proxyman.OutboundHandlerConfig{
{
ProxySettings: serial.ToTypedMessage(&freedom.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:" + httpServerPort.String())
assert(err, IsNil)
assert(resp.StatusCode, Equals, 401)
}
{
req, err := http.NewRequest("GET", "http://127.0.0.1:"+httpServerPort.String(), nil)
assert(err, IsNil)
2017-10-28 08:25:22 -04:00
setProxyBasicAuth(req, "a", "c")
2017-10-26 15:44:13 -04:00
resp, err := client.Do(req)
assert(err, IsNil)
assert(resp.StatusCode, Equals, 401)
}
{
req, err := http.NewRequest("GET", "http://127.0.0.1:"+httpServerPort.String(), nil)
assert(err, IsNil)
2017-10-28 08:25:22 -04:00
setProxyBasicAuth(req, "a", "b")
2017-10-26 15:44:13 -04:00
resp, err := client.Do(req)
assert(err, IsNil)
assert(resp.StatusCode, Equals, 200)
content, err := ioutil.ReadAll(resp.Body)
assert(err, IsNil)
assert(string(content), Equals, "Home")
}
}
CloseAllServers(servers)
}