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.
33 lines
774 B
33 lines
774 B
// +build json
|
|
|
|
package net_test
|
|
|
|
import (
|
|
"encoding/json"
|
|
"testing"
|
|
|
|
. "github.com/v2ray/v2ray-core/common/net"
|
|
v2testing "github.com/v2ray/v2ray-core/testing"
|
|
"github.com/v2ray/v2ray-core/testing/assert"
|
|
)
|
|
|
|
func TestArrayNetworkList(t *testing.T) {
|
|
v2testing.Current(t)
|
|
|
|
var list NetworkList
|
|
err := json.Unmarshal([]byte("[\"Tcp\"]"), &list)
|
|
assert.Error(err).IsNil()
|
|
assert.Bool(list.HasNetwork(Network("tcp"))).IsTrue()
|
|
assert.Bool(list.HasNetwork(Network("udp"))).IsFalse()
|
|
}
|
|
|
|
func TestStringNetworkList(t *testing.T) {
|
|
v2testing.Current(t)
|
|
|
|
var list NetworkList
|
|
err := json.Unmarshal([]byte("\"TCP, ip\""), &list)
|
|
assert.Error(err).IsNil()
|
|
assert.Bool(list.HasNetwork(Network("tcp"))).IsTrue()
|
|
assert.Bool(list.HasNetwork(Network("udp"))).IsFalse()
|
|
}
|