2020-11-25 13:01:53 +02:00
|
|
|
package conf_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2020-12-04 03:36:16 +02:00
|
|
|
"github.com/xtls/xray-core/common/net"
|
|
|
|
. "github.com/xtls/xray-core/infra/conf"
|
|
|
|
"github.com/xtls/xray-core/proxy/dokodemo"
|
2020-11-25 13:01:53 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestDokodemoConfig(t *testing.T) {
|
|
|
|
creator := func() Buildable {
|
|
|
|
return new(DokodemoConfig)
|
|
|
|
}
|
|
|
|
|
|
|
|
runMultiTestCase(t, []TestCase{
|
|
|
|
{
|
|
|
|
Input: `{
|
|
|
|
"address": "8.8.8.8",
|
|
|
|
"port": 53,
|
|
|
|
"network": "tcp",
|
|
|
|
"timeout": 10,
|
|
|
|
"followRedirect": true,
|
|
|
|
"userLevel": 1
|
|
|
|
}`,
|
|
|
|
Parser: loadJSON(creator),
|
|
|
|
Output: &dokodemo.Config{
|
|
|
|
Address: &net.IPOrDomain{
|
|
|
|
Address: &net.IPOrDomain_Ip{
|
|
|
|
Ip: []byte{8, 8, 8, 8},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Port: 53,
|
|
|
|
Networks: []net.Network{net.Network_TCP},
|
|
|
|
Timeout: 10,
|
|
|
|
FollowRedirect: true,
|
|
|
|
UserLevel: 1,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|