2019-11-07 14:06:59 -07:00
|
|
|
// 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.
|
|
|
|
|
2017-06-21 19:34:33 -06:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2019-11-07 14:06:59 -07:00
|
|
|
"errors"
|
2017-06-21 19:34:33 -06:00
|
|
|
"os"
|
2019-11-07 14:06:59 -07:00
|
|
|
"os/exec"
|
2017-06-21 19:34:33 -06:00
|
|
|
"runtime"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestExpandUser(t *testing.T) {
|
|
|
|
env := "HOME"
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
env = "USERPROFILE"
|
|
|
|
} else if runtime.GOOS == "plan9" {
|
|
|
|
env = "home"
|
|
|
|
}
|
|
|
|
|
|
|
|
oldenv := os.Getenv(env)
|
|
|
|
os.Setenv(env, "/home/gopher")
|
|
|
|
defer os.Setenv(env, oldenv)
|
|
|
|
|
|
|
|
tests := []struct {
|
|
|
|
input string
|
|
|
|
want string
|
|
|
|
}{
|
|
|
|
{input: "~/foo", want: "/home/gopher/foo"},
|
|
|
|
{input: "${HOME}/foo", want: "/home/gopher/foo"},
|
|
|
|
{input: "/~/foo", want: "/~/foo"},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
got := expandUser(tt.input)
|
|
|
|
if got != tt.want {
|
|
|
|
t.Fatalf("want %q, but %q", tt.want, got)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-07 14:06:59 -07:00
|
|
|
|
|
|
|
func TestCmdErr(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
|
|
input error
|
|
|
|
want string
|
|
|
|
}{
|
|
|
|
{input: errors.New("cmd error"), want: "cmd error"},
|
|
|
|
{input: &exec.ExitError{ProcessState: nil, Stderr: nil}, want: "<nil>"},
|
|
|
|
{input: &exec.ExitError{ProcessState: nil, Stderr: []byte("test")}, want: "<nil>: test"},
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, tt := range tests {
|
|
|
|
got := cmdErr(tt.input)
|
|
|
|
if got != tt.want {
|
|
|
|
t.Fatalf("%d. got %q, want %q", i, got, tt.want)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|