| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 | // +build jsonpackage point_testimport (	"encoding/json"	"io"	"os"	"path/filepath"	"testing"	_ "v2ray.com/core/app/router/rules"	. "v2ray.com/core/shell/point"	"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)}
 |