| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- package v4_test
- import (
- "github.com/v2fly/v2ray-core/v4/infra/conf/cfgcommon"
- "github.com/v2fly/v2ray-core/v4/infra/conf/cfgcommon/testassist"
- "github.com/v2fly/v2ray-core/v4/infra/conf/v4"
- "testing"
- "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/proxy/socks"
- )
- func TestSocksInboundConfig(t *testing.T) {
- creator := func() cfgcommon.Buildable {
- return new(v4.SocksServerConfig)
- }
- testassist.RunMultiTestCase(t, []testassist.TestCase{
- {
- Input: `{
- "auth": "password",
- "accounts": [
- {
- "user": "my-username",
- "pass": "my-password"
- }
- ],
- "udp": false,
- "ip": "127.0.0.1",
- "timeout": 5,
- "userLevel": 1
- }`,
- Parser: testassist.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() cfgcommon.Buildable {
- return new(v4.SocksClientConfig)
- }
- testassist.RunMultiTestCase(t, []testassist.TestCase{
- {
- Input: `{
- "servers": [{
- "address": "127.0.0.1",
- "port": 1234,
- "users": [
- {"user": "test user", "pass": "test pass", "email": "test@email.com"}
- ]
- }]
- }`,
- Parser: testassist.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",
- }),
- },
- },
- },
- },
- },
- },
- })
- }
|