mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
686be57d0a
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
31 lines
785 B
Go
31 lines
785 B
Go
//go:build linux
|
|
// +build linux
|
|
|
|
package overlay
|
|
|
|
import (
|
|
"net"
|
|
"testing"
|
|
)
|
|
|
|
func TestPeerMarshal(t *testing.T) {
|
|
_, ipNet, _ := net.ParseCIDR("192.168.0.1/24")
|
|
p := &peerEntry{eid: "eid",
|
|
isLocal: true,
|
|
peerIPMask: ipNet.Mask,
|
|
vtep: ipNet.IP}
|
|
entryDB := p.MarshalDB()
|
|
x := entryDB.UnMarshalDB()
|
|
if x.eid != p.eid {
|
|
t.Fatalf("Incorrect Unmarshalling for eid: %v != %v", x.eid, p.eid)
|
|
}
|
|
if x.isLocal != p.isLocal {
|
|
t.Fatalf("Incorrect Unmarshalling for isLocal: %v != %v", x.isLocal, p.isLocal)
|
|
}
|
|
if x.peerIPMask.String() != p.peerIPMask.String() {
|
|
t.Fatalf("Incorrect Unmarshalling for eid: %v != %v", x.peerIPMask, p.peerIPMask)
|
|
}
|
|
if x.vtep.String() != p.vtep.String() {
|
|
t.Fatalf("Incorrect Unmarshalling for eid: %v != %v", x.vtep, p.vtep)
|
|
}
|
|
}
|