1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-20 12:14:15 -04:00
v2fly/testing/assert/port.go

49 lines
1.2 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"
2015-12-02 15:44:01 -05:00
"github.com/v2ray/v2ray-core/common/serial"
)
func Port(value v2net.Port) *PortSubject {
return &PortSubject{value: value}
}
type PortSubject struct {
2016-05-24 09:29:08 -04:00
Subject
value v2net.Port
}
func (subject *PortSubject) Named(name string) *PortSubject {
subject.Subject.Named(name)
return subject
}
func (subject *PortSubject) DisplayString() string {
return subject.Subject.DisplayString(subject.value.String())
}
func (subject *PortSubject) Equals(expectation v2net.Port) {
if subject.value.Value() != expectation.Value() {
2015-12-02 10:19:39 -05:00
subject.Fail(subject.DisplayString(), "is equal to", expectation)
}
}
func (subject *PortSubject) GreaterThan(expectation v2net.Port) {
if subject.value.Value() <= expectation.Value() {
2015-12-02 10:19:39 -05:00
subject.Fail(subject.DisplayString(), "is greater than", expectation)
}
}
func (subject *PortSubject) LessThan(expectation v2net.Port) {
if subject.value.Value() >= expectation.Value() {
2015-12-02 10:19:39 -05:00
subject.Fail(subject.DisplayString(), "is less than", expectation)
}
}
2015-12-02 15:44:01 -05:00
func (subject *PortSubject) IsValid() {
2015-12-02 15:58:46 -05:00
if subject.value == 0 {
2016-05-23 14:23:40 -04:00
subject.Fail(subject.DisplayString(), "is", serial.StringT("a valid port"))
2015-12-02 15:58:46 -05:00
}
2015-12-02 15:44:01 -05:00
}