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.
23 lines
512 B
23 lines
512 B
// +build json
|
|
|
|
package socks_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/v2ray/v2ray-core/proxy/internal/config"
|
|
"github.com/v2ray/v2ray-core/proxy/socks"
|
|
v2testing "github.com/v2ray/v2ray-core/testing"
|
|
"github.com/v2ray/v2ray-core/testing/assert"
|
|
)
|
|
|
|
func TestDefaultIPAddress(t *testing.T) {
|
|
v2testing.Current(t)
|
|
|
|
socksConfig, err := config.CreateInboundConfig("socks", []byte(`{
|
|
"auth": "noauth"
|
|
}`))
|
|
assert.Error(err).IsNil()
|
|
assert.String(socksConfig.(*socks.Config).Address).Equals("127.0.0.1")
|
|
}
|