mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 10:41:19 +00:00
1bd464aade
Former-commit-id: ec3595f6111b15e2ea6a3ecd35e6a3934314a662 [formerly df7289f224ce6bc35ef9dd2ec6e129662aad3489] Former-commit-id: ae8e1f1b95b113767cb3fa0e0835e59043ceca32
53 lines
1.5 KiB
Go
53 lines
1.5 KiB
Go
package params
|
|
|
|
import (
|
|
"math/big"
|
|
"testing"
|
|
)
|
|
|
|
func TestNotaryDeposit(t *testing.T) {
|
|
want, err := new(big.Int).SetString("1000000000000000000000", 10) // 1000 ETH
|
|
if !err {
|
|
t.Fatalf("Failed to setup test")
|
|
}
|
|
if DefaultConfig.NotaryDeposit.Cmp(want) != 0 {
|
|
t.Errorf("Notary deposit size incorrect. Wanted %d, got %d", want, DefaultConfig.NotaryDeposit)
|
|
}
|
|
}
|
|
|
|
func TestPeriodLength(t *testing.T) {
|
|
if DefaultConfig.PeriodLength != 5 {
|
|
t.Errorf("Shard count incorrect. Wanted %d, got %d", 5, DefaultConfig.PeriodLength)
|
|
}
|
|
}
|
|
|
|
func TestNotaryLockupLength(t *testing.T) {
|
|
if DefaultConfig.NotaryLockupLength != 16128 {
|
|
t.Errorf("Shard count incorrect. Wanted %d, got %d", 16128, DefaultConfig.NotaryLockupLength)
|
|
}
|
|
}
|
|
|
|
func TestProposerLockupLength(t *testing.T) {
|
|
if DefaultConfig.ProposerLockupLength != 48 {
|
|
t.Errorf("Shard count incorrect. Wanted %d, got %d", 48, DefaultConfig.ProposerLockupLength)
|
|
}
|
|
}
|
|
|
|
func TestNotaryCommitteeSize(t *testing.T) {
|
|
if DefaultConfig.NotaryCommitteeSize != 135 {
|
|
t.Errorf("Shard count incorrect. Wanted %d, got %d", 135, DefaultConfig.NotaryCommitteeSize)
|
|
}
|
|
}
|
|
|
|
func TestNotaryQuorumSize(t *testing.T) {
|
|
if DefaultConfig.NotaryQuorumSize != 90 {
|
|
t.Errorf("Shard count incorrect. Wanted %d, got %d", 90, DefaultConfig.NotaryQuorumSize)
|
|
}
|
|
}
|
|
|
|
func TestNotaryChallengePeriod(t *testing.T) {
|
|
if DefaultConfig.NotaryChallengePeriod != 25 {
|
|
t.Errorf("Shard count incorrect. Wanted %d, got %d", 25, DefaultConfig.NotaryChallengePeriod)
|
|
}
|
|
}
|