File: linuxudstpm_test.go

package info (click to toggle)
golang-github-google-go-tpm 0.9.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,932 kB
  • sloc: makefile: 13
file content (30 lines) | stat: -rw-r--r-- 630 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
//go:build !windows

package linuxudstpm

import (
	"flag"
	"os"
	"syscall"
	"testing"

	"github.com/google/go-tpm/tpm2/transport"
	testhelper "github.com/google/go-tpm/tpm2/transport/test"
)

var tpmSocket = flag.String("tpm_socket", "/dev/tpm0", "path to the TPM simulator UDS")

func TestMain(m *testing.M) {
	flag.Parse()
	os.Exit(m.Run())
}

func open() func() (transport.TPMCloser, error) {
	return func() (transport.TPMCloser, error) {
		return Open(*tpmSocket)
	}
}

func TestLocalUDSTPM(t *testing.T) {
	testhelper.RunTest(t, []error{os.ErrNotExist, os.ErrPermission, ErrFileIsNotSocket, syscall.ECONNREFUSED}, open())
}