-
Notifications
You must be signed in to change notification settings - Fork 697
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feijoa: l1infotree recursive (#3474)
* l1infotree recursive #3465 * integration with state * implement migration 19 tests and improve migration tests in general * normalize l1 info tree recursive names; implement state l1 info tree recursive methods * fix l1InfoTreeRecursive vectors and tests * add feijoa l1InfoTree Processor; refactor ProcessorBase and ForkIDs * docker compose fix --------- Co-authored-by: tclemos <[email protected]>
- Loading branch information
1 parent
e40c96c
commit 399d62c
Showing
51 changed files
with
1,586 additions
and
172 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
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,12 @@ | ||
-- +migrate Up | ||
|
||
-- +migrate Up | ||
ALTER TABLE state.exit_root | ||
ADD COLUMN IF NOT EXISTS l1_info_tree_recursive_index BIGINT DEFAULT NULL UNIQUE; | ||
CREATE INDEX IF NOT EXISTS idx_exit_root_l1_info_tree_recursive_index ON state.exit_root (l1_info_tree_recursive_index); | ||
|
||
-- +migrate Down | ||
ALTER TABLE state.exit_root | ||
DROP COLUMN IF EXISTS l1_info_tree_recursive_index; | ||
DROP INDEX IF EXISTS state.idx_exit_root_l1_info_tree_recursive_index; | ||
|
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,106 @@ | ||
package migrations_test | ||
|
||
import ( | ||
"database/sql" | ||
"testing" | ||
"time" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
type migrationTest0019 struct { | ||
migrationBase | ||
|
||
blockHashValue string | ||
mainExitRootValue string | ||
rollupExitRootValue string | ||
globalExitRootValue string | ||
previousBlockHashValue string | ||
l1InfoRootValue string | ||
} | ||
|
||
func (m migrationTest0019) insertBlock(blockNumber uint64, db *sql.DB) error { | ||
const addBlock = "INSERT INTO state.block (block_num, received_at, block_hash) VALUES ($1, $2, $3)" | ||
if _, err := db.Exec(addBlock, blockNumber, time.Now(), m.blockHashValue); err != nil { | ||
return err | ||
} | ||
return nil | ||
} | ||
|
||
func (m migrationTest0019) insertRowInOldTable(db *sql.DB, args ...interface{}) error { | ||
sql := ` | ||
INSERT INTO state.exit_root (block_num, "timestamp", mainnet_exit_root, rollup_exit_root, global_exit_root, prev_block_hash, l1_info_root, l1_info_tree_index) | ||
VALUES ( $1, $2, $3, $4, $5, $6, $7, $8);` | ||
|
||
_, err := db.Exec(sql, args...) | ||
return err | ||
} | ||
|
||
func (m migrationTest0019) insertRowInMigratedTable(db *sql.DB, args ...interface{}) error { | ||
sql := ` | ||
INSERT INTO state.exit_root (block_num, "timestamp", mainnet_exit_root, rollup_exit_root, global_exit_root, prev_block_hash, l1_info_root, l1_info_tree_index, l1_info_tree_recursive_index) | ||
VALUES ( $1, $2, $3, $4, $5, $6, $7, $8, $9);` | ||
|
||
_, err := db.Exec(sql, args...) | ||
return err | ||
} | ||
|
||
func (m migrationTest0019) InsertData(db *sql.DB) error { | ||
var err error | ||
for i := uint64(1); i <= 6; i++ { | ||
if err = m.insertBlock(i, db); err != nil { | ||
return err | ||
} | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func (m migrationTest0019) RunAssertsAfterMigrationUp(t *testing.T, db *sql.DB) { | ||
m.AssertNewAndRemovedItemsAfterMigrationUp(t, db) | ||
|
||
var nilL1InfoTreeIndex *uint = nil | ||
err := m.insertRowInOldTable(db, 1, time.Now().UTC(), m.mainExitRootValue, m.rollupExitRootValue, m.globalExitRootValue, m.previousBlockHashValue, m.l1InfoRootValue, nilL1InfoTreeIndex) | ||
assert.NoError(t, err) | ||
|
||
err = m.insertRowInOldTable(db, 2, time.Now().UTC(), m.mainExitRootValue, m.rollupExitRootValue, m.globalExitRootValue, m.previousBlockHashValue, m.l1InfoRootValue, uint(1)) | ||
assert.NoError(t, err) | ||
|
||
err = m.insertRowInMigratedTable(db, 3, time.Now().UTC(), m.mainExitRootValue, m.rollupExitRootValue, m.globalExitRootValue, m.previousBlockHashValue, m.l1InfoRootValue, nilL1InfoTreeIndex, 1) | ||
assert.NoError(t, err) | ||
} | ||
|
||
func (m migrationTest0019) RunAssertsAfterMigrationDown(t *testing.T, db *sql.DB) { | ||
m.AssertNewAndRemovedItemsAfterMigrationDown(t, db) | ||
|
||
var nilL1InfoTreeIndex *uint = nil | ||
err := m.insertRowInOldTable(db, 4, time.Now().UTC(), m.mainExitRootValue, m.rollupExitRootValue, m.globalExitRootValue, m.previousBlockHashValue, m.l1InfoRootValue, nilL1InfoTreeIndex) | ||
assert.NoError(t, err) | ||
|
||
err = m.insertRowInOldTable(db, 5, time.Now().UTC(), m.mainExitRootValue, m.rollupExitRootValue, m.globalExitRootValue, m.previousBlockHashValue, m.l1InfoRootValue, uint(2)) | ||
assert.NoError(t, err) | ||
|
||
err = m.insertRowInMigratedTable(db, 6, time.Now().UTC(), m.mainExitRootValue, m.rollupExitRootValue, m.globalExitRootValue, m.previousBlockHashValue, m.l1InfoRootValue, nilL1InfoTreeIndex, 2) | ||
assert.Error(t, err) | ||
} | ||
|
||
func TestMigration0019(t *testing.T) { | ||
m := migrationTest0019{ | ||
migrationBase: migrationBase{ | ||
newIndexes: []string{ | ||
"idx_exit_root_l1_info_tree_recursive_index", | ||
}, | ||
newColumns: []columnMetadata{ | ||
{"state", "exit_root", "l1_info_tree_recursive_index"}, | ||
}, | ||
}, | ||
|
||
blockHashValue: "0x29e885edaf8e4b51e1d2e05f9da28161d2fb4f6b1d53827d9b80a23cf2d7d9f1", | ||
mainExitRootValue: "0x83fc198de31e1b2b1a8212d2430fbb7766c13d9ad305637dea3759065606475d", | ||
rollupExitRootValue: "0xadb91a6a1fce56eaea561002bc9a993f4e65a7710bd72f4eee3067cbd73a743c", | ||
globalExitRootValue: "0x5bf4af1a651a2a74b36e6eb208481f94c69fc959f756223dfa49608061937585", | ||
previousBlockHashValue: "0xe865e912b504572a4d80ad018e29797e3c11f00bf9ae2549548a25779c9d7e57", | ||
l1InfoRootValue: "0x2b9484b83c6398033241865b015fb9430eb3e159182a6075d00c924845cc393e", | ||
} | ||
runMigrationTest(t, 19, m) | ||
} |
Oops, something went wrong.