aboutsummaryrefslogtreecommitdiffstats
path: root/whisper/peer_test.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2015-04-16 18:05:35 +0800
committerPéter Szilágyi <peterke@gmail.com>2015-04-16 18:05:35 +0800
commite5e91e9eb394e7b495666834586073052dc58265 (patch)
treea4442f6392aa6e5d3777916921cd79292c914082 /whisper/peer_test.go
parentee6531c5ff712307325e8866b73397179f4bb8cd (diff)
downloaddexon-e5e91e9eb394e7b495666834586073052dc58265.tar
dexon-e5e91e9eb394e7b495666834586073052dc58265.tar.gz
dexon-e5e91e9eb394e7b495666834586073052dc58265.tar.bz2
dexon-e5e91e9eb394e7b495666834586073052dc58265.tar.lz
dexon-e5e91e9eb394e7b495666834586073052dc58265.tar.xz
dexon-e5e91e9eb394e7b495666834586073052dc58265.tar.zst
dexon-e5e91e9eb394e7b495666834586073052dc58265.zip
whisper: track active peers, add peer cache expiry test
Diffstat (limited to 'whisper/peer_test.go')
-rw-r--r--whisper/peer_test.go50
1 files changed, 50 insertions, 0 deletions
diff --git a/whisper/peer_test.go b/whisper/peer_test.go
index de67b2463..9008cdc59 100644
--- a/whisper/peer_test.go
+++ b/whisper/peer_test.go
@@ -190,3 +190,53 @@ func TestPeerDeliver(t *testing.T) {
t.Fatalf("repeating message arrived")
}
}
+
+func TestPeerMessageExpiration(t *testing.T) {
+ // Start a tester and execute the handshake
+ tester, err := startTestPeerInited()
+ if err != nil {
+ t.Fatalf("failed to start initialized peer: %v", err)
+ }
+ defer tester.stream.Close()
+
+ // Fetch the peer instance for later inspection
+ tester.client.peerMu.RLock()
+ if peers := len(tester.client.peers); peers != 1 {
+ t.Fatalf("peer pool size mismatch: have %v, want %v", peers, 1)
+ }
+ var peer *peer
+ for peer, _ = range tester.client.peers {
+ break
+ }
+ tester.client.peerMu.RUnlock()
+
+ // Construct a message and pass it through the tester
+ message := NewMessage([]byte("peer test message"))
+ envelope, err := message.Wrap(DefaultPoW, Options{
+ TTL: time.Second,
+ })
+ if err != nil {
+ t.Fatalf("failed to wrap message: %v", err)
+ }
+ if err := tester.client.Send(envelope); err != nil {
+ t.Fatalf("failed to send message: %v", err)
+ }
+ payload := []interface{}{envelope}
+ if err := p2p.ExpectMsg(tester.stream, messagesCode, payload); err != nil {
+ t.Fatalf("message mismatch: %v", err)
+ }
+ // Check that the message is inside the cache
+ if !peer.known.Has(envelope.Hash()) {
+ t.Fatalf("message not found in cache")
+ }
+ // Discard messages until expiration and check cache again
+ exp := time.Now().Add(time.Second + expirationCycle)
+ for time.Now().Before(exp) {
+ if err := p2p.ExpectMsg(tester.stream, messagesCode, []interface{}{}); err != nil {
+ t.Fatalf("message mismatch: %v", err)
+ }
+ }
+ if peer.known.Has(envelope.Hash()) {
+ t.Fatalf("message not expired from cache")
+ }
+}