Rename linux collectors for build constraints.

This commit is contained in:
Siavash Safi 2015-05-12 15:55:42 +04:30
commit 66e0171159
15 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,27 @@
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)
}
}