open-nomad/client/fingerprint/nomad_test.go

57 lines
1.2 KiB
Go
Raw Normal View History

2016-03-23 00:12:30 +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"
2016-03-23 00:12:30 +00:00
"github.com/hashicorp/nomad/nomad/structs"
2017-08-16 23:14:59 +00:00
"github.com/hashicorp/nomad/version"
2016-03-23 00:12:30 +00:00
)
func TestNomadFingerprint(t *testing.T) {
2018-06-13 22:33:25 +00:00
f := NewNomadFingerprint(testlog.Logger(t))
2016-03-23 00:12:30 +00:00
v := "foo"
r := "123"
h := "8.8.8.8:4646"
2016-03-23 00:12:30 +00:00
c := &config.Config{
2017-08-16 23:14:59 +00:00
Version: &version.VersionInfo{
Revision: r,
Version: v,
},
2016-03-23 00:12:30 +00:00
}
node := &structs.Node{
Attributes: make(map[string]string),
HTTPAddr: h,
}
request := &cstructs.FingerprintRequest{Config: c, Node: node}
var response cstructs.FingerprintResponse
err := f.Fingerprint(request, &response)
2016-03-23 00:12:30 +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")
}
if len(response.Attributes) == 0 {
2016-03-23 00:12:30 +00:00
t.Fatalf("should apply")
}
if response.Attributes["nomad.version"] != v {
2016-03-23 00:12:30 +00:00
t.Fatalf("incorrect version")
}
if response.Attributes["nomad.revision"] != r {
2016-03-23 00:12:30 +00:00
t.Fatalf("incorrect revision")
}
if response.Attributes["nomad.advertise.address"] != h {
t.Fatalf("incorrect advertise address")
}
2016-03-23 00:12:30 +00:00
}