v2ray-core/proxy/vmess/protocol/vmess_test.go

120 lines
3.4 KiB
Go
Raw Normal View History

2016-01-12 10:52:40 +00:00
package protocol_test
2015-09-08 23:11:02 +00:00
import (
"bytes"
"crypto/rand"
2015-11-02 22:48:47 +00:00
"io"
2015-09-08 23:11:02 +00:00
"testing"
2016-01-12 10:38:43 +00:00
"time"
2015-09-08 23:11:02 +00:00
v2net "github.com/v2ray/v2ray-core/common/net"
2015-12-12 20:40:16 +00:00
"github.com/v2ray/v2ray-core/common/uuid"
2015-12-07 19:32:38 +00:00
"github.com/v2ray/v2ray-core/proxy/vmess"
2016-01-12 10:52:40 +00:00
. "github.com/v2ray/v2ray-core/proxy/vmess/protocol"
protocoltesting "github.com/v2ray/v2ray-core/proxy/vmess/protocol/testing"
v2testing "github.com/v2ray/v2ray-core/testing"
"github.com/v2ray/v2ray-core/testing/assert"
2015-09-08 23:11:02 +00:00
)
2016-01-12 10:38:43 +00:00
type FakeTimestampGenerator struct {
2016-01-12 10:52:40 +00:00
timestamp Timestamp
2016-01-12 10:38:43 +00:00
}
2016-01-12 10:52:40 +00:00
func (this *FakeTimestampGenerator) Next() Timestamp {
2016-01-12 10:38:43 +00:00
return this.timestamp
}
2015-09-08 23:11:02 +00:00
func TestVMessSerialization(t *testing.T) {
v2testing.Current(t)
2015-12-12 20:40:16 +00:00
id, err := uuid.ParseString("2b2966ac-16aa-4fbf-8d81-c5f172a3da51")
assert.Error(err).IsNil()
userId := vmess.NewID(id)
2015-10-31 13:08:13 +00:00
testUser := &vmess.User{
ID: userId,
2015-10-31 13:08:13 +00:00
}
2015-09-08 23:11:02 +00:00
userSet := protocoltesting.MockUserSet{[]*vmess.User{}, make(map[string]int), make(map[string]Timestamp)}
2015-10-31 08:39:45 +00:00
userSet.AddUser(testUser)
2015-09-08 23:11:02 +00:00
request := new(VMessRequest)
request.Version = byte(0x01)
2015-10-31 08:39:45 +00:00
request.User = testUser
2015-09-08 23:11:02 +00:00
randBytes := make([]byte, 36)
_, err = rand.Read(randBytes)
assert.Error(err).IsNil()
request.RequestIV = randBytes[:16]
request.RequestKey = randBytes[16:32]
request.ResponseHeader = randBytes[32]
2015-09-08 23:11:02 +00:00
request.Command = byte(0x01)
2015-12-16 22:53:38 +00:00
request.Address = v2net.DomainAddress("v2ray.com")
request.Port = v2net.Port(80)
2015-09-08 23:11:02 +00:00
2016-01-12 10:52:40 +00:00
mockTime := Timestamp(1823730)
2015-10-21 20:28:26 +00:00
2016-01-12 10:38:43 +00:00
buffer, err := request.ToBytes(&FakeTimestampGenerator{timestamp: mockTime}, nil)
2015-09-08 23:11:02 +00:00
if err != nil {
t.Fatal(err)
}
2015-10-21 20:28:26 +00:00
userSet.UserHashes[string(buffer.Value[:16])] = 0
userSet.Timestamps[string(buffer.Value[:16])] = mockTime
2015-09-14 17:03:31 +00:00
requestReader := NewVMessRequestReader(&userSet)
2015-10-21 20:28:26 +00:00
actualRequest, err := requestReader.Read(bytes.NewReader(buffer.Value))
2015-09-08 23:11:02 +00:00
if err != nil {
t.Fatal(err)
}
assert.Byte(actualRequest.Version).Named("Version").Equals(byte(0x01))
assert.String(actualRequest.User.ID).Named("UserId").Equals(request.User.ID.String())
assert.Bytes(actualRequest.RequestIV).Named("RequestIV").Equals(request.RequestIV[:])
assert.Bytes(actualRequest.RequestKey).Named("RequestKey").Equals(request.RequestKey[:])
assert.Byte(actualRequest.ResponseHeader).Named("ResponseHeader").Equals(request.ResponseHeader)
assert.Byte(actualRequest.Command).Named("Command").Equals(request.Command)
2015-12-02 15:49:34 +00:00
assert.String(actualRequest.Address).Named("Address").Equals(request.Address.String())
2015-09-08 23:11:02 +00:00
}
2015-09-14 19:59:44 +00:00
2015-11-02 22:48:47 +00:00
func TestReadSingleByte(t *testing.T) {
v2testing.Current(t)
2015-11-02 22:48:47 +00:00
reader := NewVMessRequestReader(nil)
_, err := reader.Read(bytes.NewReader(make([]byte, 1)))
2016-01-29 13:39:55 +00:00
assert.Error(err).Equals(io.ErrUnexpectedEOF)
2015-11-02 22:48:47 +00:00
}
2015-09-14 19:59:44 +00:00
func BenchmarkVMessRequestWriting(b *testing.B) {
2015-12-12 20:40:16 +00:00
id, err := uuid.ParseString("2b2966ac-16aa-4fbf-8d81-c5f172a3da51")
assert.Error(err).IsNil()
userId := vmess.NewID(id)
userSet := protocoltesting.MockUserSet{[]*vmess.User{}, make(map[string]int), make(map[string]Timestamp)}
2015-10-31 13:08:13 +00:00
testUser := &vmess.User{
ID: userId,
2015-10-31 13:08:13 +00:00
}
2015-10-31 08:39:45 +00:00
userSet.AddUser(testUser)
2015-09-14 19:59:44 +00:00
request := new(VMessRequest)
request.Version = byte(0x01)
2015-10-31 08:39:45 +00:00
request.User = testUser
2015-09-14 19:59:44 +00:00
randBytes := make([]byte, 36)
rand.Read(randBytes)
request.RequestIV = randBytes[:16]
request.RequestKey = randBytes[16:32]
request.ResponseHeader = randBytes[32]
2015-09-14 19:59:44 +00:00
request.Command = byte(0x01)
2015-12-16 22:53:38 +00:00
request.Address = v2net.DomainAddress("v2ray.com")
request.Port = v2net.Port(80)
2015-09-14 19:59:44 +00:00
for i := 0; i < b.N; i++ {
2016-01-12 10:52:40 +00:00
request.ToBytes(NewRandomTimestampGenerator(Timestamp(time.Now().Unix()), 30), nil)
2015-09-14 19:59:44 +00:00
}
}