mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
24 lines
697 B
Go
24 lines
697 B
Go
|
package v2
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/prysmaticlabs/prysm/testing/assert"
|
||
|
)
|
||
|
|
||
|
func TestArraysTreeRoot_OnlyPowerOf2(t *testing.T) {
|
||
|
_, err := nocachedHasher.arraysRoot([][]byte{}, 1, "testing")
|
||
|
assert.NoError(t, err)
|
||
|
_, err = nocachedHasher.arraysRoot([][]byte{}, 4, "testing")
|
||
|
assert.NoError(t, err)
|
||
|
_, err = nocachedHasher.arraysRoot([][]byte{}, 8, "testing")
|
||
|
assert.NoError(t, err)
|
||
|
_, err = nocachedHasher.arraysRoot([][]byte{}, 10, "testing")
|
||
|
assert.ErrorContains(t, "hash layer is a non power of 2", err)
|
||
|
}
|
||
|
|
||
|
func TestArraysTreeRoot_ZeroLength(t *testing.T) {
|
||
|
_, err := nocachedHasher.arraysRoot([][]byte{}, 0, "testing")
|
||
|
assert.ErrorContains(t, "zero leaves provided", err)
|
||
|
}
|