1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-17 08:23:41 -04:00
v2fly/proxy/vmess/protocol/vmess_test.go

141 lines
3.7 KiB
Go
Raw Normal View History

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