chg: skip snap synced tests

This commit is contained in:
marcello33 2024-09-10 15:13:59 +02:00
parent fe5d813497
commit 955eb3dfd7
No known key found for this signature in database
GPG key ID: 06128777E3C36B16

View file

@ -78,8 +78,15 @@ func testShortRepair(t *testing.T, snapshots bool) {
// already committed, after which the process crashed. In this case we expect the full // already committed, after which the process crashed. In this case we expect the full
// chain to be rolled back to the committed block, but the chain data itself left in // chain to be rolled back to the committed block, but the chain data itself left in
// the database for replaying. // the database for replaying.
func TestShortSnapSyncedRepair(t *testing.T) { testShortSnapSyncedRepair(t, false) } func TestShortSnapSyncedRepair(t *testing.T) {
func TestShortSnapSyncedRepairWithSnapshots(t *testing.T) { testShortSnapSyncedRepair(t, true) } t.Skip("snap sync not supported in bor")
testShortSnapSyncedRepair(t, false)
}
func TestShortSnapSyncedRepairWithSnapshots(t *testing.T) {
t.Skip("snap sync not supported in bor")
testShortSnapSyncedRepair(t, true)
}
func testShortSnapSyncedRepair(t *testing.T, snapshots bool) { func testShortSnapSyncedRepair(t *testing.T, snapshots bool) {
// Chain: // Chain:
@ -128,6 +135,7 @@ func TestShortSnapSyncingRepairWithSnapshots(t *testing.T) {
} }
func testShortSnapSyncingRepair(t *testing.T, snapshots bool) { func testShortSnapSyncingRepair(t *testing.T, snapshots bool) {
t.Skip("snap sync not supported in bor")
// Chain: // Chain:
// G->C1->C2->C3->C4->C5->C6->C7->C8 (HEAD) // G->C1->C2->C3->C4->C5->C6->C7->C8 (HEAD)
// //
@ -209,9 +217,11 @@ func testShortOldForkedRepair(t *testing.T, snapshots bool) {
// this case we expect the canonical chain to be rolled back to the committed block, // this case we expect the canonical chain to be rolled back to the committed block,
// but the chain data itself left in the database for replaying. // but the chain data itself left in the database for replaying.
func TestShortOldForkedSnapSyncedRepair(t *testing.T) { func TestShortOldForkedSnapSyncedRepair(t *testing.T) {
t.Skip("snap sync not supported in bor")
testShortOldForkedSnapSyncedRepair(t, false) testShortOldForkedSnapSyncedRepair(t, false)
} }
func TestShortOldForkedSnapSyncedRepairWithSnapshots(t *testing.T) { func TestShortOldForkedSnapSyncedRepairWithSnapshots(t *testing.T) {
t.Skip("snap sync not supported in bor")
testShortOldForkedSnapSyncedRepair(t, true) testShortOldForkedSnapSyncedRepair(t, true)
} }
@ -346,9 +356,11 @@ func testShortNewlyForkedRepair(t *testing.T, snapshots bool) {
// In this case we expect the canonical chain to be rolled back to the committed // In this case we expect the canonical chain to be rolled back to the committed
// block, but the chain data itself left in the database for replaying. // block, but the chain data itself left in the database for replaying.
func TestShortNewlyForkedSnapSyncedRepair(t *testing.T) { func TestShortNewlyForkedSnapSyncedRepair(t *testing.T) {
t.Skip("snap sync not supported in bor")
testShortNewlyForkedSnapSyncedRepair(t, false) testShortNewlyForkedSnapSyncedRepair(t, false)
} }
func TestShortNewlyForkedSnapSyncedRepairWithSnapshots(t *testing.T) { func TestShortNewlyForkedSnapSyncedRepairWithSnapshots(t *testing.T) {
t.Skip("snap sync not supported in bor")
testShortNewlyForkedSnapSyncedRepair(t, true) testShortNewlyForkedSnapSyncedRepair(t, true)
} }
@ -481,9 +493,11 @@ func testShortReorgedRepair(t *testing.T, snapshots bool) {
// crashed. In this case we expect the canonical chain to be rolled back to the // crashed. In this case we expect the canonical chain to be rolled back to the
// committed block, but the chain data itself left in the database for replaying. // committed block, but the chain data itself left in the database for replaying.
func TestShortReorgedSnapSyncedRepair(t *testing.T) { func TestShortReorgedSnapSyncedRepair(t *testing.T) {
t.Skip("snap sync not supported in bor")
testShortReorgedSnapSyncedRepair(t, false) testShortReorgedSnapSyncedRepair(t, false)
} }
func TestShortReorgedSnapSyncedRepairWithSnapshots(t *testing.T) { func TestShortReorgedSnapSyncedRepairWithSnapshots(t *testing.T) {
t.Skip("snap sync not supported in bor")
testShortReorgedSnapSyncedRepair(t, true) testShortReorgedSnapSyncedRepair(t, true)
} }
@ -662,9 +676,11 @@ func testLongDeepRepair(t *testing.T, snapshots bool) {
// which the process crashed. In this case we expect the chain to be rolled back // which the process crashed. In this case we expect the chain to be rolled back
// to the committed block, with everything afterwards kept as fast sync data. // to the committed block, with everything afterwards kept as fast sync data.
func TestLongSnapSyncedShallowRepair(t *testing.T) { func TestLongSnapSyncedShallowRepair(t *testing.T) {
t.Skip("snap sync not supported in bor")
testLongSnapSyncedShallowRepair(t, false) testLongSnapSyncedShallowRepair(t, false)
} }
func TestLongSnapSyncedShallowRepairWithSnapshots(t *testing.T) { func TestLongSnapSyncedShallowRepairWithSnapshots(t *testing.T) {
t.Skip("snap sync not supported in bor")
testLongSnapSyncedShallowRepair(t, true) testLongSnapSyncedShallowRepair(t, true)
} }
@ -710,8 +726,14 @@ func testLongSnapSyncedShallowRepair(t *testing.T, snapshots bool) {
// sync pivot point - older than the ancient limit - was already committed, after // sync pivot point - older than the ancient limit - was already committed, after
// which the process crashed. In this case we expect the chain to be rolled back // which the process crashed. In this case we expect the chain to be rolled back
// to the committed block, with everything afterwards deleted. // to the committed block, with everything afterwards deleted.
func TestLongSnapSyncedDeepRepair(t *testing.T) { testLongSnapSyncedDeepRepair(t, false) } func TestLongSnapSyncedDeepRepair(t *testing.T) {
func TestLongSnapSyncedDeepRepairWithSnapshots(t *testing.T) { testLongSnapSyncedDeepRepair(t, true) } t.Skip("snap sync not supported in bor")
testLongSnapSyncedDeepRepair(t, false)
}
func TestLongSnapSyncedDeepRepairWithSnapshots(t *testing.T) {
t.Skip("snap sync not supported in bor")
testLongSnapSyncedDeepRepair(t, true)
}
func testLongSnapSyncedDeepRepair(t *testing.T, snapshots bool) { func testLongSnapSyncedDeepRepair(t *testing.T, snapshots bool) {
// Chain: // Chain:
@ -952,9 +974,11 @@ func testLongOldForkedDeepRepair(t *testing.T, snapshots bool) {
// to be rolled back to the committed block, with everything afterwards kept as // to be rolled back to the committed block, with everything afterwards kept as
// fast sync data; the side chain completely nuked by the freezer. // fast sync data; the side chain completely nuked by the freezer.
func TestLongOldForkedSnapSyncedShallowRepair(t *testing.T) { func TestLongOldForkedSnapSyncedShallowRepair(t *testing.T) {
t.Skip("snap sync not supported in bor")
testLongOldForkedSnapSyncedShallowRepair(t, false) testLongOldForkedSnapSyncedShallowRepair(t, false)
} }
func TestLongOldForkedSnapSyncedShallowRepairWithSnapshots(t *testing.T) { func TestLongOldForkedSnapSyncedShallowRepairWithSnapshots(t *testing.T) {
t.Skip("snap sync not supported in bor")
testLongOldForkedSnapSyncedShallowRepair(t, true) testLongOldForkedSnapSyncedShallowRepair(t, true)
} }
@ -1004,9 +1028,11 @@ func testLongOldForkedSnapSyncedShallowRepair(t *testing.T, snapshots bool) {
// chain to be rolled back to the committed block, with everything afterwards deleted; // chain to be rolled back to the committed block, with everything afterwards deleted;
// the side chain completely nuked by the freezer. // the side chain completely nuked by the freezer.
func TestLongOldForkedSnapSyncedDeepRepair(t *testing.T) { func TestLongOldForkedSnapSyncedDeepRepair(t *testing.T) {
t.Skip("snap sync not supported in bor")
testLongOldForkedSnapSyncedDeepRepair(t, false) testLongOldForkedSnapSyncedDeepRepair(t, false)
} }
func TestLongOldForkedSnapSyncedDeepRepairWithSnapshots(t *testing.T) { func TestLongOldForkedSnapSyncedDeepRepairWithSnapshots(t *testing.T) {
t.Skip("snap sync not supported in bor")
testLongOldForkedSnapSyncedDeepRepair(t, true) testLongOldForkedSnapSyncedDeepRepair(t, true)
} }
@ -1258,9 +1284,11 @@ func testLongNewerForkedDeepRepair(t *testing.T, snapshots bool) {
// to be rolled back to the committed block, with everything afterwards kept as fast // to be rolled back to the committed block, with everything afterwards kept as fast
// sync data; the side chain completely nuked by the freezer. // sync data; the side chain completely nuked by the freezer.
func TestLongNewerForkedSnapSyncedShallowRepair(t *testing.T) { func TestLongNewerForkedSnapSyncedShallowRepair(t *testing.T) {
t.Skip("snap sync not supported in bor")
testLongNewerForkedSnapSyncedShallowRepair(t, false) testLongNewerForkedSnapSyncedShallowRepair(t, false)
} }
func TestLongNewerForkedSnapSyncedShallowRepairWithSnapshots(t *testing.T) { func TestLongNewerForkedSnapSyncedShallowRepairWithSnapshots(t *testing.T) {
t.Skip("snap sync not supported in bor")
testLongNewerForkedSnapSyncedShallowRepair(t, true) testLongNewerForkedSnapSyncedShallowRepair(t, true)
} }
@ -1310,9 +1338,11 @@ func testLongNewerForkedSnapSyncedShallowRepair(t *testing.T, snapshots bool) {
// chain to be rolled back to the committed block, with everything afterwards deleted; // chain to be rolled back to the committed block, with everything afterwards deleted;
// the side chain completely nuked by the freezer. // the side chain completely nuked by the freezer.
func TestLongNewerForkedSnapSyncedDeepRepair(t *testing.T) { func TestLongNewerForkedSnapSyncedDeepRepair(t *testing.T) {
t.Skip("snap sync not supported in bor")
testLongNewerForkedSnapSyncedDeepRepair(t, false) testLongNewerForkedSnapSyncedDeepRepair(t, false)
} }
func TestLongNewerForkedSnapSyncedDeepRepairWithSnapshots(t *testing.T) { func TestLongNewerForkedSnapSyncedDeepRepairWithSnapshots(t *testing.T) {
t.Skip("snap sync not supported in bor")
testLongNewerForkedSnapSyncedDeepRepair(t, true) testLongNewerForkedSnapSyncedDeepRepair(t, true)
} }
@ -1558,9 +1588,11 @@ func testLongReorgedDeepRepair(t *testing.T, snapshots bool) {
// afterwards kept as fast sync data. The side chain completely nuked by the // afterwards kept as fast sync data. The side chain completely nuked by the
// freezer. // freezer.
func TestLongReorgedSnapSyncedShallowRepair(t *testing.T) { func TestLongReorgedSnapSyncedShallowRepair(t *testing.T) {
t.Skip("snap sync not supported in bor")
testLongReorgedSnapSyncedShallowRepair(t, false) testLongReorgedSnapSyncedShallowRepair(t, false)
} }
func TestLongReorgedSnapSyncedShallowRepairWithSnapshots(t *testing.T) { func TestLongReorgedSnapSyncedShallowRepairWithSnapshots(t *testing.T) {
t.Skip("snap sync not supported in bor")
testLongReorgedSnapSyncedShallowRepair(t, true) testLongReorgedSnapSyncedShallowRepair(t, true)
} }
@ -1609,9 +1641,11 @@ func testLongReorgedSnapSyncedShallowRepair(t *testing.T, snapshots bool) {
// expect the canonical chains to be rolled back to the committed block, with // expect the canonical chains to be rolled back to the committed block, with
// everything afterwards deleted. The side chain completely nuked by the freezer. // everything afterwards deleted. The side chain completely nuked by the freezer.
func TestLongReorgedSnapSyncedDeepRepair(t *testing.T) { func TestLongReorgedSnapSyncedDeepRepair(t *testing.T) {
t.Skip("snap sync not supported in bor")
testLongReorgedSnapSyncedDeepRepair(t, false) testLongReorgedSnapSyncedDeepRepair(t, false)
} }
func TestLongReorgedSnapSyncedDeepRepairWithSnapshots(t *testing.T) { func TestLongReorgedSnapSyncedDeepRepairWithSnapshots(t *testing.T) {
t.Skip("snap sync not supported in bor")
testLongReorgedSnapSyncedDeepRepair(t, true) testLongReorgedSnapSyncedDeepRepair(t, true)
} }