1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-19 18:36:10 -04:00
v2fly/app/point/config/json/json_test.go

54 lines
1.7 KiB
Go
Raw Normal View History

2015-10-06 17:11:08 -04:00
package json_test
2015-09-20 05:45:40 -04:00
import (
"path/filepath"
"testing"
2015-10-30 17:50:45 -04:00
"github.com/v2ray/v2ray-core/app/point/config/json"
2015-10-06 17:11:08 -04:00
_ "github.com/v2ray/v2ray-core/proxy/freedom/config/json"
_ "github.com/v2ray/v2ray-core/proxy/socks/config/json"
2015-10-16 06:03:22 -04:00
_ "github.com/v2ray/v2ray-core/proxy/vmess/config/json"
2015-10-06 17:11:08 -04:00
2015-09-20 05:45:40 -04:00
"github.com/v2ray/v2ray-core/testing/unit"
)
func TestClientSampleConfig(t *testing.T) {
assert := unit.Assert(t)
// TODO: fix for Windows
baseDir := "$GOPATH/src/github.com/v2ray/v2ray-core/release/config"
2015-10-06 17:11:08 -04:00
pointConfig, err := json.LoadConfig(filepath.Join(baseDir, "vpoint_socks_vmess.json"))
2015-09-20 05:45:40 -04:00
assert.Error(err).IsNil()
2015-10-06 17:11:08 -04:00
assert.Uint16(pointConfig.Port()).Positive()
assert.Pointer(pointConfig.InboundConfig()).IsNotNil()
assert.Pointer(pointConfig.OutboundConfig()).IsNotNil()
2015-09-20 05:45:40 -04:00
2015-10-06 17:11:08 -04:00
assert.String(pointConfig.InboundConfig().Protocol()).Equals("socks")
assert.Pointer(pointConfig.InboundConfig().Settings()).IsNotNil()
2015-09-20 05:45:40 -04:00
2015-10-06 17:11:08 -04:00
assert.String(pointConfig.OutboundConfig().Protocol()).Equals("vmess")
assert.Pointer(pointConfig.OutboundConfig().Settings()).IsNotNil()
2015-09-20 05:45:40 -04:00
}
func TestServerSampleConfig(t *testing.T) {
assert := unit.Assert(t)
// TODO: fix for Windows
baseDir := "$GOPATH/src/github.com/v2ray/v2ray-core/release/config"
2015-10-06 17:11:08 -04:00
pointConfig, err := json.LoadConfig(filepath.Join(baseDir, "vpoint_vmess_freedom.json"))
2015-09-20 05:45:40 -04:00
assert.Error(err).IsNil()
2015-10-06 17:11:08 -04:00
assert.Uint16(pointConfig.Port()).Positive()
assert.Pointer(pointConfig.InboundConfig()).IsNotNil()
assert.Pointer(pointConfig.OutboundConfig()).IsNotNil()
2015-09-20 05:45:40 -04:00
2015-10-06 17:11:08 -04:00
assert.String(pointConfig.InboundConfig().Protocol()).Equals("vmess")
assert.Pointer(pointConfig.InboundConfig().Settings()).IsNotNil()
2015-09-20 05:45:40 -04:00
2015-10-06 17:11:08 -04:00
assert.String(pointConfig.OutboundConfig().Protocol()).Equals("freedom")
assert.Pointer(pointConfig.OutboundConfig().Settings()).IsNotNil()
2015-09-20 05:45:40 -04:00
}