good morning!!!!

Skip to content
Snippets Groups Projects
frame_test.go 3.16 KiB
Newer Older
Anmol Sethi's avatar
Anmol Sethi committed
// +build !js

package websocket
Anmol Sethi's avatar
Anmol Sethi committed
	"bufio"
	"bytes"
	"encoding/binary"
	"math/bits"
Anmol Sethi's avatar
Anmol Sethi committed
	"math/rand"
Anmol Sethi's avatar
Anmol Sethi committed
	"time"
Anmol Sethi's avatar
Anmol Sethi committed

	"github.com/gobwas/ws"
	_ "github.com/gorilla/websocket"
Anmol Sethi's avatar
Anmol Sethi committed

	"nhooyr.io/websocket/internal/assert"
Anmol Sethi's avatar
Anmol Sethi committed
func init() {
	rand.Seed(time.Now().UnixNano())
}

func TestHeader(t *testing.T) {
	t.Parallel()

	t.Run("lengths", func(t *testing.T) {
		t.Parallel()

		lengths := []int{
			124,
			125,
			126,
			127,

			65534,
			65535,
			65536,
			65537,
		}

		for _, n := range lengths {
			n := n
			t.Run(strconv.Itoa(n), func(t *testing.T) {
				t.Parallel()

				testHeader(t, header{
					payloadLength: int64(n),
				})
			})
		}
	})

	t.Run("fuzz", func(t *testing.T) {
		t.Parallel()

		randBool := func() bool {
			return rand.Intn(1) == 0
		}

		for i := 0; i < 10000; i++ {
			h := header{
				fin:    randBool(),
				rsv1:   randBool(),
				rsv2:   randBool(),
				rsv3:   randBool(),
				opcode: opcode(rand.Intn(16)),

				masked:        randBool(),
				maskKey:       rand.Uint32(),
				payloadLength: rand.Int63(),
			}

			testHeader(t, h)
		}
	})
}

func testHeader(t *testing.T, h header) {
	b := &bytes.Buffer{}
	w := bufio.NewWriter(b)
	r := bufio.NewReader(b)

	err := writeFrameHeader(h, w)
	assert.Success(t, err)
	err = w.Flush()
	assert.Success(t, err)

	h2, err := readFrameHeader(r)
	assert.Success(t, err)

Anmol Sethi's avatar
Anmol Sethi committed
	assert.Equal(t, h, h2, "written and read headers differ")
Anmol Sethi's avatar
Anmol Sethi committed
}

func Test_mask(t *testing.T) {
	t.Parallel()

	key := []byte{0xa, 0xb, 0xc, 0xff}
	key32 := binary.LittleEndian.Uint32(key)
	p := []byte{0xa, 0xb, 0xc, 0xf2, 0xc}
Anmol Sethi's avatar
Anmol Sethi committed
	gotKey32 := mask(key32, p)
Anmol Sethi's avatar
Anmol Sethi committed
	assert.Equal(t, []byte{0, 0, 0, 0x0d, 0x6}, p, "unexpected mask")
	assert.Equal(t, bits.RotateLeft32(key32, -8), gotKey32, "unexpected mask key")
}

func basicMask(maskKey [4]byte, pos int, b []byte) int {
	for i := range b {
		b[i] ^= maskKey[pos&3]
		pos++
	}
	return pos & 3
}

//go:linkname gorillaMaskBytes github.com/gorilla/websocket.maskBytes
func gorillaMaskBytes(key [4]byte, pos int, b []byte) int

func Benchmark_mask(b *testing.B) {
	sizes := []int{
		2,
		3,
		4,
		8,
		16,
		32,
		128,
		512,
		4096,
		16384,
	}

	fns := []struct {
		name string
		fn   func(b *testing.B, key [4]byte, p []byte)
	}{
		{
			name: "basic",
			fn: func(b *testing.B, key [4]byte, p []byte) {
				for i := 0; i < b.N; i++ {
					basicMask(key, 0, p)
				}
			},
		},

		{
			name: "nhooyr",
			fn: func(b *testing.B, key [4]byte, p []byte) {
				key32 := binary.LittleEndian.Uint32(key[:])
				b.ResetTimer()

				for i := 0; i < b.N; i++ {
Anmol Sethi's avatar
Anmol Sethi committed
					mask(key32, p)
				}
			},
		},
		{
			name: "gorilla",
			fn: func(b *testing.B, key [4]byte, p []byte) {
				for i := 0; i < b.N; i++ {
					gorillaMaskBytes(key, 0, p)
				}
			},
		},
		{
			name: "gobwas",
			fn: func(b *testing.B, key [4]byte, p []byte) {
				for i := 0; i < b.N; i++ {
					ws.Cipher(p, key, 0)
				}
			},
		},
	}

	var key [4]byte
	_, err := rand.Read(key[:])
Anmol Sethi's avatar
Anmol Sethi committed
	assert.Success(b, err)

	for _, size := range sizes {
		p := make([]byte, size)

		b.Run(strconv.Itoa(size), func(b *testing.B) {
			for _, fn := range fns {
				b.Run(fn.name, func(b *testing.B) {
					b.SetBytes(int64(size))

					fn.fn(b, key, p)
				})
			}
		})
	}
}