2013-03-21 20:47:23 -04:00
|
|
|
package docker
|
2013-03-18 03:15:35 -04:00
|
|
|
|
|
|
|
import (
|
2013-03-21 01:42:08 -04:00
|
|
|
"archive/tar"
|
|
|
|
"bytes"
|
2013-04-17 19:35:22 -04:00
|
|
|
"errors"
|
2013-05-14 21:52:09 -04:00
|
|
|
"github.com/dotcloud/docker/utils"
|
2013-03-21 01:42:08 -04:00
|
|
|
"io"
|
2013-03-18 03:15:35 -04:00
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestInit(t *testing.T) {
|
|
|
|
graph := tempGraph(t)
|
|
|
|
defer os.RemoveAll(graph.Root)
|
|
|
|
// Root should exist
|
|
|
|
if _, err := os.Stat(graph.Root); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
// All() should be empty
|
|
|
|
if l, err := graph.All(); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
} else if len(l) != 0 {
|
|
|
|
t.Fatalf("List() should return %d, not %d", 0, len(l))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-17 19:35:22 -04:00
|
|
|
// Test that Register can be interrupted cleanly without side effects
|
|
|
|
func TestInterruptedRegister(t *testing.T) {
|
|
|
|
graph := tempGraph(t)
|
|
|
|
defer os.RemoveAll(graph.Root)
|
|
|
|
badArchive, w := io.Pipe() // Use a pipe reader as a fake archive which never yields data
|
|
|
|
image := &Image{
|
2013-06-04 14:00:22 -04:00
|
|
|
ID: GenerateID(),
|
2013-04-17 19:35:22 -04:00
|
|
|
Comment: "testing",
|
|
|
|
Created: time.Now(),
|
|
|
|
}
|
2013-05-09 17:48:10 -04:00
|
|
|
go graph.Register(badArchive, false, image)
|
2013-04-17 19:35:22 -04:00
|
|
|
time.Sleep(200 * time.Millisecond)
|
|
|
|
w.CloseWithError(errors.New("But I'm not a tarball!")) // (Nobody's perfect, darling)
|
2013-06-04 14:00:22 -04:00
|
|
|
if _, err := graph.Get(image.ID); err == nil {
|
2013-04-17 19:35:22 -04:00
|
|
|
t.Fatal("Image should not exist after Register is interrupted")
|
|
|
|
}
|
|
|
|
// Registering the same image again should succeed if the first register was interrupted
|
|
|
|
goodArchive, err := fakeTar()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2013-05-09 17:48:10 -04:00
|
|
|
if err := graph.Register(goodArchive, false, image); err != nil {
|
2013-04-17 19:35:22 -04:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-18 03:15:35 -04:00
|
|
|
// FIXME: Do more extensive tests (ex: create multiple, delete, recreate;
|
|
|
|
// create multiple, check the amount of images and paths, etc..)
|
2013-03-21 20:47:23 -04:00
|
|
|
func TestGraphCreate(t *testing.T) {
|
2013-03-18 03:15:35 -04:00
|
|
|
graph := tempGraph(t)
|
|
|
|
defer os.RemoveAll(graph.Root)
|
2013-03-21 01:42:08 -04:00
|
|
|
archive, err := fakeTar()
|
2013-03-18 03:15:35 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2013-04-25 20:02:38 -04:00
|
|
|
image, err := graph.Create(archive, nil, "Testing", "", nil)
|
2013-03-18 03:15:35 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2013-06-04 14:00:22 -04:00
|
|
|
if err := ValidateID(image.ID); err != nil {
|
2013-03-18 03:15:35 -04:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if image.Comment != "Testing" {
|
|
|
|
t.Fatalf("Wrong comment: should be '%s', not '%s'", "Testing", image.Comment)
|
|
|
|
}
|
2013-04-04 21:38:43 -04:00
|
|
|
if image.DockerVersion != VERSION {
|
|
|
|
t.Fatalf("Wrong docker_version: should be '%s', not '%s'", VERSION, image.DockerVersion)
|
|
|
|
}
|
2013-03-18 03:15:35 -04:00
|
|
|
if images, err := graph.All(); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
} else if l := len(images); l != 1 {
|
|
|
|
t.Fatalf("Wrong number of images. Should be %d, not %d", 1, l)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRegister(t *testing.T) {
|
|
|
|
graph := tempGraph(t)
|
|
|
|
defer os.RemoveAll(graph.Root)
|
2013-03-21 01:42:08 -04:00
|
|
|
archive, err := fakeTar()
|
2013-03-18 03:15:35 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
image := &Image{
|
2013-06-04 14:00:22 -04:00
|
|
|
ID: GenerateID(),
|
2013-03-18 03:15:35 -04:00
|
|
|
Comment: "testing",
|
|
|
|
Created: time.Now(),
|
|
|
|
}
|
2013-05-09 17:48:10 -04:00
|
|
|
err = graph.Register(archive, false, image)
|
2013-03-18 03:15:35 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if images, err := graph.All(); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
} else if l := len(images); l != 1 {
|
|
|
|
t.Fatalf("Wrong number of images. Should be %d, not %d", 1, l)
|
|
|
|
}
|
2013-06-04 14:00:22 -04:00
|
|
|
if resultImg, err := graph.Get(image.ID); err != nil {
|
2013-03-18 03:15:35 -04:00
|
|
|
t.Fatal(err)
|
|
|
|
} else {
|
2013-06-04 14:00:22 -04:00
|
|
|
if resultImg.ID != image.ID {
|
|
|
|
t.Fatalf("Wrong image ID. Should be '%s', not '%s'", image.ID, resultImg.ID)
|
2013-03-18 03:15:35 -04:00
|
|
|
}
|
|
|
|
if resultImg.Comment != image.Comment {
|
|
|
|
t.Fatalf("Wrong image comment. Should be '%s', not '%s'", image.Comment, resultImg.Comment)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMount(t *testing.T) {
|
|
|
|
graph := tempGraph(t)
|
|
|
|
defer os.RemoveAll(graph.Root)
|
2013-03-21 01:42:08 -04:00
|
|
|
archive, err := fakeTar()
|
2013-03-18 03:15:35 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2013-04-25 20:02:38 -04:00
|
|
|
image, err := graph.Create(archive, nil, "Testing", "", nil)
|
2013-03-18 03:15:35 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
tmp, err := ioutil.TempDir("", "docker-test-graph-mount-")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(tmp)
|
|
|
|
rootfs := path.Join(tmp, "rootfs")
|
|
|
|
if err := os.MkdirAll(rootfs, 0700); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
rw := path.Join(tmp, "rw")
|
|
|
|
if err := os.MkdirAll(rw, 0700); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if err := image.Mount(rootfs, rw); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
// FIXME: test for mount contents
|
|
|
|
defer func() {
|
|
|
|
if err := Unmount(rootfs); err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2013-04-01 19:02:02 -04:00
|
|
|
// Test that an image can be deleted by its shorthand prefix
|
|
|
|
func TestDeletePrefix(t *testing.T) {
|
|
|
|
graph := tempGraph(t)
|
|
|
|
defer os.RemoveAll(graph.Root)
|
|
|
|
img := createTestImage(graph, t)
|
2013-06-04 14:00:22 -04:00
|
|
|
if err := graph.Delete(utils.TruncateID(img.ID)); err != nil {
|
2013-04-01 19:02:02 -04:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
assertNImages(graph, t, 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func createTestImage(graph *Graph, t *testing.T) *Image {
|
|
|
|
archive, err := fakeTar()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2013-04-25 20:02:38 -04:00
|
|
|
img, err := graph.Create(archive, nil, "Test image", "", nil)
|
2013-04-01 19:02:02 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
return img
|
|
|
|
}
|
|
|
|
|
2013-03-18 20:57:18 -04:00
|
|
|
func TestDelete(t *testing.T) {
|
|
|
|
graph := tempGraph(t)
|
|
|
|
defer os.RemoveAll(graph.Root)
|
2013-03-21 01:42:08 -04:00
|
|
|
archive, err := fakeTar()
|
2013-03-18 20:57:18 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
assertNImages(graph, t, 0)
|
2013-04-25 20:02:38 -04:00
|
|
|
img, err := graph.Create(archive, nil, "Bla bla", "", nil)
|
2013-03-18 20:57:18 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
assertNImages(graph, t, 1)
|
2013-06-04 14:00:22 -04:00
|
|
|
if err := graph.Delete(img.ID); err != nil {
|
2013-03-18 20:57:18 -04:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
assertNImages(graph, t, 0)
|
|
|
|
|
2013-06-18 20:22:32 -04:00
|
|
|
archive, err = fakeTar()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2013-03-18 20:57:18 -04:00
|
|
|
// Test 2 create (same name) / 1 delete
|
2013-04-25 20:02:38 -04:00
|
|
|
img1, err := graph.Create(archive, nil, "Testing", "", nil)
|
2013-03-18 20:57:18 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2013-06-18 20:22:32 -04:00
|
|
|
archive, err = fakeTar()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2013-04-25 20:02:38 -04:00
|
|
|
if _, err = graph.Create(archive, nil, "Testing", "", nil); err != nil {
|
2013-03-18 20:57:18 -04:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
assertNImages(graph, t, 2)
|
2013-06-04 14:00:22 -04:00
|
|
|
if err := graph.Delete(img1.ID); err != nil {
|
2013-03-18 20:57:18 -04:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
assertNImages(graph, t, 1)
|
|
|
|
|
|
|
|
// Test delete wrong name
|
|
|
|
if err := graph.Delete("Not_foo"); err == nil {
|
|
|
|
t.Fatalf("Deleting wrong ID should return an error")
|
|
|
|
}
|
|
|
|
assertNImages(graph, t, 1)
|
|
|
|
|
2013-06-18 20:22:32 -04:00
|
|
|
archive, err = fakeTar()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2013-03-27 15:09:58 -04:00
|
|
|
// Test delete twice (pull -> rm -> pull -> rm)
|
2013-05-09 17:48:10 -04:00
|
|
|
if err := graph.Register(archive, false, img1); err != nil {
|
2013-03-27 15:09:58 -04:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2013-06-04 14:00:22 -04:00
|
|
|
if err := graph.Delete(img1.ID); err != nil {
|
2013-03-27 15:09:58 -04:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
assertNImages(graph, t, 1)
|
2013-03-18 20:57:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func assertNImages(graph *Graph, t *testing.T, n int) {
|
|
|
|
if images, err := graph.All(); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
} else if actualN := len(images); actualN != n {
|
|
|
|
t.Fatalf("Expected %d images, found %d", n, actualN)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-18 03:15:35 -04:00
|
|
|
/*
|
|
|
|
* HELPER FUNCTIONS
|
|
|
|
*/
|
|
|
|
|
|
|
|
func tempGraph(t *testing.T) *Graph {
|
|
|
|
tmp, err := ioutil.TempDir("", "docker-graph-")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2013-03-21 20:47:23 -04:00
|
|
|
graph, err := NewGraph(tmp)
|
2013-03-18 03:15:35 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
return graph
|
|
|
|
}
|
|
|
|
|
|
|
|
func testArchive(t *testing.T) Archive {
|
2013-03-21 01:42:08 -04:00
|
|
|
archive, err := fakeTar()
|
2013-03-18 03:15:35 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
return archive
|
|
|
|
}
|
2013-03-21 01:42:08 -04:00
|
|
|
|
|
|
|
func fakeTar() (io.Reader, error) {
|
|
|
|
content := []byte("Hello world!\n")
|
|
|
|
buf := new(bytes.Buffer)
|
|
|
|
tw := tar.NewWriter(buf)
|
|
|
|
for _, name := range []string{"/etc/postgres/postgres.conf", "/etc/passwd", "/var/log/postgres/postgres.conf"} {
|
|
|
|
hdr := new(tar.Header)
|
|
|
|
hdr.Size = int64(len(content))
|
|
|
|
hdr.Name = name
|
|
|
|
if err := tw.WriteHeader(hdr); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
tw.Write([]byte(content))
|
|
|
|
}
|
|
|
|
tw.Close()
|
|
|
|
return buf, nil
|
|
|
|
}
|