File: mask_test.go

package info (click to toggle)
golang-nhooyr-websocket 1.8.12-4~bpo12%2B1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-backports
  • size: 528 kB
  • sloc: asm: 158; sh: 101; javascript: 62; makefile: 6
file content (73 lines) | stat: -rw-r--r-- 1,423 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package websocket

import (
	"bytes"
	"crypto/rand"
	"encoding/binary"
	"math/big"
	"math/bits"
	"testing"

	"github.com/coder/websocket/internal/test/assert"
)

func basicMask(b []byte, key uint32) uint32 {
	for i := range b {
		b[i] ^= byte(key)
		key = bits.RotateLeft32(key, -8)
	}
	return key
}

func basicMask2(b []byte, key uint32) uint32 {
	keyb := binary.LittleEndian.AppendUint32(nil, key)
	pos := 0
	for i := range b {
		b[i] ^= keyb[pos&3]
		pos++
	}
	return bits.RotateLeft32(key, (pos&3)*-8)
}

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

	testMask(t, "basicMask", basicMask)
	testMask(t, "maskGo", maskGo)
	testMask(t, "basicMask2", basicMask2)
}

func testMask(t *testing.T, name string, fn func(b []byte, key uint32) uint32) {
	t.Run(name, func(t *testing.T) {
		t.Parallel()
		for i := 0; i < 9999; i++ {
			keyb := make([]byte, 4)
			_, err := rand.Read(keyb)
			assert.Success(t, err)
			key := binary.LittleEndian.Uint32(keyb)

			n, err := rand.Int(rand.Reader, big.NewInt(1<<16))
			assert.Success(t, err)

			b := make([]byte, 1+n.Int64())
			_, err = rand.Read(b)
			assert.Success(t, err)

			b2 := make([]byte, len(b))
			copy(b2, b)
			b3 := make([]byte, len(b))
			copy(b3, b)

			key2 := basicMask(b2, key)
			key3 := fn(b3, key)

			if key2 != key3 {
				t.Errorf("expected key %X but got %X", key2, key3)
			}
			if !bytes.Equal(b2, b3) {
				t.Error("bad bytes")
				return
			}
		}
	})
}