2015-12-07 14:32:38 -05:00
|
|
|
package vmess_test
|
2015-09-19 15:56:09 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"testing"
|
|
|
|
|
2016-01-01 17:44:11 -05:00
|
|
|
"github.com/v2ray/v2ray-core/app"
|
2015-09-19 17:54:36 -04:00
|
|
|
v2net "github.com/v2ray/v2ray-core/common/net"
|
2015-11-01 15:32:08 -05:00
|
|
|
v2nettesting "github.com/v2ray/v2ray-core/common/net/testing"
|
2015-12-12 15:40:16 -05:00
|
|
|
"github.com/v2ray/v2ray-core/common/uuid"
|
2016-01-02 17:32:18 -05:00
|
|
|
"github.com/v2ray/v2ray-core/proxy"
|
2016-01-01 17:44:11 -05:00
|
|
|
proxytesting "github.com/v2ray/v2ray-core/proxy/testing"
|
2015-11-01 15:15:08 -05:00
|
|
|
proxymocks "github.com/v2ray/v2ray-core/proxy/testing/mocks"
|
2015-12-07 14:32:38 -05:00
|
|
|
vmess "github.com/v2ray/v2ray-core/proxy/vmess"
|
|
|
|
_ "github.com/v2ray/v2ray-core/proxy/vmess/inbound"
|
|
|
|
_ "github.com/v2ray/v2ray-core/proxy/vmess/outbound"
|
2015-11-29 08:45:32 -05:00
|
|
|
"github.com/v2ray/v2ray-core/shell/point"
|
2015-12-02 09:27:18 -05:00
|
|
|
v2testing "github.com/v2ray/v2ray-core/testing"
|
|
|
|
"github.com/v2ray/v2ray-core/testing/assert"
|
2015-09-19 15:56:09 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestVMessInAndOut(t *testing.T) {
|
2015-12-02 09:27:18 -05:00
|
|
|
v2testing.Current(t)
|
2015-09-19 15:56:09 -04:00
|
|
|
|
2015-12-12 15:40:16 -05:00
|
|
|
id, err := uuid.ParseString("ad937d9d-6e23-4a5a-ba23-bce5092a7c51")
|
2015-10-16 06:03:22 -04:00
|
|
|
assert.Error(err).IsNil()
|
2015-09-19 15:56:09 -04:00
|
|
|
|
2015-12-12 15:40:16 -05:00
|
|
|
testAccount := vmess.NewID(id)
|
|
|
|
|
2015-11-01 15:32:08 -05:00
|
|
|
portA := v2nettesting.PickPort()
|
|
|
|
portB := v2nettesting.PickPort()
|
|
|
|
|
2015-11-01 15:15:08 -05:00
|
|
|
ichConnInput := []byte("The data to be send to outbound server.")
|
|
|
|
ichConnOutput := bytes.NewBuffer(make([]byte, 0, 1024))
|
|
|
|
ich := &proxymocks.InboundConnectionHandler{
|
|
|
|
ConnInput: bytes.NewReader(ichConnInput),
|
|
|
|
ConnOutput: ichConnOutput,
|
2015-09-19 15:56:09 -04:00
|
|
|
}
|
|
|
|
|
2016-01-02 17:32:18 -05:00
|
|
|
protocol, err := proxytesting.RegisterInboundConnectionHandlerCreator("mock_och", func(space app.Space, config interface{}) (proxy.InboundConnectionHandler, error) {
|
2016-01-01 17:44:11 -05:00
|
|
|
ich.Space = space
|
|
|
|
return ich, nil
|
|
|
|
})
|
|
|
|
assert.Error(err).IsNil()
|
2015-09-19 15:56:09 -04:00
|
|
|
|
2016-01-17 15:43:10 -05:00
|
|
|
configA := &point.Config{
|
|
|
|
Port: portA,
|
|
|
|
InboundConfig: &point.ConnectionConfig{
|
|
|
|
Protocol: protocol,
|
|
|
|
Settings: nil,
|
2015-09-19 15:56:09 -04:00
|
|
|
},
|
2016-01-17 15:43:10 -05:00
|
|
|
OutboundConfig: &point.ConnectionConfig{
|
|
|
|
Protocol: "vmess",
|
|
|
|
Settings: []byte(`{
|
2016-01-02 11:40:51 -05:00
|
|
|
"vnext": [
|
|
|
|
{
|
|
|
|
"address": "127.0.0.1",
|
|
|
|
"port": ` + portB.String() + `,
|
|
|
|
"users": [
|
|
|
|
{"id": "` + testAccount.String() + `"}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}`),
|
2015-09-19 15:56:09 -04:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2016-01-17 15:43:10 -05:00
|
|
|
pointA, err := point.NewPoint(configA)
|
2015-09-19 15:56:09 -04:00
|
|
|
assert.Error(err).IsNil()
|
|
|
|
|
|
|
|
err = pointA.Start()
|
|
|
|
assert.Error(err).IsNil()
|
|
|
|
|
2015-11-01 15:15:08 -05:00
|
|
|
ochConnInput := []byte("The data to be returned to inbound server.")
|
|
|
|
ochConnOutput := bytes.NewBuffer(make([]byte, 0, 1024))
|
|
|
|
och := &proxymocks.OutboundConnectionHandler{
|
|
|
|
ConnInput: bytes.NewReader(ochConnInput),
|
|
|
|
ConnOutput: ochConnOutput,
|
2015-09-19 15:56:09 -04:00
|
|
|
}
|
|
|
|
|
2016-01-02 17:32:18 -05:00
|
|
|
protocol, err = proxytesting.RegisterOutboundConnectionHandlerCreator("mock_och", func(space app.Space, config interface{}) (proxy.OutboundConnectionHandler, error) {
|
2016-01-01 17:44:11 -05:00
|
|
|
return och, nil
|
|
|
|
})
|
|
|
|
assert.Error(err).IsNil()
|
2015-09-19 15:56:09 -04:00
|
|
|
|
2016-01-17 15:43:10 -05:00
|
|
|
configB := &point.Config{
|
|
|
|
Port: portB,
|
|
|
|
InboundConfig: &point.ConnectionConfig{
|
|
|
|
Protocol: "vmess",
|
|
|
|
Settings: []byte(`{
|
2016-01-02 11:40:51 -05:00
|
|
|
"clients": [
|
|
|
|
{"id": "` + testAccount.String() + `"}
|
|
|
|
]
|
|
|
|
}`),
|
2015-09-19 15:56:09 -04:00
|
|
|
},
|
2016-01-17 15:43:10 -05:00
|
|
|
OutboundConfig: &point.ConnectionConfig{
|
|
|
|
Protocol: protocol,
|
|
|
|
Settings: nil,
|
2015-09-19 15:56:09 -04:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2016-01-17 15:43:10 -05:00
|
|
|
pointB, err := point.NewPoint(configB)
|
2015-09-19 15:56:09 -04:00
|
|
|
assert.Error(err).IsNil()
|
|
|
|
|
|
|
|
err = pointB.Start()
|
|
|
|
assert.Error(err).IsNil()
|
|
|
|
|
2015-12-16 17:53:38 -05:00
|
|
|
dest := v2net.TCPDestination(v2net.IPAddress([]byte{1, 2, 3, 4}), 80)
|
2015-10-02 09:32:26 -04:00
|
|
|
ich.Communicate(v2net.NewPacket(dest, nil, true))
|
2015-11-01 15:15:08 -05:00
|
|
|
assert.Bytes(ichConnInput).Equals(ochConnOutput.Bytes())
|
|
|
|
assert.Bytes(ichConnOutput.Bytes()).Equals(ochConnInput)
|
2015-09-19 15:56:09 -04:00
|
|
|
}
|