Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

$func.TestName generates names that go vet rejects for non exported types. #2

Open
bjoerndemeyer opened this issue Jun 2, 2022 · 0 comments

Comments

@bjoerndemeyer
Copy link

bjoerndemeyer commented Jun 2, 2022

For non exported function like foo.bar, $func.TestName generates Testfoo_bar which go vet gives a warning about. Please change this to generate a name that is acceptable,. For example, an underscore could be inserted there, so the name becomes Test_foo. Thanks!

This snippet could be a possible fix:

//TestName returns a name of the test
func (f *Func) TestName() string {
	name := "Test"

	if f.IsMethod() {
		recvType := f.ReceiverType()
		var ident *ast.Ident
		if star, ok := recvType.(*ast.StarExpr); ok {
			ident = star.X.(*ast.Ident)
		} else {
			ident = recvType.(*ast.Ident)
		}
		if !ident.IsExported() {
			name += "_"
		}
		name += ident.String()
		name += "_"
	} else if !f.Signature.Name.IsExported() {
		name += "_"
	}

	return name + f.Signature.Name.String()
}
@bjoerndemeyer bjoerndemeyer changed the title $func.TestName generates names that go vet rejects for no-exported functions. $func.TestName generates names that go vet rejects for non exported types. Jun 2, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant