mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-17 18:06:15 -05:00
74 lines
1.7 KiB
Go
74 lines
1.7 KiB
Go
package scenarios
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"net/http"
|
|
"net/url"
|
|
"testing"
|
|
|
|
"v2ray.com/core"
|
|
"v2ray.com/core/app/proxyman"
|
|
v2net "v2ray.com/core/common/net"
|
|
"v2ray.com/core/common/serial"
|
|
"v2ray.com/core/proxy/freedom"
|
|
v2http "v2ray.com/core/proxy/http"
|
|
"v2ray.com/core/testing/assert"
|
|
v2httptest "v2ray.com/core/testing/servers/http"
|
|
)
|
|
|
|
func TestHttpConformance(t *testing.T) {
|
|
assert := assert.On(t)
|
|
|
|
httpServerPort := pickPort()
|
|
httpServer := &v2httptest.Server{
|
|
Port: httpServerPort,
|
|
PathHandler: make(map[string]http.HandlerFunc),
|
|
}
|
|
_, err := httpServer.Start()
|
|
assert.Error(err).IsNil()
|
|
defer httpServer.Close()
|
|
|
|
serverPort := pickPort()
|
|
serverConfig := &core.Config{
|
|
Inbound: []*proxyman.InboundHandlerConfig{
|
|
{
|
|
ReceiverSettings: serial.ToTypedMessage(&proxyman.ReceiverConfig{
|
|
PortRange: v2net.SinglePortRange(serverPort),
|
|
Listen: v2net.NewIPOrDomain(v2net.LocalHostIP),
|
|
}),
|
|
ProxySettings: serial.ToTypedMessage(&v2http.ServerConfig{}),
|
|
},
|
|
},
|
|
Outbound: []*proxyman.OutboundHandlerConfig{
|
|
{
|
|
ProxySettings: serial.ToTypedMessage(&freedom.Config{}),
|
|
},
|
|
},
|
|
}
|
|
|
|
assert.Error(InitializeServerConfig(serverConfig)).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.Error(err).IsNil()
|
|
assert.Int(resp.StatusCode).Equals(200)
|
|
|
|
content, err := ioutil.ReadAll(resp.Body)
|
|
assert.Error(err).IsNil()
|
|
assert.String(string(content)).Equals("Home")
|
|
|
|
}
|
|
|
|
CloseAllServers()
|
|
}
|