File: dp_pci_root_test.go

package info (click to toggle)
golang-github-canonical-go-efilib 1.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 6,836 kB
  • sloc: makefile: 3
file content (35 lines) | stat: -rw-r--r-- 1,085 bytes parent folder | download
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
// Copyright 2021 Canonical Ltd.
// Licensed under the LGPLv3 with static-linking exception.
// See LICENCE file for details.

package linux

import (
	"path/filepath"

	efi "github.com/canonical/go-efilib"
	. "gopkg.in/check.v1"
)

type pciRootSuite struct {
	TarFileMixin
}

var _ = Suite(&pciRootSuite{})

func (s *pciRootSuite) TestHandlePCIRootDevicePathNodeSkip(c *C) {
	state := &devicePathBuilderState{remaining: []string{"ACPI0004:00"}}
	c.Check(handlePCIRootDevicePathNode(state), Equals, errSkipDevicePathNodeHandler)
}

func (s *pciRootSuite) TestHandlePCIRootDevicePathNode(c *C) {
	restoreSysfs := MockSysfsPath(filepath.Join(s.UnpackTar(c, "testdata/sys.tar"), "sys"))
	defer restoreSysfs()

	state := &devicePathBuilderState{remaining: []string{"pci0000:00"}}
	c.Check(handlePCIRootDevicePathNode(state), IsNil)
	c.Check(state.processed, DeepEquals, []string{"pci0000:00"})
	c.Check(state.remaining, DeepEquals, []string{})
	c.Check(state.Interface, Equals, interfaceTypePCI)
	c.Check(state.Path, DeepEquals, efi.DevicePath{&efi.ACPIDevicePathNode{HID: 0x0a0341d0}})
}