TestGetDevices
parent
7c14dfee64
commit
6d3c1df1f5
|
@ -3,12 +3,29 @@
|
||||||
package storage
|
package storage
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
"testing"
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestGetDevices(t *testing.T) {
|
func TestGetDevices(t *testing.T) {
|
||||||
result := GetDevices()
|
result := GetDevices()
|
||||||
|
|
||||||
fmt.Println(result)
|
if len(result) == 0 {
|
||||||
|
t.Log("Expecting at least 1 block device, 0 elements found in slice")
|
||||||
|
t.Fail()
|
||||||
|
}
|
||||||
|
|
||||||
|
foundDevice := false
|
||||||
|
|
||||||
|
t.Log("Looking for a mmcblk0 or sda device")
|
||||||
|
for _, device := range result {
|
||||||
|
if device.ID == "mmcblk0" || device.ID == "sda" {
|
||||||
|
t.Log("Found target device", device.ID)
|
||||||
|
foundDevice = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if !foundDevice {
|
||||||
|
t.Log("Expected to find device mmcblk0 but did not. Devices:", result)
|
||||||
|
t.Fail()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue