mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
794 B
41 lines
794 B
package conf_test |
|
|
|
import ( |
|
"testing" |
|
|
|
"github.com/xtls/xray-core/common/net" |
|
. "github.com/xtls/xray-core/infra/conf" |
|
"github.com/xtls/xray-core/proxy/dokodemo" |
|
) |
|
|
|
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, |
|
}, |
|
}, |
|
}) |
|
}
|
|
|