1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-03 12:35:24 +00:00
v2fly/infra/conf/reverse_test.go

46 lines
817 B
Go
Raw Normal View History

2019-02-10 18:04:11 +00:00
package conf_test
import (
"testing"
2021-02-16 20:31:50 +00:00
"github.com/v2fly/v2ray-core/v4/app/reverse"
"github.com/v2fly/v2ray-core/v4/infra/conf"
2019-02-10 18:04:11 +00:00
)
func TestReverseConfig(t *testing.T) {
creator := func() conf.Buildable {
return new(conf.ReverseConfig)
}
runMultiTestCase(t, []TestCase{
{
Input: `{
"bridges": [{
"tag": "test",
2021-02-16 20:31:50 +00:00
"domain": "test.v2fly.org"
2019-02-10 18:04:11 +00:00
}]
}`,
Parser: loadJSON(creator),
Output: &reverse.Config{
BridgeConfig: []*reverse.BridgeConfig{
2021-02-16 20:31:50 +00:00
{Tag: "test", Domain: "test.v2fly.org"},
2019-02-10 18:04:11 +00:00
},
},
},
{
Input: `{
"portals": [{
"tag": "test",
2021-02-16 20:31:50 +00:00
"domain": "test.v2fly.org"
2019-02-10 18:04:11 +00:00
}]
}`,
Parser: loadJSON(creator),
Output: &reverse.Config{
PortalConfig: []*reverse.PortalConfig{
2021-02-16 20:31:50 +00:00
{Tag: "test", Domain: "test.v2fly.org"},
2019-02-10 18:04:11 +00:00
},
},
},
})
}