cmd/go-contrib-init: add unit test for the cmdErr function

Change-Id: I5f03eb6ea220befb15e5318634124d1b5005e0b1
Reviewed-on: https://go-review.googlesource.com/c/tools/+/205799
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Arda Güçlü 2019-11-08 00:06:59 +03:00 committed by Brad Fitzpatrick
parent 7dd52f0964
commit 9d59ce8a7f

View File

@ -1,7 +1,13 @@
// 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.
package main package main
import ( import (
"errors"
"os" "os"
"os/exec"
"runtime" "runtime"
"testing" "testing"
) )
@ -33,3 +39,21 @@ func TestExpandUser(t *testing.T) {
} }
} }
} }
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)
}
}
}