1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-18 09:57:04 -04:00
v2fly/infra/conf/v4/reverse_test.go

48 lines
986 B
Go
Raw Normal View History

package v4_test
2019-02-10 13:04:11 -05:00
import (
2021-06-19 08:04:50 -04:00
"github.com/v2fly/v2ray-core/v4/infra/conf/cfgcommon"
2021-06-19 08:28:20 -04:00
"github.com/v2fly/v2ray-core/v4/infra/conf/cfgcommon/testassist"
"github.com/v2fly/v2ray-core/v4/infra/conf/v4"
2019-02-10 13:04:11 -05:00
"testing"
2021-02-16 15:31:50 -05:00
"github.com/v2fly/v2ray-core/v4/app/reverse"
2019-02-10 13:04:11 -05:00
)
func TestReverseConfig(t *testing.T) {
2021-06-19 08:04:50 -04:00
creator := func() cfgcommon.Buildable {
return new(v4.ReverseConfig)
2019-02-10 13:04:11 -05:00
}
2021-06-19 08:28:20 -04:00
testassist.RunMultiTestCase(t, []testassist.TestCase{
2019-02-10 13:04:11 -05:00
{
Input: `{
"bridges": [{
"tag": "test",
2021-02-16 15:31:50 -05:00
"domain": "test.v2fly.org"
2019-02-10 13:04:11 -05:00
}]
}`,
2021-06-19 08:28:20 -04:00
Parser: testassist.LoadJSON(creator),
2019-02-10 13:04:11 -05:00
Output: &reverse.Config{
BridgeConfig: []*reverse.BridgeConfig{
2021-02-16 15:31:50 -05:00
{Tag: "test", Domain: "test.v2fly.org"},
2019-02-10 13:04:11 -05:00
},
},
},
{
Input: `{
"portals": [{
"tag": "test",
2021-02-16 15:31:50 -05:00
"domain": "test.v2fly.org"
2019-02-10 13:04:11 -05:00
}]
}`,
2021-06-19 08:28:20 -04:00
Parser: testassist.LoadJSON(creator),
2019-02-10 13:04:11 -05:00
Output: &reverse.Config{
PortalConfig: []*reverse.PortalConfig{
2021-02-16 15:31:50 -05:00
{Tag: "test", Domain: "test.v2fly.org"},
2019-02-10 13:04:11 -05:00
},
},
},
})
}