Make topology test more generic

This commit is contained in:
Milos Gajdos 2019-09-11 01:22:40 +01:00
parent 2dfbe93d65
commit 35cf2a5739
No known key found for this signature in database
GPG Key ID: 8B31058CC55DFD4F

View File

@ -157,6 +157,22 @@ func TestPeers(t *testing.T) {
} }
} }
func collectTopologyIds(peers map[string]*node, ids map[string]bool) map[string]bool {
if len(peers) == 0 {
return ids
}
// iterate through the whole graph
for id, peer := range peers {
ids = collectTopologyIds(peer.peers, ids)
if _, ok := ids[id]; !ok {
ids[id] = true
}
}
return ids
}
func TestTopology(t *testing.T) { func TestTopology(t *testing.T) {
// single node // single node
single := &node{ single := &node{
@ -200,17 +216,16 @@ func TestTopology(t *testing.T) {
} }
topology = node.Topology(2) topology = node.Topology(2)
// iterate through the whole graph topIds := make(map[string]bool)
// NOTE: this is a manual iteration as we know the size of the graph topIds = collectTopologyIds(topology.peers, topIds)
for id, peer := range topology.peers {
if _, ok := peerIds[id]; !ok { if len(topIds) != len(peerIds) {
t.Errorf("Expected to find %s peer", peer.Id()) t.Errorf("Expected to find %d nodes, found: %d", len(peerIds), len(topIds))
} }
// peers of peers
for id := range peer.peers { for id := range topIds {
if _, ok := peerIds[id]; !ok { if _, ok := topIds[id]; !ok {
t.Errorf("Expected to find %s peer", peer.Id()) t.Errorf("Expected to find %s peer", id)
}
} }
} }
} }