46 lines
1.2 KiB
Go
46 lines
1.2 KiB
Go
package fingerprint
|
|
|
|
import (
|
|
"strconv"
|
|
"testing"
|
|
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
|
)
|
|
|
|
func TestStorageFingerprint(t *testing.T) {
|
|
fp := NewStorageFingerprint(testLogger())
|
|
node := &structs.Node{
|
|
Attributes: make(map[string]string),
|
|
}
|
|
|
|
response := assertFingerprintOK(t, fp, node)
|
|
|
|
if !response.Detected {
|
|
t.Fatalf("expected response to be applicable")
|
|
}
|
|
|
|
assertNodeAttributeContains(t, response.Attributes, "unique.storage.volume")
|
|
assertNodeAttributeContains(t, response.Attributes, "unique.storage.bytestotal")
|
|
assertNodeAttributeContains(t, response.Attributes, "unique.storage.bytesfree")
|
|
|
|
total, err := strconv.ParseInt(response.Attributes["unique.storage.bytestotal"], 10, 64)
|
|
if err != nil {
|
|
t.Fatalf("Failed to parse unique.storage.bytestotal: %s", err)
|
|
}
|
|
free, err := strconv.ParseInt(response.Attributes["unique.storage.bytesfree"], 10, 64)
|
|
if err != nil {
|
|
t.Fatalf("Failed to parse unique.storage.bytesfree: %s", err)
|
|
}
|
|
|
|
if free > total {
|
|
t.Fatalf("unique.storage.bytesfree %d is larger than unique.storage.bytestotal %d", free, total)
|
|
}
|
|
|
|
if response.Resources == nil {
|
|
t.Fatalf("Node Resources was nil")
|
|
}
|
|
if response.Resources.DiskMB == 0 {
|
|
t.Errorf("Expected node.Resources.DiskMB to be non-zero")
|
|
}
|
|
}
|