mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 18:32:23 +00:00
swarm: Deactivated tests depending on WaitTillHealthy
This commit is contained in:
parent
b5717a7a13
commit
aef2c87b9f
8 changed files with 20 additions and 0 deletions
|
|
@ -33,6 +33,8 @@ import (
|
|||
// BucketKeyKademlia key. This allows to use WaitTillHealthy to block until
|
||||
// all nodes have the their Kadmlias healthy.
|
||||
func ExampleSimulation_WaitTillHealthy() {
|
||||
|
||||
t.Skip("temporarily disabled as simuations.WaitTillHealthy cannot be trusted")
|
||||
sim := simulation.New(map[string]simulation.ServiceFunc{
|
||||
"bzz": func(ctx *adapters.ServiceContext, b *sync.Map) (node.Service, func(), error) {
|
||||
addr := network.NewAddr(ctx.Config.Node())
|
||||
|
|
|
|||
|
|
@ -453,6 +453,8 @@ func TestDeliveryFromNodes(t *testing.T) {
|
|||
}
|
||||
|
||||
func testDeliveryFromNodes(t *testing.T, nodes, conns, chunkCount int, skipCheck bool) {
|
||||
|
||||
t.Skip("temporarily disabled as simuations.WaitTillHealthy cannot be trusted")
|
||||
sim := simulation.New(map[string]simulation.ServiceFunc{
|
||||
"streamer": func(ctx *adapters.ServiceContext, bucket *sync.Map) (s node.Service, cleanup func(), err error) {
|
||||
node := ctx.Config.Node()
|
||||
|
|
|
|||
|
|
@ -52,6 +52,8 @@ func TestIntervalsLiveAndHistory(t *testing.T) {
|
|||
}
|
||||
|
||||
func testIntervals(t *testing.T, live bool, history *Range, skipCheck bool) {
|
||||
|
||||
t.Skip("temporarily disabled as simuations.WaitTillHealthy cannot be trusted")
|
||||
nodes := 2
|
||||
chunkCount := dataChunkCount
|
||||
externalStreamName := "externalStream"
|
||||
|
|
|
|||
|
|
@ -153,6 +153,7 @@ simulation's `action` function.
|
|||
The snapshot should have 'streamer' in its service list.
|
||||
*/
|
||||
func runFileRetrievalTest(nodeCount int) error {
|
||||
t.Skip("temporarily disabled as simuations.WaitTillHealthy cannot be trusted")
|
||||
sim := simulation.New(retrievalSimServiceMap)
|
||||
defer sim.Close()
|
||||
|
||||
|
|
@ -246,6 +247,8 @@ simulation's `action` function.
|
|||
The snapshot should have 'streamer' in its service list.
|
||||
*/
|
||||
func runRetrievalTest(chunkCount int, nodeCount int) error {
|
||||
|
||||
t.Skip("temporarily disabled as simuations.WaitTillHealthy cannot be trusted")
|
||||
sim := simulation.New(retrievalSimServiceMap)
|
||||
defer sim.Close()
|
||||
|
||||
|
|
|
|||
|
|
@ -182,6 +182,8 @@ func streamerFunc(ctx *adapters.ServiceContext, bucket *sync.Map) (s node.Servic
|
|||
}
|
||||
|
||||
func testSyncingViaGlobalSync(t *testing.T, chunkCount int, nodeCount int) {
|
||||
|
||||
t.Skip("temporarily disabled as simuations.WaitTillHealthy cannot be trusted")
|
||||
sim := simulation.New(simServiceMap)
|
||||
defer sim.Close()
|
||||
|
||||
|
|
@ -329,6 +331,8 @@ assuming that the snapshot file identifies a healthy
|
|||
kademlia network. The snapshot should have 'streamer' in its service list.
|
||||
*/
|
||||
func testSyncingViaDirectSubscribe(t *testing.T, chunkCount int, nodeCount int) error {
|
||||
|
||||
t.Skip("temporarily disabled as simuations.WaitTillHealthy cannot be trusted")
|
||||
sim := simulation.New(map[string]simulation.ServiceFunc{
|
||||
"streamer": func(ctx *adapters.ServiceContext, bucket *sync.Map) (s node.Service, cleanup func(), err error) {
|
||||
n := ctx.Config.Node()
|
||||
|
|
|
|||
|
|
@ -68,6 +68,8 @@ func createMockStore(globalStore mock.GlobalStorer, id enode.ID, addr *network.B
|
|||
}
|
||||
|
||||
func testSyncBetweenNodes(t *testing.T, nodes, conns, chunkCount int, skipCheck bool, po uint8) {
|
||||
|
||||
t.Skip("temporarily disabled as simuations.WaitTillHealthy cannot be trusted")
|
||||
sim := simulation.New(map[string]simulation.ServiceFunc{
|
||||
"streamer": func(ctx *adapters.ServiceContext, bucket *sync.Map) (s node.Service, cleanup func(), err error) {
|
||||
var store storage.ChunkStore
|
||||
|
|
|
|||
|
|
@ -84,6 +84,8 @@ func watchSim(sim *simulation.Simulation) (context.Context, context.CancelFunc)
|
|||
|
||||
//This test requests bogus hashes into the network
|
||||
func TestNonExistingHashesWithServer(t *testing.T) {
|
||||
|
||||
t.Skip("temporarily disabled as simuations.WaitTillHealthy cannot be trusted")
|
||||
nodeCount, _, sim := setupSim(retrievalSimServiceMap)
|
||||
defer sim.Close()
|
||||
|
||||
|
|
@ -143,6 +145,7 @@ func sendSimTerminatedEvent(sim *simulation.Simulation) {
|
|||
//can visualize messages like SendOfferedMsg, WantedHashesMsg, DeliveryMsg
|
||||
func TestSnapshotSyncWithServer(t *testing.T) {
|
||||
|
||||
t.Skip("temporarily disabled as simuations.WaitTillHealthy cannot be trusted")
|
||||
nodeCount, chunkCount, sim := setupSim(simServiceMap)
|
||||
defer sim.Close()
|
||||
|
||||
|
|
|
|||
|
|
@ -259,6 +259,8 @@ type testSwarmNetworkOptions struct {
|
|||
// - May wait for Kademlia on every node to be healthy.
|
||||
// - Checking if a file is retrievable from all nodes.
|
||||
func testSwarmNetwork(t *testing.T, o *testSwarmNetworkOptions, steps ...testSwarmNetworkStep) {
|
||||
|
||||
t.Skip("temporarily disabled as simuations.WaitTillHealthy cannot be trusted")
|
||||
if o == nil {
|
||||
o = new(testSwarmNetworkOptions)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue