mirror of
https://github.com/traefik/traefik.git
synced 2025-05-29 11:01:24 +00:00
Ensure WaitGroup.Done() is always called
This commit is contained in:
parent
6fed76a687
commit
a8c73f7baf
@ -59,12 +59,23 @@ func (p *Pool) GoCtx(goroutine routineCtx) {
|
|||||||
p.routinesCtx = append(p.routinesCtx, goroutine)
|
p.routinesCtx = append(p.routinesCtx, goroutine)
|
||||||
p.waitGroup.Add(1)
|
p.waitGroup.Add(1)
|
||||||
Go(func() {
|
Go(func() {
|
||||||
|
defer p.waitGroup.Done()
|
||||||
goroutine(p.ctx)
|
goroutine(p.ctx)
|
||||||
p.waitGroup.Done()
|
|
||||||
})
|
})
|
||||||
p.lock.Unlock()
|
p.lock.Unlock()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// addGo adds a recoverable goroutine, and can be stopped with stop chan
|
||||||
|
func (p *Pool) addGo(goroutine func(stop chan bool)) {
|
||||||
|
p.lock.Lock()
|
||||||
|
newRoutine := routine{
|
||||||
|
goroutine: goroutine,
|
||||||
|
stop: make(chan bool, 1),
|
||||||
|
}
|
||||||
|
p.routines = append(p.routines, newRoutine)
|
||||||
|
p.lock.Unlock()
|
||||||
|
}
|
||||||
|
|
||||||
// Go starts a recoverable goroutine, and can be stopped with stop chan
|
// Go starts a recoverable goroutine, and can be stopped with stop chan
|
||||||
func (p *Pool) Go(goroutine func(stop chan bool)) {
|
func (p *Pool) Go(goroutine func(stop chan bool)) {
|
||||||
p.lock.Lock()
|
p.lock.Lock()
|
||||||
@ -75,8 +86,8 @@ func (p *Pool) Go(goroutine func(stop chan bool)) {
|
|||||||
p.routines = append(p.routines, newRoutine)
|
p.routines = append(p.routines, newRoutine)
|
||||||
p.waitGroup.Add(1)
|
p.waitGroup.Add(1)
|
||||||
Go(func() {
|
Go(func() {
|
||||||
|
defer p.waitGroup.Done()
|
||||||
goroutine(newRoutine.stop)
|
goroutine(newRoutine.stop)
|
||||||
p.waitGroup.Done()
|
|
||||||
})
|
})
|
||||||
p.lock.Unlock()
|
p.lock.Unlock()
|
||||||
}
|
}
|
||||||
@ -112,16 +123,16 @@ func (p *Pool) Start() {
|
|||||||
p.waitGroup.Add(1)
|
p.waitGroup.Add(1)
|
||||||
p.routines[i].stop = make(chan bool, 1)
|
p.routines[i].stop = make(chan bool, 1)
|
||||||
Go(func() {
|
Go(func() {
|
||||||
|
defer p.waitGroup.Done()
|
||||||
p.routines[i].goroutine(p.routines[i].stop)
|
p.routines[i].goroutine(p.routines[i].stop)
|
||||||
p.waitGroup.Done()
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, routine := range p.routinesCtx {
|
for _, routine := range p.routinesCtx {
|
||||||
p.waitGroup.Add(1)
|
p.waitGroup.Add(1)
|
||||||
Go(func() {
|
Go(func() {
|
||||||
|
defer p.waitGroup.Done()
|
||||||
routine(p.ctx)
|
routine(p.ctx)
|
||||||
p.waitGroup.Done()
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -173,6 +173,73 @@ func TestPoolStartWithStopChan(t *testing.T) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestPoolCleanupWithGoPanicking(t *testing.T) {
|
||||||
|
testRoutine := func(stop chan bool) {
|
||||||
|
panic("BOOM")
|
||||||
|
}
|
||||||
|
|
||||||
|
testCtxRoutine := func(ctx context.Context) {
|
||||||
|
panic("BOOM")
|
||||||
|
}
|
||||||
|
|
||||||
|
testCases := []struct {
|
||||||
|
desc string
|
||||||
|
fn func(*Pool)
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
desc: "Go()",
|
||||||
|
fn: func(p *Pool) {
|
||||||
|
p.Go(testRoutine)
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
desc: "addGo() and Start()",
|
||||||
|
fn: func(p *Pool) {
|
||||||
|
p.addGo(testRoutine)
|
||||||
|
p.Start()
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
desc: "GoCtx()",
|
||||||
|
fn: func(p *Pool) {
|
||||||
|
p.GoCtx(testCtxRoutine)
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
desc: "AddGoCtx() and Start()",
|
||||||
|
fn: func(p *Pool) {
|
||||||
|
p.AddGoCtx(testCtxRoutine)
|
||||||
|
p.Start()
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, test := range testCases {
|
||||||
|
test := test
|
||||||
|
t.Run(test.desc, func(t *testing.T) {
|
||||||
|
p := NewPool(context.Background())
|
||||||
|
|
||||||
|
timer := time.NewTimer(500 * time.Millisecond)
|
||||||
|
defer timer.Stop()
|
||||||
|
|
||||||
|
test.fn(p)
|
||||||
|
|
||||||
|
testDone := make(chan bool, 1)
|
||||||
|
go func() {
|
||||||
|
p.Cleanup()
|
||||||
|
testDone <- true
|
||||||
|
}()
|
||||||
|
|
||||||
|
select {
|
||||||
|
case <-timer.C:
|
||||||
|
t.Fatalf("Pool.Cleanup() did not complete in time with a panicking goroutine")
|
||||||
|
case <-testDone:
|
||||||
|
return
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func TestGoroutineRecover(t *testing.T) {
|
func TestGoroutineRecover(t *testing.T) {
|
||||||
// if recover fails the test will panic
|
// if recover fails the test will panic
|
||||||
Go(func() {
|
Go(func() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user