-
Notifications
You must be signed in to change notification settings - Fork 881
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix marshalling and add test Signed-off-by: Flavio Crisciani <[email protected]>
- Loading branch information
Flavio Crisciani
committed
Oct 4, 2017
1 parent
2154459
commit c32647e
Showing
2 changed files
with
42 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package overlay | ||
|
||
import ( | ||
"net" | ||
"testing" | ||
|
||
_ "github.com/docker/libnetwork/testutils" | ||
) | ||
|
||
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) | ||
} | ||
} |