mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
16 lines
336 B
Go
16 lines
336 B
Go
package protocol
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/v2ray/v2ray-core/proxy/vmess/protocol/user/testing/mocks"
|
|
"github.com/v2ray/v2ray-core/testing/fuzzing"
|
|
)
|
|
|
|
func TestVMessRequestReader(t *testing.T) {
|
|
reader := NewVMessRequestReader(&mocks.StaticUserSet{})
|
|
for i := 0; i < 1000000; i++ {
|
|
reader.Read(fuzzing.RandomReader())
|
|
}
|
|
}
|