43 lines
871 B
Go
43 lines
871 B
Go
package fingerprint
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/hashicorp/nomad/client/config"
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
|
)
|
|
|
|
func TestCPUFingerprint(t *testing.T) {
|
|
f := NewCPUFingerprint(testLogger())
|
|
node := &structs.Node{
|
|
Attributes: make(map[string]string),
|
|
}
|
|
ok, err := f.Fingerprint(&config.Config{}, node)
|
|
if err != nil {
|
|
t.Fatalf("err: %v", err)
|
|
}
|
|
if !ok {
|
|
t.Fatalf("should apply")
|
|
}
|
|
|
|
// CPU info
|
|
if node.Attributes["cpu.numcores"] == "" {
|
|
t.Fatalf("Missing Num Cores")
|
|
}
|
|
if node.Attributes["cpu.modelname"] == "" {
|
|
t.Fatalf("Missing Model Name")
|
|
}
|
|
|
|
if node.Attributes["cpu.frequency"] == "" {
|
|
t.Fatalf("Missing CPU Frequency")
|
|
}
|
|
if node.Attributes["cpu.totalcompute"] == "" {
|
|
t.Fatalf("Missing CPU Total Compute")
|
|
}
|
|
|
|
if node.Resources == nil || node.Resources.CPU == 0 {
|
|
t.Fatalf("Expected to find CPU Resources")
|
|
}
|
|
|
|
}
|