mirror of https://github.com/v2ray/v2ray-core
format code
parent
85feb725a5
commit
d75eeed25d
|
@ -29,10 +29,10 @@ func (this BytesLiteral) String() string {
|
||||||
|
|
||||||
// All returns true if all bytes in the ByteLiteral are the same as given value.
|
// All returns true if all bytes in the ByteLiteral are the same as given value.
|
||||||
func (this BytesLiteral) All(v byte) bool {
|
func (this BytesLiteral) All(v byte) bool {
|
||||||
for _, b := range this {
|
for _, b := range this {
|
||||||
if b != v {
|
if b != v {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,18 +1,18 @@
|
||||||
package vmess_test
|
package vmess_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/v2ray/v2ray-core/common/uuid"
|
"github.com/v2ray/v2ray-core/common/serial"
|
||||||
"github.com/v2ray/v2ray-core/common/serial"
|
"github.com/v2ray/v2ray-core/common/uuid"
|
||||||
. "github.com/v2ray/v2ray-core/proxy/vmess"
|
. "github.com/v2ray/v2ray-core/proxy/vmess"
|
||||||
v2testing "github.com/v2ray/v2ray-core/testing"
|
v2testing "github.com/v2ray/v2ray-core/testing"
|
||||||
"github.com/v2ray/v2ray-core/testing/assert"
|
"github.com/v2ray/v2ray-core/testing/assert"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestCmdKey(t *testing.T) {
|
func TestCmdKey(t *testing.T) {
|
||||||
v2testing.Current(t)
|
v2testing.Current(t)
|
||||||
|
|
||||||
id := NewID(uuid.New())
|
id := NewID(uuid.New())
|
||||||
assert.Bool(serial.BytesLiteral(id.CmdKey()).All(0)).IsFalse()
|
assert.Bool(serial.BytesLiteral(id.CmdKey()).All(0)).IsFalse()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue