-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtypes_handles_test.go
61 lines (57 loc) · 1.21 KB
/
types_handles_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
61
// Copyright 2019 Canonical Ltd.
// Licensed under the LGPLv3 with static-linking exception.
// See LICENCE file for details.
package tpm2_test
import (
"testing"
. "github.com/canonical/go-tpm2"
)
func TestHandle(t *testing.T) {
for _, data := range []struct {
desc string
handle Handle
handleType HandleType
}{
{
desc: "PCR",
handle: 0x0000000a,
handleType: HandleTypePCR,
},
{
desc: "NVIndex",
handle: 0x0180ff00,
handleType: HandleTypeNVIndex,
},
{
desc: "HMACSession",
handle: 0x02000001,
handleType: HandleTypeHMACSession,
},
{
desc: "PolicySession",
handle: 0x03000001,
handleType: HandleTypePolicySession,
},
{
desc: "Permanent",
handle: HandleOwner,
handleType: HandleTypePermanent,
},
{
desc: "Transient",
handle: 0x80000003,
handleType: HandleTypeTransient,
},
{
desc: "Persistent",
handle: 0x81000000,
handleType: HandleTypePersistent,
},
} {
t.Run(data.desc, func(t *testing.T) {
if data.handle.Type() != data.handleType {
t.Errorf("Unexpected handle type (got %x, expected %x)", data.handle.Type(), data.handleType)
}
})
}
}