maxbrunsfeld / counterfeiter

A tool for generating self-contained, type-safe test doubles in go
MIT License
926 stars 90 forks source link

Interface fakes generated in the same package as the interface cause an import cycle #103

Open alexkohler opened 5 years ago

alexkohler commented 5 years ago

Suppose you have the following interface:

package abc
//go:generate $GOPATH/src/github.com/maxbrunsfeld/counterfeiter/counterfeiter -o FakeFoo.go . Foo

type Foo interface {
    Bar() error
}

After generating fakes, the output fake includes the following line to ensure FakeFoo is meeting the abc.Foo interface:

var _ abc.Foo = new(FakeFoo)

Note that we output this fake to the abc package, so the abc. identifier in front of Foo is not necessary, and actually causes an import cycle.

alexkohler commented 5 years ago

I guess this is a duplicate of https://github.com/maxbrunsfeld/counterfeiter/issues/68.

dnephin commented 5 years ago

The problem is not limited to just the interface check. If the interface uses any types defined in the same package for args or returns those types will cause the same problem.

I think the arguments against this in #68 are questionable. White box testing can be just as important as black box testing. In fact this project modifies unexported fields in its tests in many places.

@alexkohler did you find a way to work around the problem? Would you be interested in re-opening this issue or should I open a new one.

alexkohler commented 5 years ago

@dnephin I did not find a workaround. I was planning on forking and patching, but I'll gladly reopen this for further discussion.

LasTshaMAN commented 5 years ago

Up! Anything being done in this respect ?

jgroeneveld commented 4 years ago

This basically makes this tool unusable.. quite sad, i liked the style