You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.4 KiB
68 lines
1.4 KiB
5 years ago
|
package core
|
||
|
|
||
|
import (
|
||
|
"math/big"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/harmony-one/harmony/core/types"
|
||
|
shardingconfig "github.com/harmony-one/harmony/internal/configs/sharding"
|
||
|
)
|
||
|
|
||
|
func TestIsEpochBlock(t *testing.T) {
|
||
|
block1 := types.NewBlock(&types.Header{Number: big.NewInt(10)}, nil, nil)
|
||
|
block2 := types.NewBlock(&types.Header{Number: big.NewInt(0)}, nil, nil)
|
||
|
block3 := types.NewBlock(&types.Header{Number: big.NewInt(327680)}, nil, nil)
|
||
|
block4 := types.NewBlock(&types.Header{Number: big.NewInt(77)}, nil, nil)
|
||
|
block5 := types.NewBlock(&types.Header{Number: big.NewInt(78)}, nil, nil)
|
||
|
block6 := types.NewBlock(&types.Header{Number: big.NewInt(188)}, nil, nil)
|
||
|
block7 := types.NewBlock(&types.Header{Number: big.NewInt(189)}, nil, nil)
|
||
|
tests := []struct {
|
||
|
schedule shardingconfig.Schedule
|
||
|
block *types.Block
|
||
|
expected bool
|
||
|
}{
|
||
|
{
|
||
|
shardingconfig.MainnetSchedule,
|
||
|
block1,
|
||
|
false,
|
||
|
},
|
||
|
{
|
||
|
shardingconfig.MainnetSchedule,
|
||
|
block2,
|
||
|
true,
|
||
|
},
|
||
|
{
|
||
|
shardingconfig.MainnetSchedule,
|
||
|
block3,
|
||
|
true,
|
||
|
},
|
||
|
{
|
||
|
shardingconfig.TestnetSchedule,
|
||
|
block4,
|
||
|
false,
|
||
|
},
|
||
|
{
|
||
|
shardingconfig.TestnetSchedule,
|
||
|
block5,
|
||
|
true,
|
||
|
},
|
||
|
{
|
||
|
shardingconfig.TestnetSchedule,
|
||
|
block6,
|
||
|
false,
|
||
|
},
|
||
|
{
|
||
|
shardingconfig.TestnetSchedule,
|
||
|
block7,
|
||
|
true,
|
||
|
},
|
||
|
}
|
||
|
for _, test := range tests {
|
||
|
ShardingSchedule = test.schedule
|
||
|
r := IsEpochBlock(test.block)
|
||
|
if r != test.expected {
|
||
|
t.Errorf("expected: %v, got: %v\n", test.expected, r)
|
||
|
}
|
||
|
}
|
||
|
}
|