mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-09 11:51:02 -05:00
39 lines
837 B
Go
39 lines
837 B
Go
package unit
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
)
|
|
|
|
type BytesSubject struct {
|
|
*Subject
|
|
value []byte
|
|
}
|
|
|
|
func NewBytesSubject(base *Subject, value []byte) *BytesSubject {
|
|
return &BytesSubject{
|
|
Subject: base,
|
|
value: value,
|
|
}
|
|
}
|
|
|
|
func (subject *BytesSubject) Named(name string) *BytesSubject {
|
|
subject.Subject.Named(name)
|
|
return subject
|
|
}
|
|
|
|
func (subject *BytesSubject) Fail(verb string, other []byte) {
|
|
otherString := fmt.Sprintf("%v", other)
|
|
subject.FailWithMessage("Not true that " + subject.DisplayString() + " " + verb + " <" + otherString + ">.")
|
|
}
|
|
|
|
func (subject *BytesSubject) DisplayString() string {
|
|
return subject.Subject.DisplayString(fmt.Sprintf("%v", subject.value))
|
|
}
|
|
|
|
func (subject *BytesSubject) Equals(expectation []byte) {
|
|
if !bytes.Equal(subject.value, expectation) {
|
|
subject.Fail("is equal to", expectation)
|
|
}
|
|
}
|