1
0
mirror of https://github.com/bgp/stayrtr.git synced 2024-05-06 15:54:54 +00:00
bgp-stayrtr/cmd/stayrtr/stayrtr_test.go

136 lines
2.6 KiB
Go
Raw Normal View History

2021-10-25 20:52:41 -04:00
package main
import (
"net"
2021-10-27 18:16:16 -04:00
"os"
2021-10-25 20:52:41 -04:00
"testing"
rtr "github.com/bgp/stayrtr/lib"
"github.com/bgp/stayrtr/prefixfile"
"github.com/google/go-cmp/cmp"
)
func TestProcessData(t *testing.T) {
var stuff []prefixfile.VRPJson
stuff = append(stuff,
prefixfile.VRPJson{
Prefix: "192.168.0.0/24",
Length: 24,
ASN: 123,
TA: "testrir",
},
prefixfile.VRPJson{
Prefix: "192.168.0.0/24",
Length: 24,
TA: "testrir",
},
prefixfile.VRPJson{
Prefix: "2001:db8::/32",
Length: 33,
ASN: "AS123",
TA: "testrir",
},
prefixfile.VRPJson{
Prefix: "192.168.1.0/24",
Length: 25,
ASN: 123,
TA: "testrir",
},
// Invalid. Length is 0
prefixfile.VRPJson{
Prefix: "192.168.1.0/24",
Length: 0,
ASN: 123,
TA: "testrir",
},
// Invalid. Length less than prefix length
prefixfile.VRPJson{
Prefix: "192.168.1.0/24",
Length: 16,
ASN: 123,
TA: "testrir",
},
// Invalid. 129 is invalid for IPv6
prefixfile.VRPJson{
Prefix: "2001:db8::/32",
Length: 129,
ASN: 123,
TA: "testrir",
},
// Invalid. 33 is invalid for IPv4
prefixfile.VRPJson{
Prefix: "192.168.1.0/24",
Length: 33,
ASN: 123,
TA: "testrir",
},
// Invalid. Not a prefix
prefixfile.VRPJson{
Prefix: "192.168.1.0",
Length: 24,
ASN: 123,
TA: "testrir",
},
// Invalid. Not a prefix
prefixfile.VRPJson{
Prefix: "👻",
Length: 24,
ASN: 123,
TA: "testrir",
},
// Invalid. Invalid ASN string
prefixfile.VRPJson{
Prefix: "192.168.1.0/22",
Length: 22,
ASN: "ASN123",
TA: "testrir",
},
)
got, count, v4count, v6count := processData(stuff)
want := []rtr.VRP{
{
2021-10-27 18:16:16 -04:00
Prefix: mustParseIPNet("192.168.0.0/24"),
2021-10-25 20:52:41 -04:00
MaxLen: 24,
ASN: 123,
},
{
2021-10-27 18:16:16 -04:00
Prefix: mustParseIPNet("2001:db8::/32"),
2021-10-25 20:52:41 -04:00
MaxLen: 33,
ASN: 123,
},
{
2021-10-27 18:16:16 -04:00
Prefix: mustParseIPNet("192.168.1.0/24"),
2021-10-25 20:52:41 -04:00
MaxLen: 25,
ASN: 123,
},
}
if count != 3 || v4count != 2 || v6count != 1 {
t.Errorf("Wanted count = 3, v4count = 2, v6count = 1, but got %d, %d, %d", count, v4count, v6count)
}
if !cmp.Equal(got, want) {
t.Errorf("Want (%+v), Got (%+v)", want, got)
}
}
2021-10-27 18:16:16 -04:00
// mustParseIPNet is a test helper function to return a net.IPNet
2021-10-25 20:52:41 -04:00
// This should only be called in test code, and it'll panic on test set up
// if unable to parse.
2021-10-27 18:16:16 -04:00
func mustParseIPNet(prefix string) net.IPNet {
2021-10-25 20:52:41 -04:00
_, ipnet, err := net.ParseCIDR(prefix)
if err != nil {
panic(err)
}
return *ipnet
}
2021-10-27 18:16:16 -04:00
func BenchmarkDecodeJSON(b *testing.B) {
json, err := os.ReadFile("test.rpki.json")
if err != nil {
panic(err)
}
for n := 0; n < b.N; n++ {
decodeJSON(json)
}
}