dial_queue_test.go 5.28 KB
Newer Older
1 2 3 4
package dht

import (
	"context"
Raúl Kripalani's avatar
Raúl Kripalani committed
5
	"fmt"
6
	"sync"
Raúl Kripalani's avatar
Raúl Kripalani committed
7
	"sync/atomic"
8 9 10
	"testing"
	"time"

11 12
	peer "github.com/libp2p/go-libp2p-peer"
	queue "github.com/libp2p/go-libp2p-peerstore/queue"
13 14 15 16 17 18 19
)

func init() {
	DialQueueScalingMutePeriod = 0
}

func TestDialQueueErrorsWithTooManyConsumers(t *testing.T) {
20 21 22 23 24 25 26 27 28
	var calls int
	defer func() {
		if e := recover(); e == nil {
			t.Error("expected a panic, got none")
		} else if calls != 4 {
			t.Errorf("expected a panic on the 4th call to Consume(); got it on call number %d", calls)
		}
	}()

29 30 31 32 33 34 35
	in := queue.NewChanQueue(context.Background(), queue.NewXORDistancePQ("test"))
	hang := make(chan struct{})
	dialFn := func(ctx context.Context, p peer.ID) error {
		<-hang
		return nil
	}

36 37 38
	dq := newDialQueue(context.Background(), "test", in, dialFn, 3)
	for ; calls < 3; calls++ {
		dq.Consume()
39
	}
40 41
	calls++
	dq.Consume()
42 43 44
}

func TestDialQueueGrowsOnSlowDials(t *testing.T) {
Raúl Kripalani's avatar
Raúl Kripalani committed
45 46
	DialQueueMaxIdle = 10 * time.Minute

47 48 49
	in := queue.NewChanQueue(context.Background(), queue.NewXORDistancePQ("test"))
	hang := make(chan struct{})

Raúl Kripalani's avatar
Raúl Kripalani committed
50
	var cnt int32
51
	dialFn := func(ctx context.Context, p peer.ID) error {
Raúl Kripalani's avatar
Raúl Kripalani committed
52
		atomic.AddInt32(&cnt, 1)
53 54 55 56 57 58 59 60 61 62 63 64 65
		<-hang
		return nil
	}

	// Enqueue 20 jobs.
	for i := 0; i < 20; i++ {
		in.EnqChan <- peer.ID(i)
	}

	// remove the mute period to grow faster.
	dq := newDialQueue(context.Background(), "test", in, dialFn, 4)

	for i := 0; i < 4; i++ {
66
		_ = dq.Consume()
67 68 69
		time.Sleep(100 * time.Millisecond)
	}

Raúl Kripalani's avatar
Raúl Kripalani committed
70 71 72 73 74 75
	for i := 0; i < 20; i++ {
		if atomic.LoadInt32(&cnt) > int32(DialQueueMinParallelism) {
			return
		}
		time.Sleep(100 * time.Millisecond)
	}
76

Raúl Kripalani's avatar
Raúl Kripalani committed
77
	t.Errorf("expected 19 concurrent dials, got %d", atomic.LoadInt32(&cnt))
78 79 80 81

}

