| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- package conf_test
- import (
- "testing"
- "github.com/xtls/xray-core/app/reverse"
- "github.com/xtls/xray-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.example.com"
- }]
- }`,
- Parser: loadJSON(creator),
- Output: &reverse.Config{
- BridgeConfig: []*reverse.BridgeConfig{
- {Tag: "test", Domain: "test.example.com"},
- },
- },
- },
- {
- Input: `{
- "portals": [{
- "tag": "test",
- "domain": "test.example.com"
- }]
- }`,
- Parser: loadJSON(creator),
- Output: &reverse.Config{
- PortalConfig: []*reverse.PortalConfig{
- {Tag: "test", Domain: "test.example.com"},
- },
- },
- },
- })
- }
|