1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-03 06:30:42 +00:00
v2fly/infra/conf/v4/shadowsocks_test.go

39 lines
1019 B
Go
Raw Normal View History

package v4_test
2019-02-10 18:04:11 +00:00
import (
2021-06-19 12:04:50 +00:00
"github.com/v2fly/v2ray-core/v4/infra/conf/cfgcommon"
2021-06-19 12:28:20 +00:00
"github.com/v2fly/v2ray-core/v4/infra/conf/cfgcommon/testassist"
"github.com/v2fly/v2ray-core/v4/infra/conf/v4"
2019-02-10 18:04:11 +00:00
"testing"
2021-02-16 20:31:50 +00: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/proxy/shadowsocks"
2019-02-10 18:04:11 +00:00
)
func TestShadowsocksServerConfigParsing(t *testing.T) {
2021-06-19 12:04:50 +00:00
creator := func() cfgcommon.Buildable {
return new(v4.ShadowsocksServerConfig)
2019-02-10 18:04:11 +00:00
}
2021-06-19 12:28:20 +00:00
testassist.RunMultiTestCase(t, []testassist.TestCase{
2019-02-10 18:04:11 +00:00
{
Input: `{
"method": "aes-256-GCM",
2019-02-10 18:04:11 +00:00
"password": "v2ray-password"
}`,
2021-06-19 12:28:20 +00:00
Parser: testassist.LoadJSON(creator),
2019-02-10 18:04:11 +00:00
Output: &shadowsocks.ServerConfig{
User: &protocol.User{
Account: serial.ToTypedMessage(&shadowsocks.Account{
CipherType: shadowsocks.CipherType_AES_256_GCM,
2019-02-10 18:04:11 +00:00
Password: "v2ray-password",
}),
},
Network: []net.Network{net.Network_TCP},
},
},
})
}