lib/model: Add test for previous commit

This commit is contained in:
Jakob Borg 2019-11-08 17:03:25 +01:00
parent cd290d2d05
commit 88244b0c1f
1 changed files with 13 additions and 0 deletions

View File

@ -3384,3 +3384,16 @@ func TestDevicePause(t *testing.T) {
t.Fatal("Timed out before device was paused")
}
}
func TestDeviceWasSeen(t *testing.T) {
m, _, fcfg := setupModelWithConnection()
defer cleanupModelAndRemoveDir(m, fcfg.Filesystem().URI())
m.deviceWasSeen(device1)
stats := m.DeviceStatistics()
entry := stats[device1.String()]
if time.Since(entry.LastSeen) > time.Second {
t.Error("device should have been seen now")
}
}