mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
111 lines
2.1 KiB
111 lines
2.1 KiB
4 years ago
|
package conf_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"v2ray.com/core/common/net"
|
||
|
"v2ray.com/core/common/protocol"
|
||
|
"v2ray.com/core/common/serial"
|
||
|
. "v2ray.com/core/infra/conf"
|
||
|
"v2ray.com/core/proxy/vless"
|
||
|
"v2ray.com/core/proxy/vless/inbound"
|
||
|
"v2ray.com/core/proxy/vless/outbound"
|
||
|
)
|
||
|
|
||
|
func TestVLessOutbound(t *testing.T) {
|
||
|
creator := func() Buildable {
|
||
|
return new(VLessOutboundConfig)
|
||
|
}
|
||
|
|
||
|
runMultiTestCase(t, []TestCase{
|
||
|
{
|
||
|
Input: `{
|
||
|
"vnext": [{
|
||
|
"address": "example.com",
|
||
|
"port": 443,
|
||
|
"users": [
|
||
|
{
|
||
|
"id": "27848739-7e62-4138-9fd3-098a63964b6b",
|
||
|
"schedulers": "",
|
||
|
"encryption": "none",
|
||
|
"level": 0
|
||
|
}
|
||
|
]
|
||
|
}]
|
||
|
}`,
|
||
|
Parser: loadJSON(creator),
|
||
|
Output: &outbound.Config{
|
||
|
Receiver: []*protocol.ServerEndpoint{
|
||
|
{
|
||
|
Address: &net.IPOrDomain{
|
||
|
Address: &net.IPOrDomain_Domain{
|
||
|
Domain: "example.com",
|
||
|
},
|
||
|
},
|
||
|
Port: 443,
|
||
|
User: []*protocol.User{
|
||
|
{
|
||
|
Account: serial.ToTypedMessage(&vless.Account{
|
||
|
Id: "27848739-7e62-4138-9fd3-098a63964b6b",
|
||
|
Schedulers: "",
|
||
|
Encryption: "none",
|
||
|
}),
|
||
|
Level: 0,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
})
|
||
|
}
|
||
|
|
||
|
func TestVLessInbound(t *testing.T) {
|
||
|
creator := func() Buildable {
|
||
|
return new(VLessInboundConfig)
|
||
|
}
|
||
|
|
||
|
runMultiTestCase(t, []TestCase{
|
||
|
{
|
||
|
Input: `{
|
||
|
"clients": [
|
||
|
{
|
||
|
"id": "27848739-7e62-4138-9fd3-098a63964b6b",
|
||
|
"schedulers": "",
|
||
|
"level": 0,
|
||
|
"email": "love@v2fly.org"
|
||
|
}
|
||
|
],
|
||
|
"decryption": "none",
|
||
|
"fallback": {
|
||
|
"port": 80,
|
||
|
"unix": "@/dev/shm/domain.socket"
|
||
|
}
|
||
|
}`,
|
||
|
Parser: loadJSON(creator),
|
||
|
Output: &inbound.Config{
|
||
|
User: []*protocol.User{
|
||
|
{
|
||
|
Account: serial.ToTypedMessage(&vless.Account{
|
||
|
Id: "27848739-7e62-4138-9fd3-098a63964b6b",
|
||
|
Schedulers: "",
|
||
|
}),
|
||
|
Level: 0,
|
||
|
Email: "love@v2fly.org",
|
||
|
},
|
||
|
},
|
||
|
Decryption: "none",
|
||
|
Fallback: &inbound.Fallback{
|
||
|
Addr: &net.IPOrDomain{
|
||
|
Address: &net.IPOrDomain_Ip{
|
||
|
Ip: []byte{127, 0, 0, 1},
|
||
|
},
|
||
|
},
|
||
|
Port: 80,
|
||
|
Unix: "\x00/dev/shm/domain.socket",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
})
|
||
|
}
|