1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-06-07 11:39:11 -04:00

Test case for inbound detour network

This commit is contained in:
V2Ray
2015-11-01 23:01:15 +01:00
parent 1c6b66eacf
commit 1cec5ac643
5 changed files with 112 additions and 9 deletions

View File

@@ -8,9 +8,9 @@ import (
)
type InboundDetourConfig struct {
ProtocolValue string
PortRangeValue *PortRange
SettingsValue json.RawMessage
ProtocolValue string `json:"protocol"`
PortRangeValue *PortRange `json:"port"`
SettingsValue json.RawMessage `json:"settings"`
}
func (this *InboundDetourConfig) Protocol() string {

View File

@@ -5,6 +5,7 @@ import (
"testing"
"github.com/v2ray/v2ray-core/app/point/config/json"
_ "github.com/v2ray/v2ray-core/proxy/dokodemo/config/json"
_ "github.com/v2ray/v2ray-core/proxy/freedom/config/json"
_ "github.com/v2ray/v2ray-core/proxy/socks/config/json"
_ "github.com/v2ray/v2ray-core/proxy/vmess/config/json"
@@ -51,3 +52,22 @@ func TestServerSampleConfig(t *testing.T) {
assert.String(pointConfig.OutboundConfig().Protocol()).Equals("freedom")
assert.Pointer(pointConfig.OutboundConfig().Settings()).IsNotNil()
}
func TestDetourConfig(t *testing.T) {
assert := unit.Assert(t)
// TODO: fix for Windows
baseDir := "$GOPATH/src/github.com/v2ray/v2ray-core/release/config"
pointConfig, err := json.LoadConfig(filepath.Join(baseDir, "vpoint_dns_detour.json"))
assert.Error(err).IsNil()
detours := pointConfig.InboundDetours()
assert.Int(len(detours)).Equals(1)
detour := detours[0]
assert.String(detour.Protocol()).Equals("dokodemo-door")
assert.Uint16(detour.PortRange().From()).Equals(uint16(53))
assert.Uint16(detour.PortRange().To()).Equals(uint16(53))
assert.Pointer(detour.Settings()).IsNotNil()
}