mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-19 19:06:43 -05:00
36 lines
741 B
Go
36 lines
741 B
Go
|
// +build json
|
||
|
|
||
|
package outbound_test
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"testing"
|
||
|
|
||
|
//"github.com/v2ray/v2ray-core/common/protocol"
|
||
|
. "github.com/v2ray/v2ray-core/proxy/vmess/outbound"
|
||
|
"github.com/v2ray/v2ray-core/testing/assert"
|
||
|
)
|
||
|
|
||
|
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
|
||
|
}
|
||
|
]
|
||
|
}]
|
||
|
}`
|
||
|
|
||
|
config := new(Config)
|
||
|
err := json.Unmarshal([]byte(rawJson), &config)
|
||
|
assert.Error(err).IsNil()
|
||
|
assert.Destination(config.Receivers[0].Destination()).EqualsString("tcp:127.0.0.1:80")
|
||
|
}
|