2019-02-10 13:04:11 -05:00
|
|
|
package conf_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-02-16 15:31:50 -05:00
|
|
|
"github.com/v2fly/v2ray-core/v4/common/net"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/common/protocol"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/common/serial"
|
|
|
|
. "github.com/v2fly/v2ray-core/v4/infra/conf"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/proxy/socks"
|
2019-02-10 13:04:11 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestSocksInboundConfig(t *testing.T) {
|
|
|
|
creator := func() Buildable {
|
|
|
|
return new(SocksServerConfig)
|
|
|
|
}
|
|
|
|
|
|
|
|
runMultiTestCase(t, []TestCase{
|
|
|
|
{
|
|
|
|
Input: `{
|
|
|
|
"auth": "password",
|
|
|
|
"accounts": [
|
|
|
|
{
|
|
|
|
"user": "my-username",
|
|
|
|
"pass": "my-password"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"udp": false,
|
|
|
|
"ip": "127.0.0.1",
|
|
|
|
"timeout": 5,
|
|
|
|
"userLevel": 1
|
|
|
|
}`,
|
|
|
|
Parser: loadJSON(creator),
|
|
|
|
Output: &socks.ServerConfig{
|
|
|
|
AuthType: socks.AuthType_PASSWORD,
|
|
|
|
Accounts: map[string]string{
|
|
|
|
"my-username": "my-password",
|
|
|
|
},
|
|
|
|
UdpEnabled: false,
|
|
|
|
Address: &net.IPOrDomain{
|
|
|
|
Address: &net.IPOrDomain_Ip{
|
|
|
|
Ip: []byte{127, 0, 0, 1},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Timeout: 5,
|
|
|
|
UserLevel: 1,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSocksOutboundConfig(t *testing.T) {
|
|
|
|
creator := func() Buildable {
|
|
|
|
return new(SocksClientConfig)
|
|
|
|
}
|
|
|
|
|
|
|
|
runMultiTestCase(t, []TestCase{
|
|
|
|
{
|
|
|
|
Input: `{
|
|
|
|
"servers": [{
|
|
|
|
"address": "127.0.0.1",
|
|
|
|
"port": 1234,
|
|
|
|
"users": [
|
|
|
|
{"user": "test user", "pass": "test pass", "email": "test@email.com"}
|
|
|
|
]
|
|
|
|
}]
|
|
|
|
}`,
|
|
|
|
Parser: loadJSON(creator),
|
|
|
|
Output: &socks.ClientConfig{
|
|
|
|
Server: []*protocol.ServerEndpoint{
|
|
|
|
{
|
|
|
|
Address: &net.IPOrDomain{
|
|
|
|
Address: &net.IPOrDomain_Ip{
|
|
|
|
Ip: []byte{127, 0, 0, 1},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Port: 1234,
|
|
|
|
User: []*protocol.User{
|
|
|
|
{
|
|
|
|
Email: "test@email.com",
|
|
|
|
Account: serial.ToTypedMessage(&socks.Account{
|
|
|
|
Username: "test user",
|
|
|
|
Password: "test pass",
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|