added test for down ospf protocols, increased version number

This commit is contained in:
Daniel Czerwonk 2017-05-16 14:58:00 +02:00
parent 8cf47f1aa4
commit 927118bcdc
2 changed files with 16 additions and 2 deletions

View File

@ -11,7 +11,7 @@ import (
"os"
)
const version string = "0.5.2"
const version string = "0.5.3"
var (
showVersion = flag.Bool("version", false, "Print version information.")

View File

@ -80,7 +80,7 @@ func TestOspfOldTimeFormat(t *testing.T) {
}
func TestOspfCurrentTimeFormat(t *testing.T) {
data := "ospf1 OSPF master up 00:01:00 Established\ntest\nbar\n Routes: 12 imported, 34 exported, 100 preferred\nxxx"
data := "ospf1 OSPF master up 00:01:00 Running\ntest\nbar\n Routes: 12 imported, 34 exported, 100 preferred\nxxx"
p := parseOutput([]byte(data), 4)
assert.IntEqual("protocols", 1, len(p), t)
@ -93,3 +93,17 @@ func TestOspfCurrentTimeFormat(t *testing.T) {
assert.IntEqual("ipVersion", 4, x.ipVersion, t)
assert.IntEqual("uptime", 60, x.uptime, t)
}
func TestOspfProtocolDown(t *testing.T) {
data := "o_hrz OSPF t_hrz down 1494926415 \n Preference: 150\n Input filter: ACCEPT\n Output filter: REJECT\nxxx"
p := parseOutput([]byte(data), 6)
assert.IntEqual("protocols", 1, len(p), t)
x := p[0]
assert.StringEqual("name", "o_hrz", x.name, t)
assert.IntEqual("proto", OSPF, x.proto, t)
assert.IntEqual("established", 0, x.up, t)
assert.Int64Equal("imported", 0, x.imported, t)
assert.Int64Equal("exported", 0, x.exported, t)
assert.IntEqual("ipVersion", 6, x.ipVersion, t)
}