Categorygo.uber.org/goleak
modulepackage
1.3.0
Repository: https://github.com/uber-go/goleak.git
Documentation: pkg.go.dev

# README

goleak GoDoc Build Status Coverage Status

Goroutine leak detector to help avoid Goroutine leaks.

Installation

You can use go get to get the latest version:

go get -u go.uber.org/goleak

goleak also supports semver releases.

Note that go-leak only supports the two most recent minor versions of Go.

Quick Start

To verify that there are no unexpected goroutines running at the end of a test:

func TestA(t *testing.T) {
	defer goleak.VerifyNone(t)

	// test logic here.
}

Instead of checking for leaks at the end of every test, goleak can also be run at the end of every test package by creating a TestMain function for your package:

func TestMain(m *testing.M) {
	goleak.VerifyTestMain(m)
}

Determine Source of Package Leaks

When verifying leaks using TestMain, the leak test is only run once after all tests have been run. This is typically enough to ensure there's no goroutines leaked from tests, but when there are leaks, it's hard to determine which test is causing them.

You can use the following bash script to determine the source of the failing test:

# Create a test binary which will be used to run each test individually
$ go test -c -o tests

# Run each test individually, printing "." for successful tests, or the test name
# for failing tests.
$ for test in $(go test -list . | grep -E "^(Test|Example)"); do ./tests -test.run "^$test\$" &>/dev/null && echo -n "." || echo -e "\n$test failed"; done

This will only print names of failing tests which can be investigated individually. E.g.,

.....
TestLeakyTest failed
.......

Stability

goleak is v1 and follows SemVer strictly.

No breaking changes will be made to exported APIs before 2.0.

# Functions

Cleanup sets up a cleanup function that will be executed at the end of the leak check.
Find looks for extra goroutines, and returns a descriptive error if any are found.
IgnoreAnyFunction ignores goroutines where the specified function is present anywhere in the stack.
IgnoreCurrent records all current goroutines when the option is created, and ignores them in any future Find/Verify calls.
IgnoreTopFunction ignores any goroutines where the specified function is at the top of the stack.
VerifyNone marks the given TestingT as failed if any extra goroutines are found by Find.
VerifyTestMain can be used in a TestMain function for package tests to verify that there were no goroutine leaks.

# Interfaces

Option lets users specify custom verifications.
TestingM is the minimal subset of testing.M that we use.
TestingT is the minimal subset of testing.TB that we use.