mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
42 lines
962 B
Go
42 lines
962 B
Go
package cache_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/cache"
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/assert"
|
|
"google.golang.org/protobuf/proto"
|
|
)
|
|
|
|
func TestAttestationCache_RoundTrip(t *testing.T) {
|
|
ctx := context.Background()
|
|
c := cache.NewAttestationCache()
|
|
|
|
req := ðpb.AttestationDataRequest{
|
|
CommitteeIndex: 0,
|
|
Slot: 1,
|
|
}
|
|
|
|
response, err := c.Get(ctx, req)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, (*ethpb.AttestationData)(nil), response)
|
|
|
|
assert.NoError(t, c.MarkInProgress(req))
|
|
|
|
res := ðpb.AttestationData{
|
|
Target: ðpb.Checkpoint{Epoch: 5, Root: make([]byte, 32)},
|
|
}
|
|
|
|
assert.NoError(t, c.Put(ctx, req, res))
|
|
assert.NoError(t, c.MarkNotInProgress(req))
|
|
|
|
response, err = c.Get(ctx, req)
|
|
assert.NoError(t, err)
|
|
|
|
if !proto.Equal(response, res) {
|
|
t.Error("Expected equal protos to return from cache")
|
|
}
|
|
}
|