diff --git a/nodebuilder/tests/api_test.go b/nodebuilder/tests/api_test.go index 2fd4b2d3da..935019b96d 100644 --- a/nodebuilder/tests/api_test.go +++ b/nodebuilder/tests/api_test.go @@ -35,6 +35,7 @@ func getAdminClient(ctx context.Context, nd *nodebuilder.Node, t *testing.T) *cl } func TestNodeModule(t *testing.T) { + t.Skip() ctx, cancel := context.WithTimeout(context.Background(), swamp.DefaultTestTimeout) t.Cleanup(cancel) diff --git a/nodebuilder/tests/blob_test.go b/nodebuilder/tests/blob_test.go index 2078fbfa74..8f6cc10a41 100644 --- a/nodebuilder/tests/blob_test.go +++ b/nodebuilder/tests/blob_test.go @@ -19,6 +19,7 @@ import ( ) func TestBlobModule(t *testing.T) { + t.Skip() ctx, cancel := context.WithTimeout(context.Background(), 25*time.Second) t.Cleanup(cancel) sw := swamp.NewSwamp(t, swamp.WithBlockTime(time.Second*1)) diff --git a/nodebuilder/tests/nd_test.go b/nodebuilder/tests/nd_test.go index 8149ea9fe7..e388a8b1d6 100644 --- a/nodebuilder/tests/nd_test.go +++ b/nodebuilder/tests/nd_test.go @@ -21,6 +21,7 @@ import ( ) func TestShrexNDFromLights(t *testing.T) { + t.Skip() const ( blocks = 10 btime = time.Millisecond * 300 diff --git a/nodebuilder/tests/p2p_test.go b/nodebuilder/tests/p2p_test.go index d05846f40c..decf69dce5 100644 --- a/nodebuilder/tests/p2p_test.go +++ b/nodebuilder/tests/p2p_test.go @@ -26,6 +26,7 @@ Steps: 5. Check that nodes are connected to bridge */ func TestBridgeNodeAsBootstrapper(t *testing.T) { + t.Skip() ctx, cancel := context.WithTimeout(context.Background(), swamp.DefaultTestTimeout) t.Cleanup(cancel) @@ -65,6 +66,7 @@ Steps: 7. Check that full and light nodes are connected to each other */ func TestFullDiscoveryViaBootstrapper(t *testing.T) { + t.Skip() ctx, cancel := context.WithTimeout(context.Background(), swamp.DefaultTestTimeout) t.Cleanup(cancel) @@ -139,6 +141,7 @@ Steps: *NOTE*: this test will take some time because it relies on several cycles of peer discovery */ func TestRestartNodeDiscovery(t *testing.T) { + t.Skip() ctx, cancel := context.WithTimeout(context.Background(), swamp.DefaultTestTimeout) t.Cleanup(cancel) diff --git a/nodebuilder/tests/reconstruct_test.go b/nodebuilder/tests/reconstruct_test.go index 3c2e8b1f83..d426e41c38 100644 --- a/nodebuilder/tests/reconstruct_test.go +++ b/nodebuilder/tests/reconstruct_test.go @@ -39,6 +39,7 @@ Steps: 5. Check that a FN can retrieve shares from 1 to 20 blocks */ func TestFullReconstructFromBridge(t *testing.T) { + t.Skip() const ( blocks = 20 bsize = 16 @@ -89,6 +90,7 @@ Test-Case: Full Node reconstructs blocks from each other, after unsuccessfully s block from LN subnetworks. Analog to TestShareAvailable_DisconnectedFullNodes. */ func TestFullReconstructFromFulls(t *testing.T) { + t.Skip() light.DefaultSampleAmount = 10 // s const ( blocks = 10 diff --git a/nodebuilder/tests/sync_test.go b/nodebuilder/tests/sync_test.go index 0bb0e1c757..78fcdba4da 100644 --- a/nodebuilder/tests/sync_test.go +++ b/nodebuilder/tests/sync_test.go @@ -42,6 +42,7 @@ Full node: 8. Wait for FN DASer to catch up to network head */ func TestSyncAgainstBridge_NonEmptyChain(t *testing.T) { + t.Skip() ctx, cancel := context.WithTimeout(context.Background(), swamp.DefaultTestTimeout) t.Cleanup(cancel) @@ -135,6 +136,7 @@ Full node: 8. Wait for FN DASer to catch up to network head */ func TestSyncAgainstBridge_EmptyChain(t *testing.T) { + t.Skip() ctx, cancel := context.WithTimeout(context.Background(), swamp.DefaultTestTimeout) t.Cleanup(cancel) @@ -211,6 +213,7 @@ Steps: 9. Check LN is synced to height 40 */ func TestSyncStartStopLightWithBridge(t *testing.T) { + t.Skip() ctx, cancel := context.WithTimeout(context.Background(), swamp.DefaultTestTimeout) defer cancel()