mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 10:12:19 +00:00
2d9fe5f2cf
* disallows bitlist duplicates in seen_bits cache * Merge refs/heads/master into upd-has-seen
65 lines
2.7 KiB
Go
65 lines
2.7 KiB
Go
package kv
|
|
|
|
import (
|
|
"testing"
|
|
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/go-bitfield"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
|
)
|
|
|
|
func TestAttCaches_hasSeenBit(t *testing.T) {
|
|
c := NewAttCaches()
|
|
d := ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Root: make([]byte, 32)},
|
|
Target: ðpb.Checkpoint{Root: make([]byte, 32)},
|
|
BeaconBlockRoot: make([]byte, 32),
|
|
}
|
|
seenA1 := ðpb.Attestation{Data: d, AggregationBits: bitfield.Bitlist{0b10000011}, Signature: make([]byte, 96)}
|
|
seenA2 := ðpb.Attestation{Data: d, AggregationBits: bitfield.Bitlist{0b11100000}, Signature: make([]byte, 96)}
|
|
require.NoError(t, c.insertSeenBit(seenA1))
|
|
require.NoError(t, c.insertSeenBit(seenA2))
|
|
tests := []struct {
|
|
att *ethpb.Attestation
|
|
want bool
|
|
}{
|
|
{att: ðpb.Attestation{Data: d, AggregationBits: bitfield.Bitlist{0b10000000}, Signature: make([]byte, 96)}, want: true},
|
|
{att: ðpb.Attestation{Data: d, AggregationBits: bitfield.Bitlist{0b10000001}, Signature: make([]byte, 96)}, want: true},
|
|
{att: ðpb.Attestation{Data: d, AggregationBits: bitfield.Bitlist{0b11100000}, Signature: make([]byte, 96)}, want: true},
|
|
{att: ðpb.Attestation{Data: d, AggregationBits: bitfield.Bitlist{0b10000011}, Signature: make([]byte, 96)}, want: true},
|
|
{att: ðpb.Attestation{Data: d, AggregationBits: bitfield.Bitlist{0b00001000}, Signature: make([]byte, 96)}, want: false},
|
|
{att: ðpb.Attestation{Data: d, AggregationBits: bitfield.Bitlist{0b11110111}, Signature: make([]byte, 96)}, want: false},
|
|
}
|
|
for _, tt := range tests {
|
|
got, err := c.hasSeenBit(tt.att)
|
|
require.NoError(t, err)
|
|
if got != tt.want {
|
|
t.Errorf("hasSeenBit() got = %v, want %v", got, tt.want)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestAttCaches_insertSeenBitDuplicates(t *testing.T) {
|
|
c := NewAttCaches()
|
|
d := ðpb.AttestationData{
|
|
Source: ðpb.Checkpoint{Root: make([]byte, 32)},
|
|
Target: ðpb.Checkpoint{Root: make([]byte, 32)},
|
|
BeaconBlockRoot: make([]byte, 32),
|
|
}
|
|
att1 := ðpb.Attestation{Data: d, AggregationBits: bitfield.Bitlist{0b10000011}, Signature: make([]byte, 96)}
|
|
r, err := hashFn(att1.Data)
|
|
require.NoError(t, err)
|
|
require.NoError(t, c.insertSeenBit(att1))
|
|
require.Equal(t, 1, c.seenAtt.ItemCount())
|
|
|
|
_, expirationTime1, ok := c.seenAtt.GetWithExpiration(string(r[:]))
|
|
require.Equal(t, true, ok)
|
|
|
|
// Make sure that duplicates are not inserted, but expiration time gets updated.
|
|
require.NoError(t, c.insertSeenBit(att1))
|
|
require.Equal(t, 1, c.seenAtt.ItemCount())
|
|
_, expirationTime2, ok := c.seenAtt.GetWithExpiration(string(r[:]))
|
|
require.Equal(t, true, ok)
|
|
require.Equal(t, true, expirationTime2.After(expirationTime1), "Expiration time is not updated")
|
|
}
|