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/shadowsocks"
|
2019-02-10 13:04:11 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestShadowsocksServerConfigParsing(t *testing.T) {
|
|
|
|
creator := func() Buildable {
|
|
|
|
return new(ShadowsocksServerConfig)
|
|
|
|
}
|
|
|
|
|
|
|
|
runMultiTestCase(t, []TestCase{
|
|
|
|
{
|
|
|
|
Input: `{
|
2020-12-31 21:18:00 -05:00
|
|
|
"method": "aes-256-GCM",
|
2019-02-10 13:04:11 -05:00
|
|
|
"password": "v2ray-password"
|
|
|
|
}`,
|
|
|
|
Parser: loadJSON(creator),
|
|
|
|
Output: &shadowsocks.ServerConfig{
|
|
|
|
User: &protocol.User{
|
|
|
|
Account: serial.ToTypedMessage(&shadowsocks.Account{
|
2020-12-31 21:18:00 -05:00
|
|
|
CipherType: shadowsocks.CipherType_AES_256_GCM,
|
2019-02-10 13:04:11 -05:00
|
|
|
Password: "v2ray-password",
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
Network: []net.Network{net.Network_TCP},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|