2013-05-06 10:59:33 -04:00
|
|
|
package docker
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2013-05-15 09:11:39 -04:00
|
|
|
func TestContainerTagImageDelete(t *testing.T) {
|
|
|
|
runtime, err := newTestRuntime()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer nuke(runtime)
|
|
|
|
|
|
|
|
srv := &Server{runtime: runtime}
|
|
|
|
|
2013-07-01 14:45:45 -04:00
|
|
|
initialImages, err := srv.Images(false, "")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2013-05-15 09:11:39 -04:00
|
|
|
if err := srv.runtime.repositories.Set("utest", "tag1", unitTestImageName, false); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if err := srv.runtime.repositories.Set("utest/docker", "tag2", unitTestImageName, false); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
images, err := srv.Images(false, "")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2013-07-01 14:45:45 -04:00
|
|
|
if len(images) != len(initialImages)+2 {
|
2013-07-02 17:47:43 -04:00
|
|
|
t.Errorf("Expected %d images, %d found", len(initialImages)+2, len(images))
|
2013-05-15 09:11:39 -04:00
|
|
|
}
|
|
|
|
|
2013-05-31 10:37:02 -04:00
|
|
|
if _, err := srv.ImageDelete("utest/docker:tag2", true); err != nil {
|
2013-05-15 09:11:39 -04:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
images, err = srv.Images(false, "")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2013-07-01 14:45:45 -04:00
|
|
|
if len(images) != len(initialImages)+1 {
|
2013-07-02 17:47:43 -04:00
|
|
|
t.Errorf("Expected %d images, %d found", len(initialImages)+1, len(images))
|
2013-05-15 09:11:39 -04:00
|
|
|
}
|
|
|
|
|
2013-05-31 10:37:02 -04:00
|
|
|
if _, err := srv.ImageDelete("utest:tag1", true); err != nil {
|
2013-05-15 09:11:39 -04:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
images, err = srv.Images(false, "")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2013-07-01 14:45:45 -04:00
|
|
|
if len(images) != len(initialImages) {
|
2013-07-02 17:47:43 -04:00
|
|
|
t.Errorf("Expected %d image, %d found", len(initialImages), len(images))
|
2013-05-15 09:11:39 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-06 10:59:33 -04:00
|
|
|
func TestCreateRm(t *testing.T) {
|
|
|
|
runtime, err := newTestRuntime()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer nuke(runtime)
|
|
|
|
|
|
|
|
srv := &Server{runtime: runtime}
|
|
|
|
|
2013-05-13 19:39:54 -04:00
|
|
|
config, _, _, err := ParseRun([]string{GetTestImage(runtime).ID, "echo test"}, nil)
|
2013-05-06 10:59:33 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2013-05-09 20:50:56 -04:00
|
|
|
id, err := srv.ContainerCreate(config)
|
2013-05-06 10:59:33 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(runtime.List()) != 1 {
|
|
|
|
t.Errorf("Expected 1 container, %v found", len(runtime.List()))
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = srv.ContainerDestroy(id, true); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(runtime.List()) != 0 {
|
|
|
|
t.Errorf("Expected 0 container, %v found", len(runtime.List()))
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCreateStartRestartStopStartKillRm(t *testing.T) {
|
|
|
|
runtime, err := newTestRuntime()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer nuke(runtime)
|
|
|
|
|
|
|
|
srv := &Server{runtime: runtime}
|
|
|
|
|
2013-05-13 19:39:54 -04:00
|
|
|
config, hostConfig, _, err := ParseRun([]string{GetTestImage(runtime).ID, "/bin/cat"}, nil)
|
2013-05-06 10:59:33 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2013-05-09 20:50:56 -04:00
|
|
|
id, err := srv.ContainerCreate(config)
|
2013-05-06 10:59:33 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(runtime.List()) != 1 {
|
|
|
|
t.Errorf("Expected 1 container, %v found", len(runtime.List()))
|
|
|
|
}
|
|
|
|
|
2013-05-13 19:39:54 -04:00
|
|
|
err = srv.ContainerStart(id, hostConfig)
|
2013-05-06 10:59:33 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = srv.ContainerRestart(id, 1)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = srv.ContainerStop(id, 1)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2013-05-13 19:39:54 -04:00
|
|
|
err = srv.ContainerStart(id, hostConfig)
|
2013-05-06 10:59:33 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = srv.ContainerKill(id)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2013-05-24 21:31:47 -04:00
|
|
|
// FIXME: this failed once with a race condition ("Unable to remove filesystem for xxx: directory not empty")
|
2013-05-06 10:59:33 -04:00
|
|
|
if err = srv.ContainerDestroy(id, true); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(runtime.List()) != 0 {
|
|
|
|
t.Errorf("Expected 0 container, %v found", len(runtime.List()))
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2013-06-14 15:55:00 -04:00
|
|
|
|
|
|
|
func TestRunWithTooLowMemoryLimit(t *testing.T) {
|
|
|
|
runtime, err := newTestRuntime()
|
|
|
|
srv := &Server{runtime: runtime}
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer nuke(runtime)
|
|
|
|
// Try to create a container with a memory limit of 1 byte less than the minimum allowed limit.
|
|
|
|
_, err = srv.ContainerCreate(
|
|
|
|
&Config{
|
|
|
|
Image: GetTestImage(runtime).ID,
|
|
|
|
Memory: 524287,
|
|
|
|
CpuShares: 1000,
|
|
|
|
Cmd: []string{"/bin/cat"},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("Memory limit is smaller than the allowed limit. Container creation should've failed!")
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|