mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-01 16:57:46 -04:00
46 lines
785 B
Go
46 lines
785 B
Go
|
package conf_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"v2ray.com/core/app/reverse"
|
||
|
"v2ray.com/core/infra/conf"
|
||
|
)
|
||
|
|
||
|
func TestReverseConfig(t *testing.T) {
|
||
|
creator := func() conf.Buildable {
|
||
|
return new(conf.ReverseConfig)
|
||
|
}
|
||
|
|
||
|
runMultiTestCase(t, []TestCase{
|
||
|
{
|
||
|
Input: `{
|
||
|
"bridges": [{
|
||
|
"tag": "test",
|
||
|
"domain": "test.v2ray.com"
|
||
|
}]
|
||
|
}`,
|
||
|
Parser: loadJSON(creator),
|
||
|
Output: &reverse.Config{
|
||
|
BridgeConfig: []*reverse.BridgeConfig{
|
||
|
{Tag: "test", Domain: "test.v2ray.com"},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
Input: `{
|
||
|
"portals": [{
|
||
|
"tag": "test",
|
||
|
"domain": "test.v2ray.com"
|
||
|
}]
|
||
|
}`,
|
||
|
Parser: loadJSON(creator),
|
||
|
Output: &reverse.Config{
|
||
|
PortalConfig: []*reverse.PortalConfig{
|
||
|
{Tag: "test", Domain: "test.v2ray.com"},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
})
|
||
|
}
|