-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdevice_test.go
91 lines (75 loc) · 2.58 KB
/
device_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package exporter
import (
"testing"
"time"
"github.com/ffddorf/unms-exporter/models"
)
const (
ms = time.Millisecond
µs = time.Microsecond //nolint:asciicheck
)
type metricExpectation map[string]struct {
actual interface{}
satisfied bool
}
func comparePingMetrics(t *testing.T, expectations metricExpectation, actual *PingMetrics) {
t.Helper()
anyFailure := false
for field, expectation := range expectations {
if !expectation.satisfied {
anyFailure = true
t.Errorf("unexpected value for field %q: %v", field, expectation.actual)
}
}
if anyFailure {
t.FailNow()
}
}
func TestDevice_PingMetrics_connected(t *testing.T) {
t.Parallel()
subject := Device{
Statistics: &models.DeviceStatistics{
Ping: models.ListOfCoordinates{{Y: 5}, {Y: 10}, {Y: 25}, {Y: 15}, {Y: 1}}, // x values are ignored
},
}
actual := subject.PingMetrics()
if actual == nil {
t.Fatal("expected PingMetrics() to return somthing, got nil")
}
comparePingMetrics(t, metricExpectation{
"packets sent": {actual.PacketsSent, actual.PacketsSent == 5},
"packets lost": {actual.PacketsLost, actual.PacketsLost == 0},
"rtt best": {actual.Best, actual.Best == 1*ms},
"rtt worst": {actual.Worst, actual.Worst == 25*ms},
"rtt median": {actual.Median, actual.Median == 10*ms},
"rtt meain": {actual.Mean, actual.Mean == 11200*µs}, // 11.2ms
"rtt std dev": {actual.StdDev, 8350*µs < actual.StdDev && actual.StdDev < 8360*µs}, // ~8.352245ms
}, actual)
}
func TestDevice_PingMetrics_missingPackets(t *testing.T) {
t.Parallel()
subject := Device{
Statistics: &models.DeviceStatistics{
Ping: models.ListOfCoordinates{nil, {Y: 100}, {Y: 250}, nil, {Y: 120}},
},
}
actual := subject.PingMetrics()
if actual == nil {
t.Fatal("expected PingMetrics() to return somthing, got nil")
}
comparePingMetrics(t, metricExpectation{
"packets sent": {actual.PacketsSent, actual.PacketsSent == 5},
"packets lost": {actual.PacketsLost, actual.PacketsLost == 2},
"rtt best": {actual.Best, actual.Best == 100*ms},
"rtt worst": {actual.Worst, actual.Worst == 250*ms},
"rtt median": {actual.Median, actual.Median == 120*ms},
"rtt meain": {actual.Mean, 156666*µs < actual.Mean && actual.Mean < 156667*µs}, // 156.66666ms
"rtt std dev": {actual.StdDev, 66499*µs < actual.StdDev && actual.StdDev < 66500*µs}, // ~66.499791ms
}, actual)
}
func TestDevice_PingMetrics_disconnected(t *testing.T) {
t.Parallel()
if actual := (&Device{}).PingMetrics(); actual != nil {
t.Errorf("expected PingMetrics() to return nil, got %+v", actual)
}
}