forked from berachain/beacon-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(blockchain): sequential blob
Persist()
DB writes (berachain#2258)
- Loading branch information
Showing
3 changed files
with
99 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
// SPDX-License-Identifier: BUSL-1.1 | ||
// | ||
// Copyright (C) 2024, Berachain Foundation. All rights reserved. | ||
// Use of this software is governed by the Business Source License included | ||
// in the LICENSE file of this repository and at www.mariadb.com/bsl11. | ||
// | ||
// ANY USE OF THE LICENSED WORK IN VIOLATION OF THIS LICENSE WILL AUTOMATICALLY | ||
// TERMINATE YOUR RIGHTS UNDER THIS LICENSE FOR THE CURRENT AND ALL OTHER | ||
// VERSIONS OF THE LICENSED WORK. | ||
// | ||
// THIS LICENSE DOES NOT GRANT YOU ANY RIGHT IN ANY TRADEMARK OR LOGO OF | ||
// LICENSOR OR ITS AFFILIATES (PROVIDED THAT YOU MAY USE A TRADEMARK OR LOGO OF | ||
// LICENSOR AS EXPRESSLY REQUIRED BY THIS LICENSE). | ||
// | ||
// TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON | ||
// AN “AS IS” BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, | ||
// EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF | ||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND | ||
// TITLE. | ||
|
||
package store_test | ||
|
||
import ( | ||
"os" | ||
"testing" | ||
|
||
"cosmossdk.io/log" | ||
"github.com/berachain/beacon-kit/config/spec" | ||
"github.com/berachain/beacon-kit/consensus-types/types" | ||
"github.com/berachain/beacon-kit/da/store" | ||
datypes "github.com/berachain/beacon-kit/da/types" | ||
"github.com/berachain/beacon-kit/storage/filedb" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func TestStore_PersistRace(t *testing.T) { | ||
// This test case needs to be run with the '-race' flag | ||
tmpFilePath := "/tmp/store_test" | ||
|
||
logger := log.NewNopLogger() | ||
chainSpec, err := spec.DevnetChainSpec() | ||
require.NoError(t, err) | ||
|
||
// Remove DB when we're done | ||
defer os.RemoveAll(tmpFilePath) | ||
|
||
// Create the DB | ||
s := store.New[*types.BeaconBlockBody]( | ||
filedb.NewRangeDB( | ||
filedb.NewDB(filedb.WithRootDirectory(tmpFilePath), | ||
filedb.WithFileExtension("ssz"), | ||
filedb.WithDirectoryPermissions(0700), | ||
filedb.WithLogger(logger), | ||
), | ||
), | ||
logger.With("service", "da-store"), | ||
chainSpec, | ||
) | ||
|
||
// This many blobs is not currently possible, but it doesn't hurt eh | ||
sc := make([]*datypes.BlobSidecar, 20) | ||
for i := range sc { | ||
sc[i] = &datypes.BlobSidecar{ | ||
Index: uint64(i), | ||
BeaconBlockHeader: &types.BeaconBlockHeader{}, | ||
} | ||
} | ||
sidecars := datypes.BlobSidecars{ | ||
Sidecars: sc, | ||
} | ||
|
||
// Multiple writes to DB | ||
err = s.Persist(0, &sidecars) | ||
require.NoError(t, err) | ||
err = s.Persist(1, &sidecars) | ||
require.NoError(t, err) | ||
|
||
// Pruning here primes the race condition for db.firstNonNilIndex | ||
err = s.Prune(0, 1) | ||
require.NoError(t, err) | ||
err = s.Persist(0, &sidecars) | ||
require.NoError(t, err) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters