mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-10 14:26:26 -05:00
46 lines
1.0 KiB
Go
46 lines
1.0 KiB
Go
package v4_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/common/net"
|
|
"github.com/v2fly/v2ray-core/v5/common/protocol"
|
|
"github.com/v2fly/v2ray-core/v5/infra/conf/cfgcommon"
|
|
"github.com/v2fly/v2ray-core/v5/infra/conf/cfgcommon/testassist"
|
|
v4 "github.com/v2fly/v2ray-core/v5/infra/conf/v4"
|
|
"github.com/v2fly/v2ray-core/v5/proxy/freedom"
|
|
)
|
|
|
|
func TestFreedomConfig(t *testing.T) {
|
|
creator := func() cfgcommon.Buildable {
|
|
return new(v4.FreedomConfig)
|
|
}
|
|
|
|
testassist.RunMultiTestCase(t, []testassist.TestCase{
|
|
{
|
|
Input: `{
|
|
"domainStrategy": "AsIs",
|
|
"timeout": 10,
|
|
"redirect": "127.0.0.1:3366",
|
|
"userLevel": 1
|
|
}`,
|
|
Parser: testassist.LoadJSON(creator),
|
|
Output: &freedom.Config{
|
|
DomainStrategy: freedom.Config_AS_IS,
|
|
Timeout: 10,
|
|
DestinationOverride: &freedom.DestinationOverride{
|
|
Server: &protocol.ServerEndpoint{
|
|
Address: &net.IPOrDomain{
|
|
Address: &net.IPOrDomain_Ip{
|
|
Ip: []byte{127, 0, 0, 1},
|
|
},
|
|
},
|
|
Port: 3366,
|
|
},
|
|
},
|
|
UserLevel: 1,
|
|
},
|
|
},
|
|
})
|
|
}
|