-
Notifications
You must be signed in to change notification settings - Fork 0
/
common_test.go
60 lines (52 loc) · 1018 Bytes
/
common_test.go
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
package paseto
import (
"testing"
)
func TestPAE(t *testing.T) {
testCases := []struct {
pieces [][]byte
want string
}{
{
pieces: nil,
want: "\x00\x00\x00\x00\x00\x00\x00\x00",
},
{
pieces: [][]byte{},
want: "\x00\x00\x00\x00\x00\x00\x00\x00",
},
{
pieces: [][]byte{nil},
want: "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00",
},
{
pieces: [][]byte{[]byte("test")},
want: "\x01\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00test",
},
}
for _, tc := range testCases {
res := pae(tc.pieces...)
have := string(res)
if have != tc.want {
t.Errorf("\nhave: %v\nwant: %v", have, tc.want)
}
}
}
func BenchmarkPAE(b *testing.B) {
var nonce [32]byte
var encryptedPayload [256]byte
var footerBytes []byte
pieces := [][]byte{
[]byte(v1locHeader),
nonce[:],
encryptedPayload[:],
footerBytes,
}
b.ReportAllocs()
for i := 0; i < b.N; i++ {
res := pae(pieces...)
if len(res) == 0 {
b.Fatal()
}
}
}