-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Check goroutines in places related to recent found leaks (#12106)
Follows the strategy used in #10850 to check for goroutine leaks on tests in some places related to the leaks investigated as part of #9302. Several things here: * New helper to reuse the goroutine checker, it also prints now the goroutines dump on failure. * Add goroutine checks for autodiscover tests * Add goroutine checks for CloseOnSignal and SubOutlet tests (they detect the issues solved by #11263) * Add goroutine checks for log input tests (they detect issues solved by #12125 and #12164)
- Loading branch information
Showing
8 changed files
with
433 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
// Licensed to Elasticsearch B.V. under one or more contributor | ||
// license agreements. See the NOTICE file distributed with | ||
// this work for additional information regarding copyright | ||
// ownership. Elasticsearch B.V. licenses this file to you under | ||
// the Apache License, Version 2.0 (the "License"); you may | ||
// not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
package channel | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
|
||
"github.com/elastic/beats/filebeat/util" | ||
"github.com/elastic/beats/libbeat/tests/resources" | ||
) | ||
|
||
type dummyOutletter struct { | ||
closed bool | ||
c chan struct{} | ||
} | ||
|
||
func (o *dummyOutletter) OnEvent(event *util.Data) bool { | ||
return true | ||
} | ||
|
||
func (o *dummyOutletter) Close() error { | ||
o.closed = true | ||
close(o.c) | ||
return nil | ||
} | ||
|
||
func (o *dummyOutletter) Done() <-chan struct{} { | ||
return o.c | ||
} | ||
|
||
func TestCloseOnSignal(t *testing.T) { | ||
goroutines := resources.NewGoroutinesChecker() | ||
defer goroutines.Check(t) | ||
|
||
o := &dummyOutletter{c: make(chan struct{})} | ||
sig := make(chan struct{}) | ||
CloseOnSignal(o, sig) | ||
close(sig) | ||
} | ||
|
||
func TestCloseOnSignalClosed(t *testing.T) { | ||
goroutines := resources.NewGoroutinesChecker() | ||
defer goroutines.Check(t) | ||
|
||
o := &dummyOutletter{c: make(chan struct{})} | ||
sig := make(chan struct{}) | ||
c := CloseOnSignal(o, sig) | ||
c.Close() | ||
} | ||
|
||
func TestSubOutlet(t *testing.T) { | ||
goroutines := resources.NewGoroutinesChecker() | ||
defer goroutines.Check(t) | ||
|
||
o := &dummyOutletter{c: make(chan struct{})} | ||
so := SubOutlet(o) | ||
so.Close() | ||
assert.False(t, o.closed) | ||
} | ||
|
||
func TestCloseOnSignalSubOutlet(t *testing.T) { | ||
goroutines := resources.NewGoroutinesChecker() | ||
defer goroutines.Check(t) | ||
|
||
o := &dummyOutletter{c: make(chan struct{})} | ||
c := CloseOnSignal(SubOutlet(o), make(chan struct{})) | ||
o.Close() | ||
c.Close() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.