mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
a9070ad725
* Add helper to prevent zero hashes * Test * Add ActiveIndicesCount getter for committee cache * ActiveIndicesCount test * ActiveValidatorCount to use cache * Update cache on miss * Update tests
27 lines
630 B
Go
27 lines
630 B
Go
package blockchain
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/helpers"
|
|
testDB "github.com/prysmaticlabs/prysm/beacon-chain/db/testing"
|
|
)
|
|
|
|
func TestVerifyCheckpointEpoch_Ok(t *testing.T) {
|
|
helpers.ClearCache()
|
|
db := testDB.SetupDB(t)
|
|
|
|
chainService := setupBeaconChain(t, db)
|
|
chainService.genesisTime = time.Now()
|
|
|
|
if !chainService.verifyCheckpointEpoch(ðpb.Checkpoint{}) {
|
|
t.Error("Wanted true, got false")
|
|
}
|
|
|
|
if chainService.verifyCheckpointEpoch(ðpb.Checkpoint{Epoch: 1}) {
|
|
t.Error("Wanted false, got true")
|
|
}
|
|
}
|