Add test case for smart serial number

This commit is contained in:
Daniel Nelson 2019-09-30 10:42:47 -07:00
parent fc1b1e8d20
commit 9867fe3279
No known key found for this signature in database
GPG Key ID: CAAD59C9444F6155
2 changed files with 50 additions and 8 deletions

View File

@ -119,7 +119,6 @@ type Smart struct {
Devices []string
UseSudo bool
Timeout internal.Duration
Log telegraf.Logger
}
var sampleConfig = `
@ -209,10 +208,7 @@ func (m *Smart) scan() ([]string, error) {
for _, line := range strings.Split(string(out), "\n") {
dev := strings.Split(line, " ")
if len(dev) > 1 && !excludedDev(m.Excludes, strings.TrimSpace(dev[0])) {
m.Log.Debugf("Adding device: %+#v", dev)
devices = append(devices, strings.TrimSpace(dev[0]))
} else {
m.Log.Debugf("Skipping device: %+#v", dev)
}
}
return devices, nil

View File

@ -15,7 +15,6 @@ import (
func TestGatherAttributes(t *testing.T) {
s := NewSmart()
s.Log = testutil.Logger{}
s.Path = "smartctl"
s.Attributes = true
@ -331,7 +330,6 @@ func TestGatherAttributes(t *testing.T) {
func TestGatherNoAttributes(t *testing.T) {
s := NewSmart()
s.Log = testutil.Logger{}
s.Path = "smartctl"
s.Attributes = false
@ -440,8 +438,56 @@ func TestGatherHtSAS(t *testing.T) {
wg.Add(1)
gatherDisk(acc, internal.Duration{Duration: time.Second * 30}, true, true, "", "", "", wg)
assert.Equal(t, 5, acc.NFields(), "Wrong number of fields gathered")
assert.Equal(t, uint64(3), acc.NMetrics(), "Wrong number of metrics gathered")
expected := []telegraf.Metric{
testutil.MustMetric(
"smart_attribute",
map[string]string{
"device": ".",
"serial_no": "PDWAR9GE",
"enabled": "Enabled",
"id": "194",
"model": "HUC103030CSS600",
"name": "Temperature_Celsius",
},
map[string]interface{}{
"raw_value": 36,
},
time.Unix(0, 0),
),
testutil.MustMetric(
"smart_attribute",
map[string]string{
"device": ".",
"serial_no": "PDWAR9GE",
"enabled": "Enabled",
"id": "4",
"model": "HUC103030CSS600",
"name": "Start_Stop_Count",
},
map[string]interface{}{
"raw_value": 47,
},
time.Unix(0, 0),
),
testutil.MustMetric(
"smart_device",
map[string]string{
"device": ".",
"serial_no": "PDWAR9GE",
"enabled": "Enabled",
"model": "HUC103030CSS600",
},
map[string]interface{}{
"exit_status": 0,
"health_ok": true,
"temp_c": 36,
},
time.Unix(0, 0),
),
}
testutil.RequireMetricsEqual(t, expected, acc.GetTelegrafMetrics(), testutil.SortMetrics(), testutil.IgnoreTime())
}
func TestGatherSSD(t *testing.T) {