1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-28 13:48:49 +08:00
shirou_gopsutil/net/net_test.go

279 lines
6.7 KiB
Go
Raw Normal View History

2014-12-30 22:09:05 +09:00
package net
2014-05-12 00:12:43 +09:00
import (
2021-12-04 22:29:38 +01:00
"errors"
2014-05-12 00:12:43 +09:00
"fmt"
"os"
"runtime"
2014-05-12 11:51:08 +09:00
"testing"
"github.com/shirou/gopsutil/v3/internal/common"
2014-05-12 00:12:43 +09:00
)
func skipIfNotImplementedErr(t *testing.T, err error) {
2021-12-04 22:29:38 +01:00
if errors.Is(err, common.ErrNotImplementedError) {
t.Skip("not implemented")
}
}
2014-05-12 00:12:43 +09:00
func TestAddrString(t *testing.T) {
v := Addr{IP: "192.168.0.1", Port: 8000}
2014-05-12 00:12:43 +09:00
s := fmt.Sprintf("%v", v)
if s != `{"ip":"192.168.0.1","port":8000}` {
2014-05-12 00:12:43 +09:00
t.Errorf("Addr string is invalid: %v", v)
}
}
func TestNetIOCountersStatString(t *testing.T) {
v := IOCountersStat{
2014-05-12 11:51:08 +09:00
Name: "test",
2014-05-12 00:12:43 +09:00
BytesSent: 100,
}
e := `{"name":"test","bytesSent":100,"bytesRecv":0,"packetsSent":0,"packetsRecv":0,"errin":0,"errout":0,"dropin":0,"dropout":0,"fifoin":0,"fifoout":0}`
2014-05-12 00:12:43 +09:00
if e != fmt.Sprintf("%v", v) {
t.Errorf("NetIOCountersStat string is invalid: %v", v)
}
}
2015-11-19 14:19:43 -07:00
func TestNetProtoCountersStatString(t *testing.T) {
v := ProtoCountersStat{
2015-11-19 14:19:43 -07:00
Protocol: "tcp",
Stats: map[string]int64{
"MaxConn": -1,
"ActiveOpens": 4000,
"PassiveOpens": 3000,
},
}
e := `{"protocol":"tcp","stats":{"ActiveOpens":4000,"MaxConn":-1,"PassiveOpens":3000}}`
if e != fmt.Sprintf("%v", v) {
t.Errorf("NetProtoCountersStat string is invalid: %v", v)
}
}
2014-05-12 00:12:43 +09:00
func TestNetConnectionStatString(t *testing.T) {
v := ConnectionStat{
2014-05-12 11:51:08 +09:00
Fd: 10,
2014-05-12 00:12:43 +09:00
Family: 10,
2014-05-12 11:51:08 +09:00
Type: 10,
2016-10-06 15:46:14 +02:00
Uids: []int32{10, 10},
2014-05-12 00:12:43 +09:00
}
2016-10-06 15:38:56 +02:00
e := `{"fd":10,"family":10,"type":10,"localaddr":{"ip":"","port":0},"remoteaddr":{"ip":"","port":0},"status":"","uids":[10,10],"pid":0}`
2014-05-12 00:12:43 +09:00
if e != fmt.Sprintf("%v", v) {
t.Errorf("NetConnectionStat string is invalid: %v", v)
}
}
2015-01-01 21:29:25 +09:00
func TestNetIOCountersAll(t *testing.T) {
v, err := IOCounters(false)
skipIfNotImplementedErr(t, err)
2018-06-21 17:00:15 +02:00
if err != nil {
t.Errorf("Could not get NetIOCounters: %v", err)
}
per, err := IOCounters(true)
skipIfNotImplementedErr(t, err)
2015-01-01 21:29:25 +09:00
if err != nil {
t.Errorf("Could not get NetIOCounters: %v", err)
}
if len(v) != 1 {
t.Errorf("Could not get NetIOCounters: %v", v)
}
if v[0].Name != "all" {
t.Errorf("Invalid NetIOCounters: %v", v)
}
var pr uint64
for _, p := range per {
pr += p.PacketsRecv
}
// small diff is ok, compare instead of math.Abs(subtraction) with uint64
var diff uint64
if v[0].PacketsRecv > pr {
diff = v[0].PacketsRecv - pr
} else {
diff = pr - v[0].PacketsRecv
}
if diff > 5 {
2021-05-08 22:31:05 +09:00
if ci := os.Getenv("CI"); ci != "" {
// This test often fails in CI. so just print even if failed.
fmt.Printf("invalid sum value: %v, %v", v[0].PacketsRecv, pr)
} else {
t.Errorf("invalid sum value: %v, %v", v[0].PacketsRecv, pr)
}
2015-01-01 21:29:25 +09:00
}
}
func TestNetIOCountersPerNic(t *testing.T) {
v, err := IOCounters(true)
skipIfNotImplementedErr(t, err)
2014-05-12 11:51:08 +09:00
if err != nil {
2014-05-12 00:12:43 +09:00
t.Errorf("Could not get NetIOCounters: %v", err)
}
2014-05-12 11:51:08 +09:00
if len(v) == 0 {
2014-05-12 00:12:43 +09:00
t.Errorf("Could not get NetIOCounters: %v", v)
}
2014-05-12 11:51:08 +09:00
for _, vv := range v {
if vv.Name == "" {
2014-05-12 00:12:43 +09:00
t.Errorf("Invalid NetIOCounters: %v", vv)
}
}
}
func TestGetNetIOCountersAll(t *testing.T) {
n := []IOCountersStat{
2017-04-27 14:40:43 -07:00
{
2015-01-01 21:29:25 +09:00
Name: "a",
BytesRecv: 10,
PacketsRecv: 10,
},
2017-04-27 14:40:43 -07:00
{
2015-01-01 21:29:25 +09:00
Name: "b",
BytesRecv: 10,
PacketsRecv: 10,
Errin: 10,
},
}
ret, err := getIOCountersAll(n)
skipIfNotImplementedErr(t, err)
2015-01-01 21:29:25 +09:00
if err != nil {
t.Error(err)
}
if len(ret) != 1 {
t.Errorf("invalid return count")
}
if ret[0].Name != "all" {
t.Errorf("invalid return name")
}
if ret[0].BytesRecv != 20 {
t.Errorf("invalid count bytesrecv")
}
if ret[0].Errin != 10 {
t.Errorf("invalid count errin")
}
}
2014-06-03 00:39:47 +09:00
func TestNetInterfaces(t *testing.T) {
v, err := Interfaces()
skipIfNotImplementedErr(t, err)
2014-06-03 00:39:47 +09:00
if err != nil {
t.Errorf("Could not get NetInterfaceStat: %v", err)
}
2014-06-03 00:39:47 +09:00
if len(v) == 0 {
t.Errorf("Could not get NetInterfaceStat: %v", err)
}
2014-06-03 00:39:47 +09:00
for _, vv := range v {
if vv.Name == "" {
t.Errorf("Invalid NetInterface: %v", vv)
}
}
}
2015-11-19 14:19:43 -07:00
func TestNetProtoCountersStatsAll(t *testing.T) {
v, err := ProtoCounters(nil)
skipIfNotImplementedErr(t, err)
2015-11-19 14:19:43 -07:00
if err != nil {
t.Fatalf("Could not get NetProtoCounters: %v", err)
}
if len(v) == 0 {
t.Fatalf("Could not get NetProtoCounters: %v", err)
}
for _, vv := range v {
if vv.Protocol == "" {
t.Errorf("Invalid NetProtoCountersStat: %v", vv)
}
if len(vv.Stats) == 0 {
t.Errorf("Invalid NetProtoCountersStat: %v", vv)
}
}
}
func TestNetProtoCountersStats(t *testing.T) {
v, err := ProtoCounters([]string{"tcp", "ip"})
skipIfNotImplementedErr(t, err)
2015-11-19 14:19:43 -07:00
if err != nil {
t.Fatalf("Could not get NetProtoCounters: %v", err)
}
if len(v) == 0 {
t.Fatalf("Could not get NetProtoCounters: %v", err)
}
if len(v) != 2 {
t.Fatalf("Go incorrect number of NetProtoCounters: %v", err)
}
for _, vv := range v {
if vv.Protocol != "tcp" && vv.Protocol != "ip" {
t.Errorf("Invalid NetProtoCountersStat: %v", vv)
}
if len(vv.Stats) == 0 {
t.Errorf("Invalid NetProtoCountersStat: %v", vv)
}
}
}
func TestNetConnections(t *testing.T) {
if ci := os.Getenv("CI"); ci != "" { // skip if test on drone.io
return
}
v, err := Connections("inet")
skipIfNotImplementedErr(t, err)
if err != nil {
t.Errorf("could not get NetConnections: %v", err)
}
if len(v) == 0 {
t.Errorf("could not get NetConnections: %v", v)
}
for _, vv := range v {
if vv.Family == 0 {
t.Errorf("invalid NetConnections: %v", vv)
}
}
}
func TestNetFilterCounters(t *testing.T) {
if ci := os.Getenv("CI"); ci != "" { // skip if test on drone.io
return
}
if runtime.GOOS == "linux" {
// some test environment has not the path.
if !common.PathExists("/proc/sys/net/netfilter/nf_connTrackCount") {
t.SkipNow()
}
}
v, err := FilterCounters()
skipIfNotImplementedErr(t, err)
if err != nil {
t.Errorf("could not get NetConnections: %v", err)
}
if len(v) == 0 {
t.Errorf("could not get NetConnections: %v", v)
}
for _, vv := range v {
if vv.ConnTrackMax == 0 {
t.Errorf("nf_connTrackMax needs to be greater than zero: %v", vv)
}
}
}
func TestInterfaceStatString(t *testing.T) {
v := InterfaceStat{
Index: 0,
MTU: 1500,
Name: "eth0",
HardwareAddr: "01:23:45:67:89:ab",
Flags: []string{"up", "down"},
Addrs: InterfaceAddrList{{Addr: "1.2.3.4"}, {Addr: "5.6.7.8"}},
}
s := fmt.Sprintf("%v", v)
if s != `{"index":0,"mtu":1500,"name":"eth0","hardwareAddr":"01:23:45:67:89:ab","flags":["up","down"],"addrs":[{"addr":"1.2.3.4"},{"addr":"5.6.7.8"}]}` {
t.Errorf("InterfaceStat string is invalid: %v", s)
}
list := InterfaceStatList{v, v}
s = fmt.Sprintf("%v", list)
if s != `[{"index":0,"mtu":1500,"name":"eth0","hardwareAddr":"01:23:45:67:89:ab","flags":["up","down"],"addrs":[{"addr":"1.2.3.4"},{"addr":"5.6.7.8"}]},{"index":0,"mtu":1500,"name":"eth0","hardwareAddr":"01:23:45:67:89:ab","flags":["up","down"],"addrs":[{"addr":"1.2.3.4"},{"addr":"5.6.7.8"}]}]` {
t.Errorf("InterfaceStatList string is invalid: %v", s)
}
}