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.
59 lines
1.1 KiB
59 lines
1.1 KiB
package assert
|
|
|
|
import (
|
|
v2net "github.com/v2ray/v2ray-core/common/net"
|
|
)
|
|
|
|
func (this *Assert) Destination(value v2net.Destination) *DestinationSubject {
|
|
return &DestinationSubject{
|
|
Subject: Subject{
|
|
disp: value.String(),
|
|
a: this,
|
|
},
|
|
value: value,
|
|
}
|
|
}
|
|
|
|
type DestinationSubject struct {
|
|
Subject
|
|
value v2net.Destination
|
|
}
|
|
|
|
func (this *DestinationSubject) IsTCP() {
|
|
if !this.value.IsTCP() {
|
|
this.Fail("is", "a TCP destination")
|
|
}
|
|
}
|
|
|
|
func (this *DestinationSubject) IsNotTCP() {
|
|
if this.value.IsTCP() {
|
|
this.Fail("is not", "a TCP destination")
|
|
}
|
|
}
|
|
|
|
func (this *DestinationSubject) IsUDP() {
|
|
if !this.value.IsUDP() {
|
|
this.Fail("is", "a UDP destination")
|
|
}
|
|
}
|
|
|
|
func (this *DestinationSubject) IsNotUDP() {
|
|
if this.value.IsUDP() {
|
|
this.Fail("is not", "a UDP destination")
|
|
}
|
|
}
|
|
|
|
func (this *DestinationSubject) EqualsString(another string) {
|
|
if this.value.String() != another {
|
|
this.Fail("not equals to string", another)
|
|
}
|
|
}
|
|
|
|
func (this *DestinationSubject) HasAddress() *AddressSubject {
|
|
return this.a.Address(this.value.Address())
|
|
}
|
|
|
|
func (this *DestinationSubject) HasPort() *PortSubject {
|
|
return this.a.Port(this.value.Port())
|
|
}
|