2013-03-21 20:47:23 -04:00
|
|
|
package docker
|
2013-03-11 08:42:36 -04:00
|
|
|
|
|
|
|
import (
|
2013-06-14 13:47:49 -04:00
|
|
|
"bytes"
|
|
|
|
"fmt"
|
2013-03-29 07:42:17 -04:00
|
|
|
"io"
|
2013-03-11 08:42:36 -04:00
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
2013-06-14 13:47:49 -04:00
|
|
|
"path"
|
2013-03-11 08:42:36 -04:00
|
|
|
"testing"
|
2013-03-29 17:09:25 -04:00
|
|
|
"time"
|
2013-03-11 08:42:36 -04:00
|
|
|
)
|
|
|
|
|
2013-03-29 07:42:17 -04:00
|
|
|
func TestCmdStreamLargeStderr(t *testing.T) {
|
|
|
|
cmd := exec.Command("/bin/sh", "-c", "dd if=/dev/zero bs=1k count=1000 of=/dev/stderr; echo hello")
|
|
|
|
out, err := CmdStream(cmd)
|
|
|
|
if err != nil {
|
2013-07-04 17:28:49 -04:00
|
|
|
t.Fatalf("Failed to start command: %s", err)
|
2013-03-29 07:42:17 -04:00
|
|
|
}
|
2013-03-29 17:09:25 -04:00
|
|
|
errCh := make(chan error)
|
|
|
|
go func() {
|
|
|
|
_, err := io.Copy(ioutil.Discard, out)
|
|
|
|
errCh <- err
|
|
|
|
}()
|
|
|
|
select {
|
|
|
|
case err := <-errCh:
|
|
|
|
if err != nil {
|
2013-07-04 17:28:49 -04:00
|
|
|
t.Fatalf("Command should not have failed (err=%.100s...)", err)
|
2013-03-29 17:09:25 -04:00
|
|
|
}
|
|
|
|
case <-time.After(5 * time.Second):
|
|
|
|
t.Fatalf("Command did not complete in 5 seconds; probable deadlock")
|
2013-03-29 07:42:17 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-11 08:42:36 -04:00
|
|
|
func TestCmdStreamBad(t *testing.T) {
|
|
|
|
badCmd := exec.Command("/bin/sh", "-c", "echo hello; echo >&2 error couldn\\'t reverse the phase pulser; exit 1")
|
|
|
|
out, err := CmdStream(badCmd)
|
|
|
|
if err != nil {
|
2013-07-04 17:28:49 -04:00
|
|
|
t.Fatalf("Failed to start command: %s", err)
|
2013-03-11 08:42:36 -04:00
|
|
|
}
|
|
|
|
if output, err := ioutil.ReadAll(out); err == nil {
|
|
|
|
t.Fatalf("Command should have failed")
|
|
|
|
} else if err.Error() != "exit status 1: error couldn't reverse the phase pulser\n" {
|
2013-07-04 17:28:49 -04:00
|
|
|
t.Fatalf("Wrong error value (%s)", err)
|
2013-03-11 08:42:36 -04:00
|
|
|
} else if s := string(output); s != "hello\n" {
|
|
|
|
t.Fatalf("Command output should be '%s', not '%s'", "hello\\n", output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCmdStreamGood(t *testing.T) {
|
|
|
|
cmd := exec.Command("/bin/sh", "-c", "echo hello; exit 0")
|
|
|
|
out, err := CmdStream(cmd)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if output, err := ioutil.ReadAll(out); err != nil {
|
|
|
|
t.Fatalf("Command should not have failed (err=%s)", err)
|
|
|
|
} else if s := string(output); s != "hello\n" {
|
|
|
|
t.Fatalf("Command output should be '%s', not '%s'", "hello\\n", output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-14 13:47:49 -04:00
|
|
|
func tarUntar(t *testing.T, origin string, compression Compression) error {
|
|
|
|
archive, err := Tar(origin, compression)
|
2013-03-11 08:42:36 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2013-06-14 13:47:49 -04:00
|
|
|
|
|
|
|
buf := make([]byte, 10)
|
|
|
|
if _, err := archive.Read(buf); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
archive = io.MultiReader(bytes.NewReader(buf), archive)
|
|
|
|
|
|
|
|
detectedCompression := DetectCompression(buf)
|
|
|
|
if detectedCompression.Extension() != compression.Extension() {
|
|
|
|
return fmt.Errorf("Wrong compression detected. Actual compression: %s, found %s", compression.Extension(), detectedCompression.Extension())
|
|
|
|
}
|
|
|
|
|
2013-03-11 08:42:36 -04:00
|
|
|
tmp, err := ioutil.TempDir("", "docker-test-untar")
|
|
|
|
if err != nil {
|
2013-06-14 13:47:49 -04:00
|
|
|
return err
|
2013-03-11 08:42:36 -04:00
|
|
|
}
|
|
|
|
defer os.RemoveAll(tmp)
|
|
|
|
if err := Untar(archive, tmp); err != nil {
|
2013-06-14 13:47:49 -04:00
|
|
|
return err
|
2013-03-11 08:42:36 -04:00
|
|
|
}
|
|
|
|
if _, err := os.Stat(tmp); err != nil {
|
2013-06-14 13:47:49 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestTarUntar(t *testing.T) {
|
|
|
|
origin, err := ioutil.TempDir("", "docker-test-untar-origin")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(origin)
|
|
|
|
if err := ioutil.WriteFile(path.Join(origin, "1"), []byte("hello world"), 0700); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if err := ioutil.WriteFile(path.Join(origin, "2"), []byte("welcome!"), 0700); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, c := range []Compression{
|
|
|
|
Uncompressed,
|
|
|
|
Gzip,
|
|
|
|
Bzip2,
|
|
|
|
Xz,
|
|
|
|
} {
|
|
|
|
if err := tarUntar(t, origin, c); err != nil {
|
|
|
|
t.Fatalf("Error tar/untar for compression %s: %s", c.Extension(), err)
|
|
|
|
}
|
2013-03-11 08:42:36 -04:00
|
|
|
}
|
|
|
|
}
|