open-nomad/client/fingerprint/arch_test.go

31 lines
741 B
Go
Raw Normal View History

2015-08-20 23:29:19 +00:00
package fingerprint
import (
"testing"
"github.com/hashicorp/nomad/client/config"
cstructs "github.com/hashicorp/nomad/client/structs"
2018-06-13 22:33:25 +00:00
"github.com/hashicorp/nomad/helper/testlog"
2015-08-20 23:29:19 +00:00
"github.com/hashicorp/nomad/nomad/structs"
)
func TestArchFingerprint(t *testing.T) {
2018-06-13 22:33:25 +00:00
f := NewArchFingerprint(testlog.Logger(t))
2015-08-20 23:29:19 +00:00
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-20 23:29:19 +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")
}
assertNodeAttributeContains(t, response.Attributes, "cpu.arch")
2015-08-20 23:29:19 +00:00
}