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
|
// 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 sataSuite struct {
TarFileMixin
}
var _ = Suite(&sataSuite{})
func (s *sataSuite) TestHandleSATADevicePathNode1(c *C) {
restoreSysfs := MockSysfsPath(filepath.Join(s.UnpackTar(c, "testdata/sys.tar"), "sys"))
defer restoreSysfs()
state := &devicePathBuilderState{
Interface: interfaceTypeSATA,
Path: efi.DevicePath{
&efi.ACPIDevicePathNode{HID: 0x0a0341d0},
&efi.PCIDevicePathNode{Function: 2, Device: 0x1f}},
processed: []string{"pci0000:00", "0000:00:1f.2"},
remaining: []string{"ata1", "host1", "target1:0:0", "1:0:0:0", "block", "sda"}}
c.Check(handleSATADevicePathNode(state), IsNil)
c.Check(state.processed, DeepEquals, []string{"pci0000:00", "0000:00:1f.2", "ata1", "host1", "target1:0:0", "1:0:0:0", "block", "sda"})
c.Check(state.remaining, DeepEquals, []string{})
c.Check(state.Interface, Equals, interfaceTypeSATA)
c.Check(state.Path, DeepEquals, efi.DevicePath{
&efi.ACPIDevicePathNode{HID: 0x0a0341d0},
&efi.PCIDevicePathNode{Function: 2, Device: 0x1f},
&efi.SATADevicePathNode{
HBAPortNumber: 0,
PortMultiplierPortNumber: 0xffff}})
}
func (s *sataSuite) TestHandleSATADevicePathNode2(c *C) {
restoreSysfs := MockSysfsPath(filepath.Join(s.UnpackTar(c, "testdata/sys.tar"), "sys"))
defer restoreSysfs()
state := &devicePathBuilderState{
Interface: interfaceTypeSATA,
Path: efi.DevicePath{
&efi.ACPIDevicePathNode{HID: 0x0a0341d0},
&efi.PCIDevicePathNode{Function: 2, Device: 0x1f}},
processed: []string{"pci0000:00", "0000:00:1f.2"},
remaining: []string{"ata4", "host2", "target2:0:0", "2:0:0:0", "block", "sdb"}}
c.Check(handleSATADevicePathNode(state), IsNil)
c.Check(state.processed, DeepEquals, []string{"pci0000:00", "0000:00:1f.2", "ata4", "host2", "target2:0:0", "2:0:0:0", "block", "sdb"})
c.Check(state.remaining, DeepEquals, []string{})
c.Check(state.Interface, Equals, interfaceTypeSATA)
c.Check(state.Path, DeepEquals, efi.DevicePath{
&efi.ACPIDevicePathNode{HID: 0x0a0341d0},
&efi.PCIDevicePathNode{Function: 2, Device: 0x1f},
&efi.SATADevicePathNode{
HBAPortNumber: 3,
PortMultiplierPortNumber: 0xffff}})
}
|