func TestDialQueueShrinksWithNoConsumers(t *testing.T) {
Raúl Kripalani's avatar
Raúl Kripalani committed
82 83 84
	// reduce interference from the other shrink path.
	DialQueueMaxIdle = 10 * time.Minute

85 86 87
	in := queue.NewChanQueue(context.Background(), queue.NewXORDistancePQ("test"))
	hang := make(chan struct{})

Raúl Kripalani's avatar
Raúl Kripalani committed
88
	wg := new(sync.WaitGroup)
89 90 91 92 93 94 95 96 97
	wg.Add(13)
	dialFn := func(ctx context.Context, p peer.ID) error {
		wg.Done()
		<-hang
		return nil
	}

	dq := newDialQueue(context.Background(), "test", in, dialFn, 3)

Raúl Kripalani's avatar
Raúl Kripalani committed
98 99 100 101
	defer func() {
		recover()
		fmt.Println(dq.nWorkers)
	}()
102 103 104 105

	// acquire 3 consumers, everytime we acquire a consumer, we will grow the pool because no dial job is completed
	// and immediately returnable.
	for i := 0; i < 3; i++ {
106
		_ = dq.Consume()
107 108
	}

Raúl Kripalani's avatar
Raúl Kripalani committed
109 110 111 112 113 114
	// Enqueue 13 jobs, one per worker we'll grow to.
	for i := 0; i < 13; i++ {
		in.EnqChan <- peer.ID(i)
	}

	waitForWg(t, wg, 2*time.Second)
115 116 117

	// Release a few dialFn, but not all of them because downscaling happens when workers detect there are no
	// consumers to consume their values. So the other three will be these witnesses.
Raúl Kripalani's avatar
Raúl Kripalani committed
118
	for i := 0; i < 3; i++ {
119 120 121 122
		hang <- struct{}{}
	}

	// allow enough time for signalling and dispatching values to outstanding consumers.
Raúl Kripalani's avatar
Raúl Kripalani committed
123
	time.Sleep(1 * time.Second)
124

Raúl Kripalani's avatar
Raúl Kripalani committed
125 126 127 128
	// unblock the rest.
	for i := 0; i < 10; i++ {
		hang <- struct{}{}
	}
129

Raúl Kripalani's avatar
Raúl Kripalani committed
130
	wg = new(sync.WaitGroup)
131 132 133
	// we should now only have 6 workers, because all the shrink events will have been honoured.
	wg.Add(6)

Raúl Kripalani's avatar
Raúl Kripalani committed
134 135
	// enqueue more jobs.
	for i := 0; i < 6; i++ {
136 137 138 139
		in.EnqChan <- peer.ID(i)
	}

	// let's check we have 6 workers hanging.
Raúl Kripalani's avatar
Raúl Kripalani committed
140
	waitForWg(t, wg, 2*time.Second)
141 142 143
}

// Inactivity = workers are idle because the DHT query is progressing slow and is producing too few peers to dial.
Raúl Kripalani's avatar
Raúl Kripalani committed
144 145 146
func TestDialQueueShrinksWithWhenIdle(t *testing.T) {
	DialQueueMaxIdle = 1 * time.Second

147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
	in := queue.NewChanQueue(context.Background(), queue.NewXORDistancePQ("test"))
	hang := make(chan struct{})

	var wg sync.WaitGroup
	wg.Add(13)
	dialFn := func(ctx context.Context, p peer.ID) error {
		wg.Done()
		<-hang
		return nil
	}

	// Enqueue 13 jobs.
	for i := 0; i < 13; i++ {
		in.EnqChan <- peer.ID(i)
	}

	dq := newDialQueue(context.Background(), "test", in, dialFn, 3)

	// keep up to speed with backlog by releasing the dial function every time we acquire a channel.
	for i := 0; i < 13; i++ {
167
		ch := dq.Consume()
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
		hang <- struct{}{}
		<-ch
		time.Sleep(100 * time.Millisecond)
	}

	// wait for MaxIdlePeriod.
	time.Sleep(1500 * time.Millisecond)

	// we should now only have 6 workers, because all the shrink events will have been honoured.
	wg.Add(6)

	// enqueue more jobs
	for i := 0; i < 10; i++ {
		in.EnqChan <- peer.ID(i)
	}

	// let's check we have 6 workers hanging.
	waitForWg(t, &wg, 2*time.Second)
}

func TestDialQueueMutePeriodHonored(t *testing.T) {
	DialQueueScalingMutePeriod = 2 * time.Second

	in := queue.NewChanQueue(context.Background(), queue.NewXORDistancePQ("test"))
	hang := make(chan struct{})
	var wg sync.WaitGroup
	wg.Add(6)
	dialFn := func(ctx context.Context, p peer.ID) error {
		wg.Done()
		<-hang
		return nil
	}

	// Enqueue a bunch of jobs.
	for i := 0; i < 20; i++ {
		in.EnqChan <- peer.ID(i)
	}

	dq := newDialQueue(context.Background(), "test", in, dialFn, 3)

	// pick up three consumers.
	for i := 0; i < 3; i++ {
210
		_ = dq.Consume()
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
		time.Sleep(100 * time.Millisecond)
	}

	time.Sleep(500 * time.Millisecond)

	// we'll only have 6 workers because the grow signals have been ignored.
	waitForWg(t, &wg, 2*time.Second)
}

func waitForWg(t *testing.T, wg *sync.WaitGroup, wait time.Duration) {
	t.Helper()

	done := make(chan struct{})
	go func() {
		defer close(done)
		wg.Wait()
	}()

	select {
	case <-time.After(wait):
		t.Error("timeout while waiting for WaitGroup")
	case <-done:
	}
}