2020-11-25 13:01:53 +02:00
|
|
|
package conf_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2020-12-04 03:36:16 +02:00
|
|
|
"github.com/xtls/xray-core/app/reverse"
|
|
|
|
"github.com/xtls/xray-core/infra/conf"
|
2020-11-25 13:01:53 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
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"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|