mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-11-10 07:34:09 -08:00
28 lines
538 B
Go
28 lines
538 B
Go
package collector
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
)
|
|
|
|
func TestTCPStat(t *testing.T) {
|
|
file, err := os.Open("fixtures/tcpstat")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
defer file.Close()
|
|
|
|
tcpStats, err := parseTCPStats(file)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if want, got := 1, int(tcpStats[TCP_ESTABLISHED]); want != got {
|
|
t.Errorf("want tcpstat number of established state %d, got %d", want, got)
|
|
}
|
|
|
|
if want, got := 1, int(tcpStats[TCP_LISTEN]); want != got {
|
|
t.Errorf("want tcpstat number of listen state %d, got %d", want, got)
|
|
}
|
|
}
|