mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 10:12:19 +00:00
b954db9704
* Revert "Update fastssz (#6760)"
This reverts commit 78a25f99c3
.
* Merge refs/heads/master into revert-6760-update-fssz
42 lines
935 B
Go
42 lines
935 B
Go
package cache_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/gogo/protobuf/proto"
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/cache"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/assert"
|
|
)
|
|
|
|
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},
|
|
}
|
|
|
|
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")
|
|
}
|
|
}
|