SetupTarTestFixture: don't depend on "sh"

This commit is contained in:
Alexander Neumann 2015-08-16 23:02:02 +02:00
parent 4f8cc1180d
commit c228a212b0
1 changed files with 7 additions and 8 deletions

View File

@ -88,19 +88,18 @@ func RandomReader(seed, size int) *bytes.Reader {
// SetupTarTestFixture extracts the tarFile to outputDir.
func SetupTarTestFixture(t testing.TB, outputDir, tarFile string) {
err := System("sh", "-c", `(cd "$1" && tar xzf - ) < "$2"`,
"sh", outputDir, tarFile)
f, err := os.Open(tarFile)
defer f.Close()
OK(t, err)
}
// System runs the command and returns the exit code. Output is passed on to
// stdout/stderr.
func System(command string, args ...string) error {
cmd := exec.Command(command, args...)
cmd := exec.Command("tar", "xzf", "-")
cmd.Dir = outputDir
cmd.Stdin = f
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
return cmd.Run()
OK(t, cmd.Run())
}
// WithTestEnvironment creates a test environment, extracts the repository