Skip to content

Commit

Permalink
Merge pull request #68 from tendermint/bugfix/gopath-executes-go
Browse files Browse the repository at this point in the history
make GoPath a function
  • Loading branch information
melekes committed Oct 25, 2017
2 parents 93bd208 + bcf15e5 commit 0a65249
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 9 deletions.
13 changes: 9 additions & 4 deletions common/os.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,15 @@ import (
"syscall"
)

var (
GoPath = gopath()
)
var gopath string

// GoPath returns GOPATH env variable value. If it is not set, this function
// will try to call `go env GOPATH` subcommand.
func GoPath() string {
if gopath != "" {
return gopath
}

func gopath() string {
path := os.Getenv("GOPATH")
if len(path) == 0 {
goCmd := exec.Command("go", "env", "GOPATH")
Expand All @@ -27,6 +31,7 @@ func gopath() string {
}
path = string(out)
}
gopath = path
return path
}

Expand Down
27 changes: 22 additions & 5 deletions common/os_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,31 @@ func TestGoPath(t *testing.T) {
if err != nil {
t.Fatal(err)
}
path = gopath()
path = GoPath()
if path != "~/testgopath" {
t.Fatalf("gopath should return GOPATH env var if set, got %v", path)
t.Fatalf("should get GOPATH env var value, got %v", path)
}
os.Unsetenv("GOPATH")

path = gopath()
if path == "~/testgopath" || path == "" {
t.Fatalf("gopath should return go env GOPATH result if env var does not exist, got %v", path)
path = GoPath()
if path != "~/testgopath" {
t.Fatalf("subsequent calls should return the same value, got %v", path)
}
}

func TestGoPathWithoutEnvVar(t *testing.T) {
// restore original gopath upon exit
path := os.Getenv("GOPATH")
defer func() {
_ = os.Setenv("GOPATH", path)
}()

os.Unsetenv("GOPATH")
// reset cache
gopath = ""

path = GoPath()
if path == "" || path == "~/testgopath" {
t.Fatalf("should get nonempty result of calling go env GOPATH, got %v", path)
}
}

0 comments on commit 0a65249

Please sign in to comment.