2015-09-19 15:56:09 -04:00
|
|
|
package vmess
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"testing"
|
|
|
|
|
2015-10-14 08:56:11 -04:00
|
|
|
"github.com/v2ray/v2ray-core/app/point"
|
2015-10-08 08:46:18 -04:00
|
|
|
"github.com/v2ray/v2ray-core/common/alloc"
|
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-10-29 19:11:29 -04:00
|
|
|
"github.com/v2ray/v2ray-core/proxy/common/connhandler"
|
2015-11-01 15:15:08 -05:00
|
|
|
proxymocks "github.com/v2ray/v2ray-core/proxy/testing/mocks"
|
2015-10-16 06:03:22 -04:00
|
|
|
"github.com/v2ray/v2ray-core/proxy/vmess/config"
|
|
|
|
"github.com/v2ray/v2ray-core/proxy/vmess/config/json"
|
2015-09-19 15:56:09 -04:00
|
|
|
"github.com/v2ray/v2ray-core/testing/mocks"
|
|
|
|
"github.com/v2ray/v2ray-core/testing/unit"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestVMessInAndOut(t *testing.T) {
|
|
|
|
assert := unit.Assert(t)
|
|
|
|
|
2015-10-16 06:03:22 -04:00
|
|
|
testAccount, err := config.NewID("ad937d9d-6e23-4a5a-ba23-bce5092a7c51")
|
|
|
|
assert.Error(err).IsNil()
|
2015-09-19 15:56:09 -04:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2015-10-29 19:11:29 -04:00
|
|
|
connhandler.RegisterInboundConnectionHandlerFactory("mock_ich", ich)
|
2015-09-19 15:56:09 -04:00
|
|
|
|
|
|
|
configA := mocks.Config{
|
|
|
|
PortValue: portA,
|
|
|
|
InboundConfigValue: &mocks.ConnectionConfig{
|
|
|
|
ProtocolValue: "mock_ich",
|
2015-10-06 17:11:08 -04:00
|
|
|
SettingsValue: nil,
|
2015-09-19 15:56:09 -04:00
|
|
|
},
|
|
|
|
OutboundConfigValue: &mocks.ConnectionConfig{
|
|
|
|
ProtocolValue: "vmess",
|
2015-10-16 06:03:22 -04:00
|
|
|
SettingsValue: &json.Outbound{
|
|
|
|
[]*json.ConfigTarget{
|
|
|
|
&json.ConfigTarget{
|
2015-11-01 15:32:08 -05:00
|
|
|
Address: v2net.IPAddress([]byte{127, 0, 0, 1}, portB),
|
2015-10-16 06:03:22 -04:00
|
|
|
TCPEnabled: true,
|
|
|
|
Users: []*json.ConfigUser{
|
|
|
|
&json.ConfigUser{Id: testAccount},
|
2015-10-06 17:11:08 -04:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2015-09-19 15:56:09 -04:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-10-14 08:56:11 -04: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
|
|
|
}
|
|
|
|
|
2015-10-29 19:11:29 -04:00
|
|
|
connhandler.RegisterOutboundConnectionHandlerFactory("mock_och", och)
|
2015-09-19 15:56:09 -04:00
|
|
|
|
|
|
|
configB := mocks.Config{
|
|
|
|
PortValue: portB,
|
|
|
|
InboundConfigValue: &mocks.ConnectionConfig{
|
|
|
|
ProtocolValue: "vmess",
|
2015-10-16 06:03:22 -04:00
|
|
|
SettingsValue: &json.Inbound{
|
|
|
|
AllowedClients: []*json.ConfigUser{
|
|
|
|
&json.ConfigUser{Id: testAccount},
|
2015-10-06 17:11:08 -04:00
|
|
|
},
|
|
|
|
},
|
2015-09-19 15:56:09 -04:00
|
|
|
},
|
|
|
|
OutboundConfigValue: &mocks.ConnectionConfig{
|
|
|
|
ProtocolValue: "mock_och",
|
2015-10-06 17:11:08 -04:00
|
|
|
SettingsValue: nil,
|
2015-09-19 15:56:09 -04:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-10-14 08:56:11 -04: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-09-20 12:22:29 -04:00
|
|
|
dest := v2net.NewTCPDestination(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
|
|
|
}
|
2015-10-03 05:34:01 -04:00
|
|
|
|
|
|
|
func TestVMessInAndOutUDP(t *testing.T) {
|
|
|
|
assert := unit.Assert(t)
|
|
|
|
|
|
|
|
data2Send := "The data to be send to outbound server."
|
2015-10-16 06:03:22 -04:00
|
|
|
testAccount, err := config.NewID("ad937d9d-6e23-4a5a-ba23-bce5092a7c51")
|
|
|
|
assert.Error(err).IsNil()
|
2015-10-03 05:34:01 -04:00
|
|
|
|
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-10-03 05:34:01 -04:00
|
|
|
}
|
|
|
|
|
2015-10-29 19:11:29 -04:00
|
|
|
connhandler.RegisterInboundConnectionHandlerFactory("mock_ich", ich)
|
2015-10-03 05:34:01 -04:00
|
|
|
|
|
|
|
configA := mocks.Config{
|
|
|
|
PortValue: portA,
|
|
|
|
InboundConfigValue: &mocks.ConnectionConfig{
|
|
|
|
ProtocolValue: "mock_ich",
|
2015-10-06 17:11:08 -04:00
|
|
|
SettingsValue: nil,
|
2015-10-03 05:34:01 -04:00
|
|
|
},
|
|
|
|
OutboundConfigValue: &mocks.ConnectionConfig{
|
|
|
|
ProtocolValue: "vmess",
|
2015-10-16 06:03:22 -04:00
|
|
|
SettingsValue: &json.Outbound{
|
|
|
|
[]*json.ConfigTarget{
|
|
|
|
&json.ConfigTarget{
|
2015-11-01 15:32:08 -05:00
|
|
|
Address: v2net.IPAddress([]byte{127, 0, 0, 1}, portB),
|
2015-10-16 06:03:22 -04:00
|
|
|
UDPEnabled: true,
|
|
|
|
Users: []*json.ConfigUser{
|
|
|
|
&json.ConfigUser{Id: testAccount},
|
2015-10-06 17:11:08 -04:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2015-10-03 05:34:01 -04:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-10-14 08:56:11 -04:00
|
|
|
pointA, err := point.NewPoint(&configA)
|
2015-10-03 05:34:01 -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-10-03 05:34:01 -04:00
|
|
|
}
|
|
|
|
|
2015-10-29 19:11:29 -04:00
|
|
|
connhandler.RegisterOutboundConnectionHandlerFactory("mock_och", och)
|
2015-10-03 05:34:01 -04:00
|
|
|
|
|
|
|
configB := mocks.Config{
|
|
|
|
PortValue: portB,
|
|
|
|
InboundConfigValue: &mocks.ConnectionConfig{
|
|
|
|
ProtocolValue: "vmess",
|
2015-10-16 06:03:22 -04:00
|
|
|
SettingsValue: &json.Inbound{
|
|
|
|
AllowedClients: []*json.ConfigUser{
|
|
|
|
&json.ConfigUser{Id: testAccount},
|
2015-10-06 17:11:08 -04:00
|
|
|
},
|
2015-10-16 06:03:22 -04:00
|
|
|
UDP: true,
|
2015-10-06 17:11:08 -04:00
|
|
|
},
|
2015-10-03 05:34:01 -04:00
|
|
|
},
|
|
|
|
OutboundConfigValue: &mocks.ConnectionConfig{
|
|
|
|
ProtocolValue: "mock_och",
|
2015-10-06 17:11:08 -04:00
|
|
|
SettingsValue: nil,
|
2015-10-03 05:34:01 -04:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-10-14 08:56:11 -04:00
|
|
|
pointB, err := point.NewPoint(&configB)
|
2015-10-03 05:34:01 -04:00
|
|
|
assert.Error(err).IsNil()
|
|
|
|
|
|
|
|
err = pointB.Start()
|
|
|
|
assert.Error(err).IsNil()
|
|
|
|
|
2015-10-08 08:46:18 -04:00
|
|
|
data2SendBuffer := alloc.NewBuffer()
|
|
|
|
data2SendBuffer.Clear()
|
|
|
|
data2SendBuffer.Append([]byte(data2Send))
|
2015-10-03 05:34:01 -04:00
|
|
|
dest := v2net.NewUDPDestination(v2net.IPAddress([]byte{1, 2, 3, 4}, 80))
|
2015-10-08 08:46:18 -04:00
|
|
|
ich.Communicate(v2net.NewPacket(dest, data2SendBuffer, false))
|
2015-11-01 15:15:08 -05:00
|
|
|
|
|
|
|
assert.Bytes(ichConnInput).Equals(ochConnOutput.Bytes())
|
|
|
|
assert.Bytes(ichConnOutput.Bytes()).Equals(ochConnInput)
|
2015-10-03 05:34:01 -04:00
|
|
|
}
|