-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmultiping_test.go
47 lines (40 loc) · 1015 Bytes
/
multiping_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
package multiping
import (
"fmt"
"net/netip"
"testing"
"github.com/drgkaleda/go-multiping/pingdata"
)
func TestMultiping(t *testing.T) {
const maxCount = 222
data := pingdata.NewPingData()
// Sad truth - agent uses privileged pinger, but in that case tests require root
pinger, err := New(false)
if err != nil {
t.Errorf("Multiping constructor failed %s", err)
}
for i := 1; i <= maxCount; i++ {
data.Add(netip.MustParseAddr(fmt.Sprintf("127.0.0.%d", i)))
}
pinger.Ping(data)
if data.Count() != maxCount {
t.Errorf("Pinger accepts invald IP address")
}
val, ok := data.Get(netip.MustParseAddr("127.0.0.1"))
if !ok {
t.Errorf("Expected localhost missing")
}
if val.Loss() != 0 {
t.Errorf("Localhost ping failed: %f", val.Loss())
}
if val.Latency() < 0 {
t.Errorf("Localhost invalid latency %f", val.Latency())
}
val, ok = data.Get(netip.IPv4Unspecified())
if ok {
t.Errorf("Pinger has invalid host")
}
if val != nil {
t.Errorf("Non existing host invalid stats")
}
}