19 lines
408 B
Go
19 lines
408 B
Go
package fingerprint
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/hashicorp/nomad/helper/testlog"
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
|
)
|
|
|
|
func TestSignalFingerprint(t *testing.T) {
|
|
fp := NewSignalFingerprint(testlog.HCLogger(t))
|
|
node := &structs.Node{
|
|
Attributes: make(map[string]string),
|
|
}
|
|
|
|
response := assertFingerprintOK(t, fp, node)
|
|
assertNodeAttributeContains(t, response.Attributes, "os.signals")
|
|
}
|