| // Copyright 2017 The Go Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style |
| // license that can be found in the LICENSE file. |
| func TestAppendPath(t *testing.T) { |
| tmpd, err := ioutil.TempDir("", "go") |
| if err := os.Setenv("HOME", tmpd); err != nil { |
| GOPATH := os.Getenv("GOPATH") |
| if err := appendToPATH(filepath.Join(GOPATH, "bin")); err != nil { |
| shellConfig, err := shellConfigFile() |
| b, err := ioutil.ReadFile(shellConfig) |
| expected := "export PATH=" + pathVar + envSeparator + filepath.Join(GOPATH, "bin") |
| if strings.TrimSpace(string(b)) != expected { |
| t.Fatalf("expected: %q, got %q", expected, strings.TrimSpace(string(b))) |
| // Check that appendToPATH is idempotent. |
| if err := appendToPATH(filepath.Join(GOPATH, "bin")); err != nil { |
| b, err = ioutil.ReadFile(shellConfig) |
| if strings.TrimSpace(string(b)) != expected { |
| t.Fatalf("expected: %q, got %q", expected, strings.TrimSpace(string(b))) |