open-nomad/client/fingerprint/cpu_test.go

98 lines
2.4 KiB
Go
Raw Normal View History

2015-08-26 21:27:44 +00:00
package fingerprint
import (
"testing"
"github.com/hashicorp/nomad/client/config"
cstructs "github.com/hashicorp/nomad/client/structs"
2015-08-26 21:27:44 +00:00
"github.com/hashicorp/nomad/nomad/structs"
)
func TestCPUFingerprint(t *testing.T) {
f := NewCPUFingerprint(testLogger())
node := &structs.Node{
Attributes: make(map[string]string),
}
request := &cstructs.FingerprintRequest{Config: &config.Config{}, Node: node}
var response cstructs.FingerprintResponse
err := f.Fingerprint(request, &response)
2015-08-26 21:27:44 +00:00
if err != nil {
t.Fatalf("err: %v", err)
}
2018-01-31 22:03:55 +00:00
if !response.Detected {
t.Fatalf("expected response to be applicable")
}
2015-08-26 21:27:44 +00:00
// CPU info
attributes := response.Attributes
if attributes == nil {
t.Fatalf("expected attributes to be initialized")
}
if attributes["cpu.numcores"] == "" {
2015-08-26 21:27:44 +00:00
t.Fatalf("Missing Num Cores")
}
if attributes["cpu.modelname"] == "" {
2015-08-26 21:27:44 +00:00
t.Fatalf("Missing Model Name")
}
if attributes["cpu.frequency"] == "" {
2015-08-27 14:19:53 +00:00
t.Fatalf("Missing CPU Frequency")
}
if attributes["cpu.totalcompute"] == "" {
2015-08-27 14:19:53 +00:00
t.Fatalf("Missing CPU Total Compute")
}
if response.Resources == nil || response.Resources.CPU == 0 {
2015-11-07 14:14:25 +00:00
t.Fatalf("Expected to find CPU Resources")
2015-08-27 19:15:56 +00:00
}
2015-08-26 21:27:44 +00:00
}
2017-06-27 18:56:52 +00:00
// TestCPUFingerprint_OverrideCompute asserts that setting cpu_total_compute in
// the client config overrides the detected CPU freq (if any).
func TestCPUFingerprint_OverrideCompute(t *testing.T) {
f := NewCPUFingerprint(testLogger())
node := &structs.Node{
Attributes: make(map[string]string),
}
cfg := &config.Config{}
var originalCPU int
2017-06-27 18:56:52 +00:00
{
request := &cstructs.FingerprintRequest{Config: cfg, Node: node}
var response cstructs.FingerprintResponse
err := f.Fingerprint(request, &response)
if err != nil {
t.Fatalf("err: %v", err)
}
2018-01-31 22:03:55 +00:00
if !response.Detected {
t.Fatalf("expected response to be applicable")
}
if response.Resources.CPU == 0 {
t.Fatalf("expected fingerprint of cpu of but found 0")
}
2017-06-27 18:56:52 +00:00
originalCPU = response.Resources.CPU
2017-06-27 18:56:52 +00:00
}
{
// Override it with a setting
cfg.CpuCompute = originalCPU + 123
// Make sure the Fingerprinter applies the override to the node resources
request := &cstructs.FingerprintRequest{Config: cfg, Node: node}
var response cstructs.FingerprintResponse
err := f.Fingerprint(request, &response)
if err != nil {
t.Fatalf("err: %v", err)
}
if response.Resources.CPU != cfg.CpuCompute {
t.Fatalf("expected override cpu of %d but found %d", cfg.CpuCompute, response.Resources.CPU)
}
2017-06-27 18:56:52 +00:00
}
}