| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- // +build json
- package core_test
- import (
- "encoding/json"
- "io"
- "os"
- "path/filepath"
- "testing"
- . "v2ray.com/core"
- "v2ray.com/core/testing/assert"
- )
- func OpenFile(file string, assert *assert.Assert) io.Reader {
- input, err := os.Open(file)
- assert.Error(err).IsNil()
- return input
- }
- func TestClientSampleConfig(t *testing.T) {
- assert := assert.On(t)
- GOPATH := os.Getenv("GOPATH")
- baseDir := filepath.Join(GOPATH, "src", "v2ray.com", "core", "tools", "release", "config")
- pointConfig, err := LoadConfig(OpenFile(filepath.Join(baseDir, "vpoint_socks_vmess.json"), assert))
- assert.Error(err).IsNil()
- assert.Pointer(pointConfig.InboundConfig).IsNotNil()
- assert.Port(pointConfig.InboundConfig.Port).IsValid()
- assert.Pointer(pointConfig.OutboundConfig).IsNotNil()
- assert.String(pointConfig.InboundConfig.Protocol).Equals("socks")
- assert.Pointer(pointConfig.InboundConfig.Settings).IsNotNil()
- assert.String(pointConfig.OutboundConfig.Protocol).Equals("vmess")
- assert.Pointer(pointConfig.OutboundConfig.Settings).IsNotNil()
- }
- func TestServerSampleConfig(t *testing.T) {
- assert := assert.On(t)
- GOPATH := os.Getenv("GOPATH")
- baseDir := filepath.Join(GOPATH, "src", "v2ray.com", "core", "tools", "release", "config")
- pointConfig, err := LoadConfig(OpenFile(filepath.Join(baseDir, "vpoint_vmess_freedom.json"), assert))
- assert.Error(err).IsNil()
- assert.Pointer(pointConfig.InboundConfig).IsNotNil()
- assert.Port(pointConfig.InboundConfig.Port).IsValid()
- assert.Pointer(pointConfig.OutboundConfig).IsNotNil()
- assert.String(pointConfig.InboundConfig.Protocol).Equals("vmess")
- assert.Pointer(pointConfig.InboundConfig.Settings).IsNotNil()
- assert.String(pointConfig.OutboundConfig.Protocol).Equals("freedom")
- assert.Pointer(pointConfig.OutboundConfig.Settings).IsNotNil()
- }
- func TestDefaultValueOfRandomAllocation(t *testing.T) {
- assert := assert.On(t)
- rawJson := `{
- "protocol": "vmess",
- "port": 1,
- "settings": {},
- "allocate": {
- "strategy": "random"
- }
- }`
- inboundDetourConfig := new(InboundDetourConfig)
- err := json.Unmarshal([]byte(rawJson), inboundDetourConfig)
- assert.Error(err).IsNil()
- assert.String(inboundDetourConfig.Allocation.Strategy).Equals(AllocationStrategyRandom)
- assert.Int(inboundDetourConfig.Allocation.Concurrency).Equals(3)
- assert.Int(inboundDetourConfig.Allocation.Refresh).Equals(5)
- }
|