mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
d077483577
* v3 import renamings * tidy * fmt * rev * Update beacon-chain/core/epoch/precompute/reward_penalty_test.go * Update beacon-chain/core/helpers/validators_test.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/iface/BUILD.bazel * Update beacon-chain/db/kv/kv.go * Update beacon-chain/db/kv/state.go * Update beacon-chain/rpc/prysm/v1alpha1/validator/attester_test.go * Update beacon-chain/rpc/prysm/v1alpha1/validator/attester_test.go * Update beacon-chain/sync/initial-sync/service.go * fix deps * fix bad replacements * fix bad replacements * change back * gohashtree version * fix deps Co-authored-by: Nishant Das <nishdas93@gmail.com> Co-authored-by: Potuz <potuz@prysmaticlabs.com>
97 lines
3.4 KiB
Go
97 lines
3.4 KiB
Go
package sync
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
"time"
|
|
|
|
pubsub "github.com/libp2p/go-libp2p-pubsub"
|
|
"github.com/prysmaticlabs/prysm/v3/beacon-chain/p2p"
|
|
"github.com/prysmaticlabs/prysm/v3/beacon-chain/p2p/encoder"
|
|
"github.com/prysmaticlabs/prysm/v3/network/forks"
|
|
"github.com/prysmaticlabs/prysm/v3/testing/assert"
|
|
)
|
|
|
|
func TestSubTopicHandler_CRUD(t *testing.T) {
|
|
h := newSubTopicHandler()
|
|
// Non-existent topic
|
|
assert.Equal(t, false, h.topicExists("junk"))
|
|
assert.Equal(t, false, h.digestExists([4]byte{}))
|
|
|
|
digest, err := forks.CreateForkDigest(time.Now(), make([]byte, 32))
|
|
assert.NoError(t, err)
|
|
enc := encoder.SszNetworkEncoder{}
|
|
|
|
// Valid topic added in.
|
|
topic := fmt.Sprintf(p2p.BlockSubnetTopicFormat, digest) + enc.ProtocolSuffix()
|
|
h.addTopic(topic, new(pubsub.Subscription))
|
|
assert.Equal(t, true, h.topicExists(topic))
|
|
assert.Equal(t, true, h.digestExists(digest))
|
|
assert.Equal(t, 1, len(h.allTopics()))
|
|
|
|
h.removeTopic(topic)
|
|
assert.Equal(t, false, h.topicExists(topic))
|
|
assert.Equal(t, false, h.digestExists(digest))
|
|
assert.Equal(t, 0, len(h.allTopics()))
|
|
|
|
h = newSubTopicHandler()
|
|
// Multiple Topics added in.
|
|
topic = fmt.Sprintf(p2p.BlockSubnetTopicFormat, digest) + enc.ProtocolSuffix()
|
|
h.addTopic(topic, new(pubsub.Subscription))
|
|
assert.Equal(t, true, h.topicExists(topic))
|
|
|
|
topic = fmt.Sprintf(p2p.ExitSubnetTopicFormat, digest) + enc.ProtocolSuffix()
|
|
h.addTopic(topic, new(pubsub.Subscription))
|
|
assert.Equal(t, true, h.topicExists(topic))
|
|
|
|
topic = fmt.Sprintf(p2p.ProposerSlashingSubnetTopicFormat, digest) + enc.ProtocolSuffix()
|
|
h.addTopic(topic, new(pubsub.Subscription))
|
|
assert.Equal(t, true, h.topicExists(topic))
|
|
|
|
topic = fmt.Sprintf(p2p.AttesterSlashingSubnetTopicFormat, digest) + enc.ProtocolSuffix()
|
|
h.addTopic(topic, new(pubsub.Subscription))
|
|
assert.Equal(t, true, h.topicExists(topic))
|
|
|
|
topic = fmt.Sprintf(p2p.AggregateAndProofSubnetTopicFormat, digest) + enc.ProtocolSuffix()
|
|
h.addTopic(topic, new(pubsub.Subscription))
|
|
assert.Equal(t, true, h.topicExists(topic))
|
|
|
|
topic = fmt.Sprintf(p2p.SyncContributionAndProofSubnetTopicFormat, digest) + enc.ProtocolSuffix()
|
|
h.addTopic(topic, new(pubsub.Subscription))
|
|
assert.Equal(t, true, h.topicExists(topic))
|
|
|
|
assert.Equal(t, 6, len(h.allTopics()))
|
|
|
|
// Remove multiple topics
|
|
topic = fmt.Sprintf(p2p.AttesterSlashingSubnetTopicFormat, digest) + enc.ProtocolSuffix()
|
|
h.removeTopic(topic)
|
|
assert.Equal(t, false, h.topicExists(topic))
|
|
|
|
topic = fmt.Sprintf(p2p.ExitSubnetTopicFormat, digest) + enc.ProtocolSuffix()
|
|
h.removeTopic(topic)
|
|
assert.Equal(t, false, h.topicExists(topic))
|
|
|
|
topic = fmt.Sprintf(p2p.ProposerSlashingSubnetTopicFormat, digest) + enc.ProtocolSuffix()
|
|
h.removeTopic(topic)
|
|
assert.Equal(t, false, h.topicExists(topic))
|
|
|
|
assert.Equal(t, true, h.digestExists(digest))
|
|
assert.Equal(t, 3, len(h.allTopics()))
|
|
|
|
// Remove remaining topics.
|
|
topic = fmt.Sprintf(p2p.BlockSubnetTopicFormat, digest) + enc.ProtocolSuffix()
|
|
h.removeTopic(topic)
|
|
assert.Equal(t, false, h.topicExists(topic))
|
|
|
|
topic = fmt.Sprintf(p2p.AggregateAndProofSubnetTopicFormat, digest) + enc.ProtocolSuffix()
|
|
h.removeTopic(topic)
|
|
assert.Equal(t, false, h.topicExists(topic))
|
|
|
|
topic = fmt.Sprintf(p2p.SyncContributionAndProofSubnetTopicFormat, digest) + enc.ProtocolSuffix()
|
|
h.removeTopic(topic)
|
|
assert.Equal(t, false, h.topicExists(topic))
|
|
|
|
assert.Equal(t, false, h.digestExists(digest))
|
|
assert.Equal(t, 0, len(h.allTopics()))
|
|
}
|