1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-05 19:44:32 -04:00
v2fly/tools/conf/vmess_test.go

45 lines
949 B
Go
Raw Normal View History

2016-10-17 08:35:13 -04:00
package conf_test
2016-07-25 10:48:09 -04:00
import (
"encoding/json"
"testing"
2016-09-24 17:11:58 -04:00
"v2ray.com/core/common/protocol"
2016-10-17 08:35:13 -04:00
"v2ray.com/core/proxy/vmess/outbound"
2016-08-20 14:55:45 -04:00
"v2ray.com/core/testing/assert"
2016-10-17 08:35:13 -04:00
. "v2ray.com/core/tools/conf"
2016-07-25 10:48:09 -04:00
)
func TestConfigTargetParsing(t *testing.T) {
assert := assert.On(t)
rawJson := `{
"vnext": [{
"address": "127.0.0.1",
"port": 80,
"users": [
{
"id": "e641f5ad-9397-41e3-bf1a-e8740dfed019",
"email": "love@v2ray.com",
"level": 255
}
]
}]
}`
2016-10-17 08:35:13 -04:00
rawConfig := new(VMessOutboundConfig)
err := json.Unmarshal([]byte(rawJson), &rawConfig)
assert.Error(err).IsNil()
ts, err := rawConfig.Build()
2016-07-25 10:48:09 -04:00
assert.Error(err).IsNil()
2016-10-17 08:35:13 -04:00
iConfig, err := ts.GetInstance()
assert.Error(err).IsNil()
config := iConfig.(*outbound.Config)
2016-09-24 17:11:58 -04:00
specPB := config.Receiver[0]
2016-11-02 11:41:02 -04:00
spec := protocol.NewServerSpecFromPB(*specPB)
2016-09-24 17:11:58 -04:00
assert.Destination(spec.Destination()).EqualsString("tcp:127.0.0.1:80")
2016-07-25 10:48:09 -04:00
}