12345678910111213141516171819202122232425262728293031323334353637383940 |
- package conf_test
- import (
- "testing"
- "github.com/xtls/xray-core/common/protocol"
- "github.com/xtls/xray-core/common/serial"
- . "github.com/xtls/xray-core/infra/conf"
- "github.com/xtls/xray-core/proxy/mtproto"
- )
- func TestMTProtoServerConfig(t *testing.T) {
- creator := func() Buildable {
- return new(MTProtoServerConfig)
- }
- runMultiTestCase(t, []TestCase{
- {
- Input: `{
- "users": [{
- "email": "[email protected]",
- "level": 1,
- "secret": "b0cbcef5a486d9636472ac27f8e11a9d"
- }]
- }`,
- Parser: loadJSON(creator),
- Output: &mtproto.ServerConfig{
- User: []*protocol.User{
- {
- Email: "[email protected]",
- Level: 1,
- Account: serial.ToTypedMessage(&mtproto.Account{
- Secret: []byte{176, 203, 206, 245, 164, 134, 217, 99, 100, 114, 172, 39, 248, 225, 26, 157},
- }),
- },
- },
- },
- },
- })
- }
|