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.
45 lines
928 B
45 lines
928 B
package assert
|
|
|
|
import (
|
|
v2net "github.com/v2ray/v2ray-core/common/net"
|
|
)
|
|
|
|
func (this *Assert) Port(value v2net.Port) *PortSubject {
|
|
return &PortSubject{
|
|
Subject: Subject{
|
|
a: this,
|
|
disp: value.String(),
|
|
},
|
|
value: value,
|
|
}
|
|
}
|
|
|
|
type PortSubject struct {
|
|
Subject
|
|
value v2net.Port
|
|
}
|
|
|
|
func (subject *PortSubject) Equals(expectation v2net.Port) {
|
|
if subject.value.Value() != expectation.Value() {
|
|
subject.Fail("is equal to", expectation.String())
|
|
}
|
|
}
|
|
|
|
func (subject *PortSubject) GreaterThan(expectation v2net.Port) {
|
|
if subject.value.Value() <= expectation.Value() {
|
|
subject.Fail("is greater than", expectation.String())
|
|
}
|
|
}
|
|
|
|
func (subject *PortSubject) LessThan(expectation v2net.Port) {
|
|
if subject.value.Value() >= expectation.Value() {
|
|
subject.Fail("is less than", expectation.String())
|
|
}
|
|
}
|
|
|
|
func (subject *PortSubject) IsValid() {
|
|
if subject.value == 0 {
|
|
subject.Fail("is", "a valid port")
|
|
}
|
|
}
|