matryer / moq

Interface mocking tool for go generate
http://bit.ly/meetmoq
MIT License
1.96k stars 126 forks source link

error: couldn't load source package #201

Closed scherman closed 1 year ago

scherman commented 1 year ago

Hey all - while trying to mock the following interface using v0.3.2:

package main

type MyInterface interface {
    HelloWorld(name string)
}

I'm getting the following error:

~ moq /Users/jscherman/Library/Application\ Support/JetBrains/GoLand2022.1/scratches/scratch_31.go MyInterface 
couldn't load source package: err: fork/exec /usr/local/Cellar/go/1.20.7/libexec/bin/go: not a directory: stderr: 
moq [flags] source-dir interface [interface2 [interface3 [...]]]
  -fmt string
        go pretty-printer: gofmt, goimports or noop (default gofmt)
  -out string
        output file (default stdout)
  -pkg string
        package name (default will infer)
  -rm
        first remove output file, if it exists
  -skip-ensure
        suppress mock implementation check, avoid import cycle if mocks generated outside of the tested package
  -stub
        return zero values when no mock implementation is provided, do not panic
  -version
        show the version for moq
  -with-resets
        generate functions to facilitate resetting calls made to a mock
Specifying an alias for the mock is also supported with the format 'interface:alias'
Ex: moq -pkg different . MyInterface:MyMock

I've tried reinstalling moq and also reinstalling go from scratch. Does anyone have any idea what might be going on?

here's my go env and go version since I imagine this may possibly related to a config issue:

~ go version
go version go1.20.7 darwin/amd64
~ go env
GO111MODULE=""
GOARCH="amd64"
GOBIN=""
GOCACHE="/Users/jscherman/Library/Caches/go-build"
GOENV="/Users/jscherman/Library/Application Support/go/env"
GOEXE=""
GOEXPERIMENT=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOINSECURE=""
GOMODCACHE="/Users/jscherman/go/pkg/mod"
GONOPROXY="github.mycompany.dev/*"
GONOSUMDB="github.mycompany.dev/*"
GOOS="darwin"
GOPATH="/Users/jscherman/go"
GOPRIVATE="github.mycompany.dev/*"
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/usr/local/Cellar/go/1.20.7/libexec"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/usr/local/Cellar/go/1.20.7/libexec/pkg/tool/darwin_amd64"
GOVCS=""
GOVERSION="go1.20.7"
GCCGO="gccgo"
GOAMD64="v1"
AR="ar"
CC="cc"
CXX="c++"
CGO_ENABLED="1"
GOMOD="/dev/null"
GOWORK=""
CGO_CFLAGS="-O2 -g"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-O2 -g"
CGO_FFLAGS="-O2 -g"
CGO_LDFLAGS="-O2 -g"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -arch x86_64 -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/s2/76tpjd9n4k76vcldy3tnhprh0000gn/T/go-build2851912302=/tmp/go-build -gno-record-gcc-switches -fno-common"

Any help will be highly appreciated 🙂