github.com/kardianos/nomad@v0.1.3-0.20151022182107-b13df73ee850/client/fingerprint/host_test.go (about)

     1  package fingerprint
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/hashicorp/nomad/client/config"
     7  	"github.com/hashicorp/nomad/nomad/structs"
     8  )
     9  
    10  func TestHostFingerprint(t *testing.T) {
    11  	f := NewHostFingerprint(testLogger())
    12  	node := &structs.Node{
    13  		Attributes: make(map[string]string),
    14  	}
    15  	ok, err := f.Fingerprint(&config.Config{}, node)
    16  	if err != nil {
    17  		t.Fatalf("err: %v", err)
    18  	}
    19  	if !ok {
    20  		t.Fatalf("should apply")
    21  	}
    22  
    23  	// Host info
    24  	for _, key := range []string{"os.name", "os.version", "hostname", "kernel.name"} {
    25  		assertNodeAttributeContains(t, node, key)
    26  	}
    27  }