1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-05 11:34:32 -04:00
v2fly/testing/assert/destination.go

59 lines
1.1 KiB
Go
Raw Normal View History

2015-12-02 11:27:55 -05:00
package assert
import (
v2net "github.com/v2ray/v2ray-core/common/net"
)
2016-05-24 15:55:46 -04:00
func (this *Assert) Destination(value v2net.Destination) *DestinationSubject {
return &DestinationSubject{
Subject: Subject{
disp: value.String(),
a: this,
},
value: value,
}
2015-12-02 11:27:55 -05:00
}
type DestinationSubject struct {
2016-05-24 09:29:08 -04:00
Subject
2015-12-02 11:27:55 -05:00
value v2net.Destination
}
func (this *DestinationSubject) IsTCP() {
if !this.value.IsTCP() {
2016-05-24 15:55:46 -04:00
this.Fail("is", "a TCP destination")
2015-12-02 11:27:55 -05:00
}
}
func (this *DestinationSubject) IsNotTCP() {
if this.value.IsTCP() {
2016-05-24 15:55:46 -04:00
this.Fail("is not", "a TCP destination")
2015-12-02 11:27:55 -05:00
}
}
func (this *DestinationSubject) IsUDP() {
if !this.value.IsUDP() {
2016-05-24 15:55:46 -04:00
this.Fail("is", "a UDP destination")
2015-12-02 11:27:55 -05:00
}
}
func (this *DestinationSubject) IsNotUDP() {
if this.value.IsUDP() {
2016-05-24 15:55:46 -04:00
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)
2015-12-02 11:27:55 -05:00
}
}
2016-05-24 15:55:46 -04:00
func (this *DestinationSubject) HasAddress() *AddressSubject {
return this.a.Address(this.value.Address())
}
func (this *DestinationSubject) HasPort() *PortSubject {
return this.a.Port(this.value.Port())
}