intel-device-plugins-for-ku.../cmd/vpu_plugin/vpu_plugin_test.go
Hyeongju Johannes Lee 6c7804b1e0 Update golang-lint to 1.52.1 and fix newly found errors
Signed-off-by: Hyeongju Johannes Lee <hyeongju.lee@intel.com>
2023-03-22 15:15:30 +02:00

241 lines
6.5 KiB
Go

// Copyright 2019 Intel Corporation. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"flag"
"os"
"path/filepath"
"strconv"
"testing"
"github.com/google/gousb"
dpapi "github.com/intel/intel-device-plugins-for-kubernetes/pkg/deviceplugin"
"k8s.io/klog/v2"
)
func init() {
_ = flag.Set("v", "4")
}
type testCase struct {
productIDs []int
vendorID int
}
// OpenDevices tries to inject gousb compatible fake device info.
func (t *testCase) OpenDevices(opener func(desc *gousb.DeviceDesc) bool) ([]*gousb.Device, error) {
var ret []*gousb.Device
for _, p := range t.productIDs {
desc := &gousb.DeviceDesc{
Vendor: gousb.ID(t.vendorID),
Product: gousb.ID(p),
}
if opener(desc) {
// only fake desc is enough
ret = append(ret, &gousb.Device{Desc: desc})
}
}
return ret, nil
}
func createDevice(pciBusRootDir string, bdf string, vid string, pid string) error {
err := os.MkdirAll(filepath.Join(pciBusRootDir, bdf), 0755)
if err != nil {
return err
}
vidHex := append([]byte(vid), 0xa)
pidHex := append([]byte(pid), 0xa)
err = os.WriteFile(filepath.Join(pciBusRootDir, bdf, "vendor"), vidHex, 0400)
if err != nil {
return err
}
err = os.WriteFile(filepath.Join(pciBusRootDir, bdf, "device"), pidHex, 0400)
if err != nil {
return err
}
return nil
}
func createTestPCI(folder string, testPCI []PCIPidDeviceType) error {
var busNum = 1
var devNum = 3
//Loop for all supported device type
for _, pciPid := range testPCI {
//Loop for pid number
for _, pidVPU := range pciPid.pids {
//Create intended bus number based on ratio
for i := 0; i < devNum*pciPid.ratio; i++ {
if err := createDevice(folder, strconv.Itoa(busNum), vendorIDIntel, pidVPU); err != nil {
return err
}
busNum++
}
}
}
return nil
}
// fakeNotifier implements Notifier interface.
type fakeNotifier struct {
scanDone chan bool
tree dpapi.DeviceTree
}
// Notify stops plugin Scan.
func (n *fakeNotifier) Notify(newDeviceTree dpapi.DeviceTree) {
n.tree = newDeviceTree
n.scanDone <- true
}
func TestScanPci(t *testing.T) {
var fN fakeNotifier
f, err := os.Create(hddlSocketPci)
if err != nil {
t.Error("create fake hddl file failed")
}
//create a temporary folder to create fake devices files for PCI scanning
tmpPciDir, err := os.MkdirTemp("/tmp", "fake-pci-devices")
if err != nil {
t.Fatal(err)
}
defer os.RemoveAll(tmpPciDir)
//create supported PCI devices file
if err = createTestPCI(tmpPciDir, productIDsPCI); err != nil {
t.Fatal(err)
}
testPlugin := newDevicePlugin(devicePluginPci{sysfsPciDevicesPath: tmpPciDir, vendorIDPCI: vendorIDIntel, productIDsPCI: productIDsPCI}, 10)
if testPlugin == nil {
t.Fatal("vpu plugin test failed with newDevicePlugin().")
}
fN.scanDone = testPlugin.scanDone
err = testPlugin.Scan(&fN)
if err != nil {
t.Error("vpu plugin test failed with testPlugin.Scan()")
}
//Loop for all supported PCI device type
for _, pciPid := range productIDsPCI {
if len(fN.tree[pciPid.deviceType]) == 0 {
t.Error("vpu plugin test failed with testPlugin.Scan(): tree len is 0")
}
klog.V(4).Infof("tree len of pci %s is %d", pciPid.deviceType, len(fN.tree[pciPid.deviceType]))
}
//remove the hddl_service.sock and test with no hddl socket case
_ = f.Close()
_ = os.Remove("/var/tmp/hddl_service.sock")
testPlugin = newDevicePlugin(devicePluginPci{sysfsPciDevicesPath: tmpPciDir, vendorIDPCI: vendorIDIntel, productIDsPCI: productIDsPCI}, 10)
if testPlugin == nil {
t.Fatal("vpu plugin test failed with newDevicePlugin() in no hddl_service.sock case.")
}
fN.scanDone = testPlugin.scanDone
err = testPlugin.Scan(&fN)
if err != nil {
t.Error("vpu plugin test failed with testPlugin.Scan() in no hddl_service.sock case.")
}
if len(fN.tree[deviceType]) != 0 {
t.Error("vpu plugin test failed with testPlugin.Scan(): tree len should be 0 in no hddl_service.sock case.")
}
//test with sharedNum equals 0 case
testPlugin = newDevicePlugin(devicePluginPci{sysfsPciDevicesPath: tmpPciDir, vendorIDPCI: vendorIDIntel, productIDsPCI: productIDsPCI}, 0)
if testPlugin != nil {
t.Error("vpu plugin test fail: newDevicePlugin should fail with 0 sharedDevNum")
}
}
func TestScan(t *testing.T) {
var fN fakeNotifier
f, err := os.Create(hddlSockPath)
if err != nil {
t.Error("create fake hddl file failed")
}
//inject our fake gousbContext, just borrow vendorID and productIDs from main
tc := &testCase{
vendorID: vendorID,
}
//inject some productIDs that not match our target too
tc.productIDs = append(productIDs, 0xdead, 0xbeef)
testPlugin := newDevicePlugin(devicePluginUsb{usbContext: tc, vendorID: vendorID, productIDs: productIDs}, 10)
if testPlugin == nil {
t.Fatal("vpu plugin test failed with newDevicePlugin().")
}
fN.scanDone = testPlugin.scanDone
err = testPlugin.Scan(&fN)
if err != nil {
t.Error("vpu plugin test failed with testPlugin.Scan()")
}
if len(fN.tree[deviceType]) == 0 {
t.Error("vpu plugin test failed with testPlugin.Scan(): tree len is 0")
}
klog.V(4).Infof("tree len of usb is %d", len(fN.tree[deviceType]))
//remove the hddl_service.sock and test with no hddl socket case
_ = f.Close()
_ = os.Remove("/var/tmp/hddl_service.sock")
testPlugin = newDevicePlugin(devicePluginUsb{usbContext: tc, vendorID: vendorID, productIDs: productIDs}, 10)
if testPlugin == nil {
t.Fatal("vpu plugin test failed with newDevicePlugin() in no hddl_service.sock case.")
}
fN.scanDone = testPlugin.scanDone
err = testPlugin.Scan(&fN)
if err != nil {
t.Error("vpu plugin test failed with testPlugin.Scan() in no hddl_service.sock case.")
}
if len(fN.tree[deviceType]) != 0 {
t.Error("vpu plugin test failed with testPlugin.Scan(): tree len should be 0 in no hddl_service.sock case.")
}
//test with sharedNum equals 0 case
testPlugin = newDevicePlugin(devicePluginUsb{usbContext: tc, vendorID: vendorID, productIDs: productIDs}, 0)
if testPlugin != nil {
t.Error("vpu plugin test fail: newDevicePlugin should fail with 0 sharedDevNum")
}
}