mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-17 09:56:18 -05:00
22 lines
467 B
Go
22 lines
467 B
Go
// +build json
|
|
|
|
package socks_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/v2ray/v2ray-core/proxy/internal"
|
|
"github.com/v2ray/v2ray-core/proxy/socks"
|
|
"github.com/v2ray/v2ray-core/testing/assert"
|
|
)
|
|
|
|
func TestDefaultIPAddress(t *testing.T) {
|
|
assert := assert.On(t)
|
|
|
|
socksConfig, err := internal.CreateInboundConfig("socks", []byte(`{
|
|
"auth": "noauth"
|
|
}`))
|
|
assert.Error(err).IsNil()
|
|
assert.Address(socksConfig.(*socks.Config).Address).EqualsString("127.0.0.1")
|
|
}
|