mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 09:17:32 -05:00
36 lines
624 B
Go
36 lines
624 B
Go
package protocol
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/v2ray/v2ray-core/testing/fuzzing"
|
|
)
|
|
|
|
const (
|
|
Iterations = int(500000)
|
|
)
|
|
|
|
func TestReadAuthentication(t *testing.T) {
|
|
for i := 0; i < Iterations; i++ {
|
|
ReadAuthentication(fuzzing.RandomReader())
|
|
}
|
|
}
|
|
|
|
func TestReadUserPassRequest(t *testing.T) {
|
|
for i := 0; i < Iterations; i++ {
|
|
ReadUserPassRequest(fuzzing.RandomReader())
|
|
}
|
|
}
|
|
|
|
func TestReadRequest(t *testing.T) {
|
|
for i := 0; i < Iterations; i++ {
|
|
ReadRequest(fuzzing.RandomReader())
|
|
}
|
|
}
|
|
|
|
func TestReadUDPRequest(t *testing.T) {
|
|
for i := 0; i < Iterations; i++ {
|
|
ReadUDPRequest(fuzzing.RandomBytes())
|
|
}
|
|
}
|