mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-02 23:47:07 -05:00
test case for allocation config
This commit is contained in:
parent
b18693a9c4
commit
be57f48bb3
@ -129,7 +129,7 @@ func (this *InboundDetourConfig) UnmarshalJSON(data []byte) error {
|
||||
}
|
||||
}
|
||||
if this.Allocation.Strategy == AllocationStrategyRandom {
|
||||
if this.Allocation.Refresh == 0 {
|
||||
if this.Allocation.Refresh == DefaultRefreshMinute {
|
||||
this.Allocation.Refresh = 5
|
||||
}
|
||||
if this.Allocation.Concurrency == 0 {
|
||||
|
@ -3,16 +3,13 @@
|
||||
package point_test
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"testing"
|
||||
|
||||
_ "github.com/v2ray/v2ray-core/app/router/rules"
|
||||
netassert "github.com/v2ray/v2ray-core/common/net/testing/assert"
|
||||
_ "github.com/v2ray/v2ray-core/proxy/dokodemo"
|
||||
_ "github.com/v2ray/v2ray-core/proxy/freedom"
|
||||
_ "github.com/v2ray/v2ray-core/proxy/socks"
|
||||
_ "github.com/v2ray/v2ray-core/proxy/vmess/inbound"
|
||||
_ "github.com/v2ray/v2ray-core/proxy/vmess/outbound"
|
||||
. "github.com/v2ray/v2ray-core/shell/point"
|
||||
|
||||
v2testing "github.com/v2ray/v2ray-core/testing"
|
||||
@ -22,8 +19,8 @@ import (
|
||||
func TestClientSampleConfig(t *testing.T) {
|
||||
v2testing.Current(t)
|
||||
|
||||
// TODO: fix for Windows
|
||||
baseDir := "$GOPATH/src/github.com/v2ray/v2ray-core/release/config"
|
||||
GOPATH := os.Getenv("GOPATH")
|
||||
baseDir := filepath.Join(GOPATH, "src", "github.com", "v2ray", "v2ray-core", "release", "config")
|
||||
|
||||
pointConfig, err := LoadConfig(filepath.Join(baseDir, "vpoint_socks_vmess.json"))
|
||||
assert.Error(err).IsNil()
|
||||
@ -42,8 +39,8 @@ func TestClientSampleConfig(t *testing.T) {
|
||||
func TestServerSampleConfig(t *testing.T) {
|
||||
v2testing.Current(t)
|
||||
|
||||
// TODO: fix for Windows
|
||||
baseDir := "$GOPATH/src/github.com/v2ray/v2ray-core/release/config"
|
||||
GOPATH := os.Getenv("GOPATH")
|
||||
baseDir := filepath.Join(GOPATH, "src", "github.com", "v2ray", "v2ray-core", "release", "config")
|
||||
|
||||
pointConfig, err := LoadConfig(filepath.Join(baseDir, "vpoint_vmess_freedom.json"))
|
||||
assert.Error(err).IsNil()
|
||||
@ -58,3 +55,23 @@ func TestServerSampleConfig(t *testing.T) {
|
||||
assert.StringLiteral(pointConfig.OutboundConfig.Protocol).Equals("freedom")
|
||||
assert.Pointer(pointConfig.OutboundConfig.Settings).IsNotNil()
|
||||
}
|
||||
|
||||
func TestDefaultValueOfRandomAllocation(t *testing.T) {
|
||||
v2testing.Current(t)
|
||||
|
||||
rawJson := `{
|
||||
"protocol": "vmess",
|
||||
"port": 1,
|
||||
"settings": {},
|
||||
"allocate": {
|
||||
"strategy": "random"
|
||||
}
|
||||
}`
|
||||
|
||||
inboundDetourConfig := new(InboundDetourConfig)
|
||||
err := json.Unmarshal([]byte(rawJson), inboundDetourConfig)
|
||||
assert.Error(err).IsNil()
|
||||
assert.StringLiteral(inboundDetourConfig.Allocation.Strategy).Equals(AllocationStrategyRandom)
|
||||
assert.Int(inboundDetourConfig.Allocation.Concurrency).Equals(3)
|
||||
assert.Int(inboundDetourConfig.Allocation.Refresh).Equals(5)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user