mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 18:51:19 +00:00
b6949f8582
Former-commit-id: d17f7c367ad0c83516db37d7488eda3ad2ea3f59 [formerly 1fcd7a5bad4fe2c2dbaa5e4e200fd688227fd725] Former-commit-id: 5d19cd72168913d681518d106e0ebe1bb2130d1c
75 lines
1.7 KiB
Go
75 lines
1.7 KiB
Go
package database
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/ethereum/go-ethereum/sharding"
|
|
)
|
|
|
|
// Verifies that ShardKV implements the ShardBackend interface.
|
|
var _ = sharding.ShardBackend(&ShardKV{})
|
|
|
|
func Test_ShardKVPut(t *testing.T) {
|
|
kv := NewShardKV()
|
|
hash := common.StringToHash("ralph merkle")
|
|
|
|
if err := kv.Put(hash, []byte{1, 2, 3}); err != nil {
|
|
t.Errorf("could not save value in kv store: %v", err)
|
|
}
|
|
}
|
|
|
|
func Test_ShardKVHas(t *testing.T) {
|
|
kv := NewShardKV()
|
|
hash := common.StringToHash("ralph merkle")
|
|
|
|
if err := kv.Put(hash, []byte{1, 2, 3}); err != nil {
|
|
t.Fatalf("could not save value in kv store: %v", err)
|
|
}
|
|
|
|
if !kv.Has(hash) {
|
|
t.Errorf("kv store does not have hash: %v", hash)
|
|
}
|
|
|
|
hash2 := common.StringToHash("")
|
|
if kv.Has(hash2) {
|
|
t.Errorf("kv store should not contain unset key: %v", hash2)
|
|
}
|
|
}
|
|
|
|
func Test_ShardKVGet(t *testing.T) {
|
|
kv := NewShardKV()
|
|
hash := common.StringToHash("ralph merkle")
|
|
|
|
if err := kv.Put(hash, []byte{1, 2, 3}); err != nil {
|
|
t.Fatalf("could not save value in kv store: %v", err)
|
|
}
|
|
|
|
val, err := kv.Get(hash)
|
|
if err != nil {
|
|
t.Errorf("get failed: %v", err)
|
|
}
|
|
if val == nil {
|
|
t.Errorf("no value stored for key")
|
|
}
|
|
|
|
hash2 := common.StringToHash("")
|
|
val2, err := kv.Get(hash2)
|
|
if val2 != nil {
|
|
t.Errorf("non-existent key should not have a value. key=%v, value=%v", hash2, val2)
|
|
}
|
|
}
|
|
|
|
func Test_ShardKVDelete(t *testing.T) {
|
|
kv := NewShardKV()
|
|
hash := common.StringToHash("ralph merkle")
|
|
|
|
if err := kv.Put(hash, []byte{1, 2, 3}); err != nil {
|
|
t.Fatalf("could not save value in kv store: %v", err)
|
|
}
|
|
|
|
if err := kv.Delete(hash); err != nil {
|
|
t.Errorf("could not delete key: %v", hash)
|
|
}
|
|
}
|