Skip to content

Commit

Permalink
Merge pull request #245 from fromanirh/missing-drm-node-test
Browse files Browse the repository at this point in the history
gpu: test for github.com//issues/234
  • Loading branch information
jaypipes committed May 11, 2021
2 parents bb93fcc + 59ea3ba commit 56ca185
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 0 deletions.
68 changes: 68 additions & 0 deletions pkg/gpu/gpu_linux_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
//
// Use and distribution licensed under the Apache license version 2.
//
// See the COPYING file in the root project directory for full text.
//

package gpu_test

import (
"errors"
"io/ioutil"
"os"
"path/filepath"
"testing"

"github.com/jaypipes/ghw/pkg/gpu"
"github.com/jaypipes/ghw/pkg/option"
"github.com/jaypipes/ghw/pkg/snapshot"

"github.com/jaypipes/ghw/testdata"
)

// testcase for https://github.com/jaypipes/ghw/issues/234
// if nothing else: demonstrate how to consume snapshots from tests;
// test a boundary condition actually happened in the wild, even though on a VM environment.
func TestGPUWithoutNUMANodeInfo(t *testing.T) {
if _, ok := os.LookupEnv("GHW_TESTING_SKIP_GPU"); ok {
t.Skip("Skipping PCI tests.")
}

testdataPath, err := testdata.SnapshotsDirectory()
if err != nil {
t.Fatalf("Expected nil err, but got %v", err)
}

workstationSnapshot := filepath.Join(testdataPath, "linux-amd64-amd-ryzen-1600.tar.gz")
// from now on we use constants reflecting the content of the snapshot we requested,
// which we reviewed beforehand. IOW, you need to know the content of the
// snapshot to fully understand this test. Inspect it using
// GHW_SNAPSHOT_PATH="/path/to/linux-amd64-amd-ryzen-1600.tar.gz" ghwc gpu

tmpRoot, err := ioutil.TempDir("", "ghw-gpu-testing-*")
if err != nil {
t.Fatalf("Unable to create temporary directory: %v", err)
}

_, err = snapshot.UnpackInto(workstationSnapshot, tmpRoot, 0)
if err != nil {
t.Fatalf("Unable to unpack %q into %q: %v", workstationSnapshot, tmpRoot, err)
}
defer snapshot.Cleanup(tmpRoot)

err = os.Remove(filepath.Join(tmpRoot, "/sys/class/drm/card0/device/numa_node"))
if err != nil && !errors.Is(err, os.ErrNotExist) {
t.Fatalf("Cannot remove the NUMA node info: %v", err)
}

info, err := gpu.New(option.WithChroot(tmpRoot))
if err != nil {
t.Fatalf("Expected nil err, but got %v", err)
}
if info == nil {
t.Fatalf("Expected non-nil GPUInfo, but got nil")
}
if len(info.GraphicsCards) == 0 {
t.Fatalf("Expected >0 GPU cards, but found 0.")
}
}
Binary file not shown.
1 change: 1 addition & 0 deletions testdata/snapshots/linux-amd64-amd-ryzen-1600.tar.gz

0 comments on commit 56ca185

Please sign in to comment.