Files
prysm/beacon-chain/sync/subscriber_committee_index_beacon_attestation_test.go
Preston Van Loon 49a0d3caf0 Refactor dependencies, make Prysm "go gettable" (#6053)
* Fix a few deps to work with go.mod, check in generated files

* Update Gossipsub to 1.1 (#5998)

* update libs

* add new validators

* add new deps

* new set of deps

* tls

* further fix gossip update

* get everything to build

* clean up

* gaz

* fix build

* fix all tests

* add deps to images

* imports

Co-authored-by: rauljordan <raul@prysmaticlabs.com>

* Beacon chain builds with go build

* fix bazel

* fix dep

* lint

* Add github action for testing go

* on PR for any branch

* fix libp2p test failure

* Fix TestProcessBlock_PassesProcessingConditions by updating the proposer index in test

* Revert "Fix TestProcessBlock_PassesProcessingConditions by updating the proposer index in test"

This reverts commit 43676894ab.

* Compute and set proposer index instead of hard code

* Add back go mod/sum, fix deps

* go build ./...

* Temporarily skip two tests

* Fix kafka confluent patch

* Fix kafka confluent patch

* fix kafka build

* fix kafka

* Add info in DEPENDENCIES. Added a stub link for Why Bazel? until https://github.com/prysmaticlabs/documentation/issues/138

* Update fuzz ssz files as well

* Update fuzz ssz files as well

* getting closer

* rollback rules_go and gazelle

* fix gogo protobuf

* install librdkafka-dev as part of github actions

* Update kafka to a recent version where librkafkfa is not required for go modules

* clarify comment

* fix kafka build

* disable go tests

* comment

* Fix geth dependencies for end to end

* rename word

* lint

* fix docker

Co-authored-by: Nishant Das <nishdas93@gmail.com>
Co-authored-by: rauljordan <raul@prysmaticlabs.com>
Co-authored-by: terence tsao <terence@prysmaticlabs.com>
2020-05-31 14:44:34 +08:00

117 lines
3.4 KiB
Go

package sync
import (
"context"
"testing"
"time"
"github.com/prysmaticlabs/prysm/beacon-chain/core/helpers"
"github.com/prysmaticlabs/prysm/shared/params"
lru "github.com/hashicorp/golang-lru"
eth "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
"github.com/prysmaticlabs/go-bitfield"
mock "github.com/prysmaticlabs/prysm/beacon-chain/blockchain/testing"
"github.com/prysmaticlabs/prysm/beacon-chain/cache"
"github.com/prysmaticlabs/prysm/beacon-chain/core/feed"
statefeed "github.com/prysmaticlabs/prysm/beacon-chain/core/feed/state"
dbtest "github.com/prysmaticlabs/prysm/beacon-chain/db/testing"
"github.com/prysmaticlabs/prysm/beacon-chain/operations/attestations"
p2ptest "github.com/prysmaticlabs/prysm/beacon-chain/p2p/testing"
"github.com/prysmaticlabs/prysm/beacon-chain/state/stateutil"
mockSync "github.com/prysmaticlabs/prysm/beacon-chain/sync/initial-sync/testing"
"github.com/prysmaticlabs/prysm/shared/featureconfig"
"github.com/prysmaticlabs/prysm/shared/testutil"
)
func TestService_committeeIndexBeaconAttestationSubscriber_ValidMessage(t *testing.T) {
t.Skip("Temporarily disabled, fixed in v0.12 branch.")
p := p2ptest.NewTestP2P(t)
resetCfg := featureconfig.InitWithReset(&featureconfig.Flags{DisableDynamicCommitteeSubnets: true})
defer resetCfg()
ctx := context.Background()
db := dbtest.SetupDB(t)
s, sKeys := testutil.DeterministicGenesisState(t, 64 /*validators*/)
if err := s.SetGenesisTime(uint64(time.Now().Unix())); err != nil {
t.Fatal(err)
}
blk, err := testutil.GenerateFullBlock(s, sKeys, nil, 1)
if err != nil {
t.Fatal(err)
}
root, err := stateutil.BlockRoot(blk.Block)
if err != nil {
t.Fatal(err)
}
if err := db.SaveBlock(ctx, blk); err != nil {
t.Fatal(err)
}
savedState := testutil.NewBeaconState()
if err := db.SaveState(context.Background(), savedState, root); err != nil {
t.Fatal(err)
}
c, err := lru.New(10)
if err != nil {
t.Fatal(err)
}
r := &Service{
attPool: attestations.NewPool(),
chain: &mock.ChainService{
State: s,
Genesis: time.Now(),
ValidAttestation: true,
ValidatorsRoot: [32]byte{'A'},
},
chainStarted: true,
p2p: p,
db: db,
ctx: ctx,
stateNotifier: (&mock.ChainService{}).StateNotifier(),
attestationNotifier: (&mock.ChainService{}).OperationNotifier(),
initialSync: &mockSync.Sync{IsSyncing: false},
seenAttestationCache: c,
stateSummaryCache: cache.NewStateSummaryCache(),
}
p.Digest, err = r.forkDigest()
if err != nil {
t.Fatal(err)
}
r.registerSubscribers()
r.stateNotifier.StateFeed().Send(&feed.Event{
Type: statefeed.Initialized,
Data: &statefeed.InitializedData{
StartTime: time.Now(),
},
})
att := &eth.Attestation{
Data: &eth.AttestationData{
Slot: 0,
BeaconBlockRoot: root[:],
Target: &eth.Checkpoint{},
},
AggregationBits: bitfield.Bitlist{0b0101},
}
domain, err := helpers.Domain(s.Fork(), att.Data.Target.Epoch, params.BeaconConfig().DomainBeaconAttester, s.GenesisValidatorRoot())
if err != nil {
t.Fatal(err)
}
attRoot, err := helpers.ComputeSigningRoot(att.Data, domain)
if err != nil {
t.Fatal(err)
}
att.Signature = sKeys[16].Sign(attRoot[:]).Marshal()
p.ReceivePubSub("/eth2/%x/committee_index0_beacon_attestation", att)
time.Sleep(time.Second * 1)
ua := r.attPool.UnaggregatedAttestations()
if len(ua) == 0 {
t.Error("No attestations put into pool")
}
}