2015-12-02 10:19:39 -05:00
|
|
|
package unit
|
2015-11-04 16:48:54 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2015-12-02 10:19:39 -05:00
|
|
|
v2net "github.com/v2ray/v2ray-core/common/net"
|
2015-12-02 09:27:18 -05:00
|
|
|
v2testing "github.com/v2ray/v2ray-core/testing"
|
|
|
|
"github.com/v2ray/v2ray-core/testing/assert"
|
2015-11-04 16:48:54 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestTCPDestination(t *testing.T) {
|
2015-12-02 09:27:18 -05:00
|
|
|
v2testing.Current(t)
|
2015-11-04 16:48:54 -05:00
|
|
|
|
2015-12-02 10:19:39 -05:00
|
|
|
dest := v2net.NewTCPDestination(v2net.IPAddress([]byte{1, 2, 3, 4}, 80))
|
2015-11-04 16:48:54 -05:00
|
|
|
assert.Bool(dest.IsTCP()).IsTrue()
|
|
|
|
assert.Bool(dest.IsUDP()).IsFalse()
|
2015-12-02 10:41:19 -05:00
|
|
|
assert.StringLiteral(dest.String()).Equals("tcp:1.2.3.4:80")
|
2015-11-04 16:48:54 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestUDPDestination(t *testing.T) {
|
2015-12-02 09:27:18 -05:00
|
|
|
v2testing.Current(t)
|
2015-11-04 16:48:54 -05:00
|
|
|
|
2015-12-02 10:19:39 -05:00
|
|
|
dest := v2net.NewUDPDestination(v2net.IPAddress([]byte{0x20, 0x01, 0x48, 0x60, 0x48, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x88, 0x88}, 53))
|
2015-11-04 16:48:54 -05:00
|
|
|
assert.Bool(dest.IsTCP()).IsFalse()
|
|
|
|
assert.Bool(dest.IsUDP()).IsTrue()
|
2015-12-02 10:41:19 -05:00
|
|
|
assert.StringLiteral(dest.String()).Equals("udp:[2001:4860:4860::8888]:53")
|
2015-11-04 16:48:54 -05:00
|
|
|
}
|