123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233 |
- package docker
- import (
- "archive/tar"
- "bufio"
- "bytes"
- "encoding/json"
- "github.com/dotcloud/docker/auth"
- "github.com/dotcloud/docker/registry"
- "github.com/dotcloud/docker/utils"
- "io"
- "net"
- "net/http"
- "net/http/httptest"
- "os"
- "path"
- "testing"
- "time"
- )
- func TestGetAuth(t *testing.T) {
- runtime, err := newTestRuntime()
- if err != nil {
- t.Fatal(err)
- }
- defer nuke(runtime)
- srv := &Server{
- runtime: runtime,
- registry: registry.NewRegistry(runtime.root),
- }
- r := httptest.NewRecorder()
- authConfig := &auth.AuthConfig{
- Username: "utest",
- Password: "utest",
- Email: "utest@yopmail.com",
- }
- authConfigJson, err := json.Marshal(authConfig)
- if err != nil {
- t.Fatal(err)
- }
- req, err := http.NewRequest("POST", "/auth", bytes.NewReader(authConfigJson))
- if err != nil {
- t.Fatal(err)
- }
- if err := postAuth(srv, r, req, nil); err != nil {
- t.Fatal(err)
- }
- if r.Code != http.StatusOK && r.Code != 0 {
- t.Fatalf("%d OK or 0 expected, received %d\n", http.StatusOK, r.Code)
- }
- newAuthConfig := srv.registry.GetAuthConfig()
- if newAuthConfig.Username != authConfig.Username ||
- newAuthConfig.Email != authConfig.Email {
- t.Fatalf("The auth configuration hasn't been set correctly")
- }
- }
- func TestGetVersion(t *testing.T) {
- runtime, err := newTestRuntime()
- if err != nil {
- t.Fatal(err)
- }
- defer nuke(runtime)
- srv := &Server{runtime: runtime}
- r := httptest.NewRecorder()
- if err := getVersion(srv, r, nil, nil); err != nil {
- t.Fatal(err)
- }
- v := &ApiVersion{}
- if err = json.Unmarshal(r.Body.Bytes(), v); err != nil {
- t.Fatal(err)
- }
- if v.Version != VERSION {
- t.Errorf("Excepted version %s, %s found", VERSION, v.Version)
- }
- }
- func TestGetInfo(t *testing.T) {
- runtime, err := newTestRuntime()
- if err != nil {
- t.Fatal(err)
- }
- defer nuke(runtime)
- srv := &Server{runtime: runtime}
- r := httptest.NewRecorder()
- if err := getInfo(srv, r, nil, nil); err != nil {
- t.Fatal(err)
- }
- infos := &ApiInfo{}
- err = json.Unmarshal(r.Body.Bytes(), infos)
- if err != nil {
- t.Fatal(err)
- }
- if infos.Version != VERSION {
- t.Errorf("Excepted version %s, %s found", VERSION, infos.Version)
- }
- }
- func TestGetImagesJson(t *testing.T) {
- runtime, err := newTestRuntime()
- if err != nil {
- t.Fatal(err)
- }
- defer nuke(runtime)
- srv := &Server{runtime: runtime}
- // all=0
- req, err := http.NewRequest("GET", "/images/json?all=0", nil)
- if err != nil {
- t.Fatal(err)
- }
- r := httptest.NewRecorder()
- if err := getImagesJson(srv, r, req, nil); err != nil {
- t.Fatal(err)
- }
- images := []ApiImages{}
- if err := json.Unmarshal(r.Body.Bytes(), &images); err != nil {
- t.Fatal(err)
- }
- if len(images) != 1 {
- t.Errorf("Excepted 1 image, %d found", len(images))
- }
- if images[0].Repository != unitTestImageName {
- t.Errorf("Excepted image %s, %s found", unitTestImageName, images[0].Repository)
- }
- r2 := httptest.NewRecorder()
- // all=1
- req2, err := http.NewRequest("GET", "/images/json?all=1", nil)
- if err != nil {
- t.Fatal(err)
- }
- if err := getImagesJson(srv, r2, req2, nil); err != nil {
- t.Fatal(err)
- }
- images2 := []ApiImages{}
- if err := json.Unmarshal(r2.Body.Bytes(), &images2); err != nil {
- t.Fatal(err)
- }
- if len(images2) != 1 {
- t.Errorf("Excepted 1 image, %d found", len(images2))
- }
- if images2[0].Id != GetTestImage(runtime).Id {
- t.Errorf("Retrieved image Id differs, expected %s, received %s", GetTestImage(runtime).Id, images2[0].Id)
- }
- r3 := httptest.NewRecorder()
- // filter=a
- req3, err := http.NewRequest("GET", "/images/json?filter=a", nil)
- if err != nil {
- t.Fatal(err)
- }
- if err := getImagesJson(srv, r3, req3, nil); err != nil {
- t.Fatal(err)
- }
- images3 := []ApiImages{}
- if err := json.Unmarshal(r3.Body.Bytes(), &images3); err != nil {
- t.Fatal(err)
- }
- if len(images3) != 0 {
- t.Errorf("Excepted 1 image, %d found", len(images3))
- }
- }
- func TestGetImagesViz(t *testing.T) {
- runtime, err := newTestRuntime()
- if err != nil {
- t.Fatal(err)
- }
- defer nuke(runtime)
- srv := &Server{runtime: runtime}
- r := httptest.NewRecorder()
- if err := getImagesViz(srv, r, nil, nil); err != nil {
- t.Fatal(err)
- }
- if r.Code != http.StatusOK {
- t.Fatalf("%d OK expected, received %d\n", http.StatusOK, r.Code)
- }
- reader := bufio.NewReader(r.Body)
- line, err := reader.ReadString('\n')
- if err != nil {
- t.Fatal(err)
- }
- if line != "digraph docker {\n" {
- t.Errorf("Excepted digraph docker {\n, %s found", line)
- }
- }
- func TestGetImagesSearch(t *testing.T) {
- runtime, err := newTestRuntime()
- if err != nil {
- t.Fatal(err)
- }
- defer nuke(runtime)
- srv := &Server{
- runtime: runtime,
- registry: registry.NewRegistry(runtime.root),
- }
- r := httptest.NewRecorder()
- req, err := http.NewRequest("GET", "/images/search?term=redis", nil)
- if err != nil {
- t.Fatal(err)
- }
- if err := getImagesSearch(srv, r, req, nil); err != nil {
- t.Fatal(err)
- }
- results := []ApiSearch{}
- if err := json.Unmarshal(r.Body.Bytes(), &results); err != nil {
- t.Fatal(err)
- }
- if len(results) < 2 {
- t.Errorf("Excepted at least 2 lines, %d found", len(results))
- }
- }
- func TestGetImagesHistory(t *testing.T) {
- runtime, err := newTestRuntime()
- if err != nil {
- t.Fatal(err)
- }
- defer nuke(runtime)
- srv := &Server{runtime: runtime}
- r := httptest.NewRecorder()
- if err := getImagesHistory(srv, r, nil, map[string]string{"name": unitTestImageName}); err != nil {
- t.Fatal(err)
- }
- history := []ApiHistory{}
- if err := json.Unmarshal(r.Body.Bytes(), &history); err != nil {
- t.Fatal(err)
- }
- if len(history) != 1 {
- t.Errorf("Excepted 1 line, %d found", len(history))
- }
- }
- func TestGetImagesByName(t *testing.T) {
- runtime, err := newTestRuntime()
- if err != nil {
- t.Fatal(err)
- }
- defer nuke(runtime)
- srv := &Server{runtime: runtime}
- r := httptest.NewRecorder()
- if err := getImagesByName(srv, r, nil, map[string]string{"name": unitTestImageName}); err != nil {
- t.Fatal(err)
- }
- img := &Image{}
- if err := json.Unmarshal(r.Body.Bytes(), img); err != nil {
- t.Fatal(err)
- }
- if img.Id != GetTestImage(runtime).Id || img.Comment != "Imported from http://get.docker.io/images/busybox" {
- t.Errorf("Error inspecting image")
- }
- }
- func TestGetContainersPs(t *testing.T) {
- runtime, err := newTestRuntime()
- if err != nil {
- t.Fatal(err)
- }
- defer nuke(runtime)
- srv := &Server{runtime: runtime}
- container, err := NewBuilder(runtime).Create(&Config{
- Image: GetTestImage(runtime).Id,
- Cmd: []string{"echo", "test"},
- })
- if err != nil {
- t.Fatal(err)
- }
- defer runtime.Destroy(container)
- req, err := http.NewRequest("GET", "/containers?quiet=1&all=1", nil)
- if err != nil {
- t.Fatal(err)
- }
- r := httptest.NewRecorder()
- if err := getContainersPs(srv, r, req, nil); err != nil {
- t.Fatal(err)
- }
- containers := []ApiContainers{}
- if err := json.Unmarshal(r.Body.Bytes(), &containers); err != nil {
- t.Fatal(err)
- }
- if len(containers) != 1 {
- t.Fatalf("Excepted %d container, %d found", 1, len(containers))
- }
- if containers[0].Id != container.Id {
- t.Fatalf("Container ID mismatch. Expected: %s, received: %s\n", container.Id, containers[0].Id)
- }
- }
- func TestGetContainersExport(t *testing.T) {
- runtime, err := newTestRuntime()
- if err != nil {
- t.Fatal(err)
- }
- defer nuke(runtime)
- srv := &Server{runtime: runtime}
- builder := NewBuilder(runtime)
- // Create a container and remove a file
- container, err := builder.Create(
- &Config{
- Image: GetTestImage(runtime).Id,
- Cmd: []string{"touch", "/test"},
- },
- )
- if err != nil {
- t.Fatal(err)
- }
- defer runtime.Destroy(container)
- if err := container.Run(); err != nil {
- t.Fatal(err)
- }
- r := httptest.NewRecorder()
- if err = getContainersExport(srv, r, nil, map[string]string{"name": container.Id}); err != nil {
- t.Fatal(err)
- }
- if r.Code != http.StatusOK {
- t.Fatalf("%d OK expected, received %d\n", http.StatusOK, r.Code)
- }
- found := false
- for tarReader := tar.NewReader(r.Body); ; {
- h, err := tarReader.Next()
- if err != nil {
- if err == io.EOF {
- break
- }
- t.Fatal(err)
- }
- if h.Name == "./test" {
- found = true
- break
- }
- }
- if !found {
- t.Fatalf("The created test file has not been found in the exported image")
- }
- }
- func TestGetContainersChanges(t *testing.T) {
- runtime, err := newTestRuntime()
- if err != nil {
- t.Fatal(err)
- }
- defer nuke(runtime)
- srv := &Server{runtime: runtime}
- builder := NewBuilder(runtime)
- // Create a container and remove a file
- container, err := builder.Create(
- &Config{
- Image: GetTestImage(runtime).Id,
- Cmd: []string{"/bin/rm", "/etc/passwd"},
- },
- )
- if err != nil {
- t.Fatal(err)
- }
- defer runtime.Destroy(container)
- if err := container.Run(); err != nil {
- t.Fatal(err)
- }
- r := httptest.NewRecorder()
- if err := getContainersChanges(srv, r, nil, map[string]string{"name": container.Id}); err != nil {
- t.Fatal(err)
- }
- changes := []Change{}
- if err := json.Unmarshal(r.Body.Bytes(), &changes); err != nil {
- t.Fatal(err)
- }
- // Check the changelog
- success := false
- for _, elem := range changes {
- if elem.Path == "/etc/passwd" && elem.Kind == 2 {
- success = true
- }
- }
- if !success {
- t.Fatalf("/etc/passwd as been removed but is not present in the diff")
- }
- }
- func TestGetContainersByName(t *testing.T) {
- runtime, err := newTestRuntime()
- if err != nil {
- t.Fatal(err)
- }
- defer nuke(runtime)
- srv := &Server{runtime: runtime}
- builder := NewBuilder(runtime)
- // Create a container and remove a file
- container, err := builder.Create(
- &Config{
- Image: GetTestImage(runtime).Id,
- Cmd: []string{"echo", "test"},
- },
- )
- if err != nil {
- t.Fatal(err)
- }
- defer runtime.Destroy(container)
- r := httptest.NewRecorder()
- if err := getContainersByName(srv, r, nil, map[string]string{"name": container.Id}); err != nil {
- t.Fatal(err)
- }
- outContainer := &Container{}
- if err := json.Unmarshal(r.Body.Bytes(), outContainer); err != nil {
- t.Fatal(err)
- }
- if outContainer.Id != container.Id {
- t.Fatalf("Wrong containers retrieved. Expected %s, recieved %s", container.Id, outContainer.Id)
- }
- }
- func TestPostAuth(t *testing.T) {
- runtime, err := newTestRuntime()
- if err != nil {
- t.Fatal(err)
- }
- defer nuke(runtime)
- srv := &Server{
- runtime: runtime,
- registry: registry.NewRegistry(runtime.root),
- }
- authConfigOrig := &auth.AuthConfig{
- Username: "utest",
- Email: "utest@yopmail.com",
- }
- srv.registry.ResetClient(authConfigOrig)
- r := httptest.NewRecorder()
- if err := getAuth(srv, r, nil, nil); err != nil {
- t.Fatal(err)
- }
- authConfig := &auth.AuthConfig{}
- if err := json.Unmarshal(r.Body.Bytes(), authConfig); err != nil {
- t.Fatal(err)
- }
- if authConfig.Username != authConfigOrig.Username || authConfig.Email != authConfigOrig.Email {
- t.Errorf("The retrieve auth mismatch with the one set.")
- }
- }
- func TestPostCommit(t *testing.T) {
- runtime, err := newTestRuntime()
- if err != nil {
- t.Fatal(err)
- }
- defer nuke(runtime)
- srv := &Server{runtime: runtime}
- builder := NewBuilder(runtime)
- // Create a container and remove a file
- container, err := builder.Create(
- &Config{
- Image: GetTestImage(runtime).Id,
- Cmd: []string{"touch", "/test"},
- },
- )
- if err != nil {
- t.Fatal(err)
- }
- defer runtime.Destroy(container)
- if err := container.Run(); err != nil {
- t.Fatal(err)
- }
- req, err := http.NewRequest("POST", "/commit?repo=testrepo&testtag=tag&container="+container.Id, bytes.NewReader([]byte{}))
- if err != nil {
- t.Fatal(err)
- }
- r := httptest.NewRecorder()
- if err := postCommit(srv, r, req, nil); err != nil {
- t.Fatal(err)
- }
- if r.Code != http.StatusCreated {
- t.Fatalf("%d Created expected, received %d\n", http.StatusCreated, r.Code)
- }
- apiId := &ApiId{}
- if err := json.Unmarshal(r.Body.Bytes(), apiId); err != nil {
- t.Fatal(err)
- }
- if _, err := runtime.graph.Get(apiId.Id); err != nil {
- t.Fatalf("The image has not been commited")
- }
- }
- func TestPostBuild(t *testing.T) {
- runtime, err := newTestRuntime()
- if err != nil {
- t.Fatal(err)
- }
- defer nuke(runtime)
- srv := &Server{runtime: runtime}
- stdin, stdinPipe := io.Pipe()
- stdout, stdoutPipe := io.Pipe()
- c1 := make(chan struct{})
- go func() {
- defer close(c1)
- r := &hijackTester{
- ResponseRecorder: httptest.NewRecorder(),
- in: stdin,
- out: stdoutPipe,
- }
- if err := postBuild(srv, r, nil, nil); err != nil {
- t.Fatal(err)
- }
- }()
- // Acknowledge hijack
- setTimeout(t, "hijack acknowledge timed out", 2*time.Second, func() {
- stdout.Read([]byte{})
- stdout.Read(make([]byte, 4096))
- })
- setTimeout(t, "read/write assertion timed out", 2*time.Second, func() {
- if err := assertPipe("from docker-ut\n", "FROM docker-ut", stdout, stdinPipe, 15); err != nil {
- t.Fatal(err)
- }
- })
- // Close pipes (client disconnects)
- if err := closeWrap(stdin, stdinPipe, stdout, stdoutPipe); err != nil {
- t.Fatal(err)
- }
- // Wait for build to finish, the client disconnected, therefore, Build finished his job
- setTimeout(t, "Waiting for CmdBuild timed out", 2*time.Second, func() {
- <-c1
- })
- }
- func TestPostImagesCreate(t *testing.T) {
- // FIXME: Use the staging in order to perform tests
- // runtime, err := newTestRuntime()
- // if err != nil {
- // t.Fatal(err)
- // }
- // defer nuke(runtime)
- // srv := &Server{runtime: runtime}
- // stdin, stdinPipe := io.Pipe()
- // stdout, stdoutPipe := io.Pipe()
- // c1 := make(chan struct{})
- // go func() {
- // defer close(c1)
- // r := &hijackTester{
- // ResponseRecorder: httptest.NewRecorder(),
- // in: stdin,
- // out: stdoutPipe,
- // }
- // req, err := http.NewRequest("POST", "/images/create?fromImage="+unitTestImageName, bytes.NewReader([]byte{}))
- // if err != nil {
- // t.Fatal(err)
- // }
- // body, err := postImagesCreate(srv, r, req, nil)
- // if err != nil {
- // t.Fatal(err)
- // }
- // if body != nil {
- // t.Fatalf("No body expected, received: %s\n", body)
- // }
- // }()
- // // Acknowledge hijack
- // setTimeout(t, "hijack acknowledge timed out", 2*time.Second, func() {
- // stdout.Read([]byte{})
- // stdout.Read(make([]byte, 4096))
- // })
- // setTimeout(t, "Waiting for imagesCreate output", 5*time.Second, func() {
- // reader := bufio.NewReader(stdout)
- // line, err := reader.ReadString('\n')
- // if err != nil {
- // t.Fatal(err)
- // }
- // if !strings.HasPrefix(line, "Pulling repository d from") {
- // t.Fatalf("Expected Pulling repository docker-ut from..., found %s", line)
- // }
- // })
- // // Close pipes (client disconnects)
- // if err := closeWrap(stdin, stdinPipe, stdout, stdoutPipe); err != nil {
- // t.Fatal(err)
- // }
- // // Wait for imagesCreate to finish, the client disconnected, therefore, Create finished his job
- // setTimeout(t, "Waiting for imagesCreate timed out", 10*time.Second, func() {
- // <-c1
- // })
- }
- // func TestPostImagesInsert(t *testing.T) {
- // //FIXME: Implement this test (or remove this endpoint)
- // t.Log("Test not implemented")
- // }
- func TestPostImagesPush(t *testing.T) {
- //FIXME: Use staging in order to perform tests
- // runtime, err := newTestRuntime()
- // if err != nil {
- // t.Fatal(err)
- // }
- // defer nuke(runtime)
- // srv := &Server{runtime: runtime}
- // stdin, stdinPipe := io.Pipe()
- // stdout, stdoutPipe := io.Pipe()
- // c1 := make(chan struct{})
- // go func() {
- // r := &hijackTester{
- // ResponseRecorder: httptest.NewRecorder(),
- // in: stdin,
- // out: stdoutPipe,
- // }
- // req, err := http.NewRequest("POST", "/images/docker-ut/push", bytes.NewReader([]byte{}))
- // if err != nil {
- // t.Fatal(err)
- // }
- // body, err := postImagesPush(srv, r, req, map[string]string{"name": "docker-ut"})
- // close(c1)
- // if err != nil {
- // t.Fatal(err)
- // }
- // if body != nil {
- // t.Fatalf("No body expected, received: %s\n", body)
- // }
- // }()
- // // Acknowledge hijack
- // setTimeout(t, "hijack acknowledge timed out", 2*time.Second, func() {
- // stdout.Read([]byte{})
- // stdout.Read(make([]byte, 4096))
- // })
- // setTimeout(t, "Waiting for imagesCreate output", 5*time.Second, func() {
- // reader := bufio.NewReader(stdout)
- // line, err := reader.ReadString('\n')
- // if err != nil {
- // t.Fatal(err)
- // }
- // if !strings.HasPrefix(line, "Processing checksum") {
- // t.Fatalf("Processing checksum..., found %s", line)
- // }
- // })
- // // Close pipes (client disconnects)
- // if err := closeWrap(stdin, stdinPipe, stdout, stdoutPipe); err != nil {
- // t.Fatal(err)
- // }
- // // Wait for imagesPush to finish, the client disconnected, therefore, Push finished his job
- // setTimeout(t, "Waiting for imagesPush timed out", 10*time.Second, func() {
- // <-c1
- // })
- }
- func TestPostImagesTag(t *testing.T) {
- // FIXME: Use staging in order to perform tests
- // runtime, err := newTestRuntime()
- // if err != nil {
- // t.Fatal(err)
- // }
- // defer nuke(runtime)
- // srv := &Server{runtime: runtime}
- // r := httptest.NewRecorder()
- // req, err := http.NewRequest("POST", "/images/docker-ut/tag?repo=testrepo&tag=testtag", bytes.NewReader([]byte{}))
- // if err != nil {
- // t.Fatal(err)
- // }
- // body, err := postImagesTag(srv, r, req, map[string]string{"name": "docker-ut"})
- // if err != nil {
- // t.Fatal(err)
- // }
- // if body != nil {
- // t.Fatalf("No body expected, received: %s\n", body)
- // }
- // if r.Code != http.StatusCreated {
- // t.Fatalf("%d Created expected, received %d\n", http.StatusCreated, r.Code)
- // }
- }
- func TestPostContainersCreate(t *testing.T) {
- runtime, err := newTestRuntime()
- if err != nil {
- t.Fatal(err)
- }
- defer nuke(runtime)
- srv := &Server{runtime: runtime}
- configJson, err := json.Marshal(&Config{
- Image: GetTestImage(runtime).Id,
- Memory: 33554432,
- Cmd: []string{"touch", "/test"},
- })
- if err != nil {
- t.Fatal(err)
- }
- req, err := http.NewRequest("POST", "/containers/create", bytes.NewReader(configJson))
- if err != nil {
- t.Fatal(err)
- }
- r := httptest.NewRecorder()
- if err := postContainersCreate(srv, r, req, nil); err != nil {
- t.Fatal(err)
- }
- if r.Code != http.StatusCreated {
- t.Fatalf("%d Created expected, received %d\n", http.StatusCreated, r.Code)
- }
- apiRun := &ApiRun{}
- if err := json.Unmarshal(r.Body.Bytes(), apiRun); err != nil {
- t.Fatal(err)
- }
- container := srv.runtime.Get(apiRun.Id)
- if container == nil {
- t.Fatalf("Container not created")
- }
- if err := container.Run(); err != nil {
- t.Fatal(err)
- }
- if _, err := os.Stat(path.Join(container.rwPath(), "test")); err != nil {
- if os.IsNotExist(err) {
- utils.Debugf("Err: %s", err)
- t.Fatalf("The test file has not been created")
- }
- t.Fatal(err)
- }
- }
- func TestPostContainersKill(t *testing.T) {
- runtime, err := newTestRuntime()
- if err != nil {
- t.Fatal(err)
- }
- defer nuke(runtime)
- srv := &Server{runtime: runtime}
- container, err := NewBuilder(runtime).Create(
- &Config{
- Image: GetTestImage(runtime).Id,
- Cmd: []string{"/bin/cat"},
- OpenStdin: true,
- },
- )
- if err != nil {
- t.Fatal(err)
- }
- defer runtime.Destroy(container)
- if err := container.Start(); err != nil {
- t.Fatal(err)
- }
- // Give some time to the process to start
- container.WaitTimeout(500 * time.Millisecond)
- if !container.State.Running {
- t.Errorf("Container should be running")
- }
- r := httptest.NewRecorder()
- if err := postContainersKill(srv, r, nil, map[string]string{"name": container.Id}); err != nil {
- t.Fatal(err)
- }
- if r.Code != http.StatusNoContent {
- t.Fatalf("%d NO CONTENT expected, received %d\n", http.StatusNoContent, r.Code)
- }
- if container.State.Running {
- t.Fatalf("The container hasn't been killed")
- }
- }
- func TestPostContainersRestart(t *testing.T) {
- runtime, err := newTestRuntime()
- if err != nil {
- t.Fatal(err)
- }
- defer nuke(runtime)
- srv := &Server{runtime: runtime}
- container, err := NewBuilder(runtime).Create(
- &Config{
- Image: GetTestImage(runtime).Id,
- Cmd: []string{"/bin/cat"},
- OpenStdin: true,
- },
- )
- if err != nil {
- t.Fatal(err)
- }
- defer runtime.Destroy(container)
- if err := container.Start(); err != nil {
- t.Fatal(err)
- }
- // Give some time to the process to start
- container.WaitTimeout(500 * time.Millisecond)
- if !container.State.Running {
- t.Errorf("Container should be running")
- }
- req, err := http.NewRequest("POST", "/containers/"+container.Id+"/restart?t=1", bytes.NewReader([]byte{}))
- if err != nil {
- t.Fatal(err)
- }
- r := httptest.NewRecorder()
- if err := postContainersRestart(srv, r, req, map[string]string{"name": container.Id}); err != nil {
- t.Fatal(err)
- }
- if r.Code != http.StatusNoContent {
- t.Fatalf("%d NO CONTENT expected, received %d\n", http.StatusNoContent, r.Code)
- }
- // Give some time to the process to restart
- container.WaitTimeout(500 * time.Millisecond)
- if !container.State.Running {
- t.Fatalf("Container should be running")
- }
- if err := container.Kill(); err != nil {
- t.Fatal(err)
- }
- }
- func TestPostContainersStart(t *testing.T) {
- runtime, err := newTestRuntime()
- if err != nil {
- t.Fatal(err)
- }
- defer nuke(runtime)
- srv := &Server{runtime: runtime}
- container, err := NewBuilder(runtime).Create(
- &Config{
- Image: GetTestImage(runtime).Id,
- Cmd: []string{"/bin/cat"},
- OpenStdin: true,
- },
- )
- if err != nil {
- t.Fatal(err)
- }
- defer runtime.Destroy(container)
- r := httptest.NewRecorder()
- if err := postContainersStart(srv, r, nil, map[string]string{"name": container.Id}); err != nil {
- t.Fatal(err)
- }
- if r.Code != http.StatusNoContent {
- t.Fatalf("%d NO CONTENT expected, received %d\n", http.StatusNoContent, r.Code)
- }
- // Give some time to the process to start
- container.WaitTimeout(500 * time.Millisecond)
- if !container.State.Running {
- t.Errorf("Container should be running")
- }
- r = httptest.NewRecorder()
- if err = postContainersStart(srv, r, nil, map[string]string{"name": container.Id}); err == nil {
- t.Fatalf("A running containter should be able to be started")
- }
- if err := container.Kill(); err != nil {
- t.Fatal(err)
- }
- }
- func TestPostContainersStop(t *testing.T) {
- runtime, err := newTestRuntime()
- if err != nil {
- t.Fatal(err)
- }
- defer nuke(runtime)
- srv := &Server{runtime: runtime}
- container, err := NewBuilder(runtime).Create(
- &Config{
- Image: GetTestImage(runtime).Id,
- Cmd: []string{"/bin/cat"},
- OpenStdin: true,
- },
- )
- if err != nil {
- t.Fatal(err)
- }
- defer runtime.Destroy(container)
- if err := container.Start(); err != nil {
- t.Fatal(err)
- }
- // Give some time to the process to start
- container.WaitTimeout(500 * time.Millisecond)
- if !container.State.Running {
- t.Errorf("Container should be running")
- }
- // Note: as it is a POST request, it requires a body.
- req, err := http.NewRequest("POST", "/containers/"+container.Id+"/stop?t=1", bytes.NewReader([]byte{}))
- if err != nil {
- t.Fatal(err)
- }
- r := httptest.NewRecorder()
- if err := postContainersStop(srv, r, req, map[string]string{"name": container.Id}); err != nil {
- t.Fatal(err)
- }
- if r.Code != http.StatusNoContent {
- t.Fatalf("%d NO CONTENT expected, received %d\n", http.StatusNoContent, r.Code)
- }
- if container.State.Running {
- t.Fatalf("The container hasn't been stopped")
- }
- }
- func TestPostContainersWait(t *testing.T) {
- runtime, err := newTestRuntime()
- if err != nil {
- t.Fatal(err)
- }
- defer nuke(runtime)
- srv := &Server{runtime: runtime}
- container, err := NewBuilder(runtime).Create(
- &Config{
- Image: GetTestImage(runtime).Id,
- Cmd: []string{"/bin/sleep", "1"},
- OpenStdin: true,
- },
- )
- if err != nil {
- t.Fatal(err)
- }
- defer runtime.Destroy(container)
- if err := container.Start(); err != nil {
- t.Fatal(err)
- }
- setTimeout(t, "Wait timed out", 3*time.Second, func() {
- r := httptest.NewRecorder()
- if err := postContainersWait(srv, r, nil, map[string]string{"name": container.Id}); err != nil {
- t.Fatal(err)
- }
- apiWait := &ApiWait{}
- if err := json.Unmarshal(r.Body.Bytes(), apiWait); err != nil {
- t.Fatal(err)
- }
- if apiWait.StatusCode != 0 {
- t.Fatalf("Non zero exit code for sleep: %d\n", apiWait.StatusCode)
- }
- })
- if container.State.Running {
- t.Fatalf("The container should be stopped after wait")
- }
- }
- func TestPostContainersAttach(t *testing.T) {
- runtime, err := newTestRuntime()
- if err != nil {
- t.Fatal(err)
- }
- defer nuke(runtime)
- srv := &Server{runtime: runtime}
- container, err := NewBuilder(runtime).Create(
- &Config{
- Image: GetTestImage(runtime).Id,
- Cmd: []string{"/bin/cat"},
- OpenStdin: true,
- },
- )
- if err != nil {
- t.Fatal(err)
- }
- defer runtime.Destroy(container)
- // Start the process
- if err := container.Start(); err != nil {
- t.Fatal(err)
- }
- stdin, stdinPipe := io.Pipe()
- stdout, stdoutPipe := io.Pipe()
- // Attach to it
- c1 := make(chan struct{})
- go func() {
- defer close(c1)
- r := &hijackTester{
- ResponseRecorder: httptest.NewRecorder(),
- in: stdin,
- out: stdoutPipe,
- }
- req, err := http.NewRequest("POST", "/containers/"+container.Id+"/attach?stream=1&stdin=1&stdout=1&stderr=1", bytes.NewReader([]byte{}))
- if err != nil {
- t.Fatal(err)
- }
- if err := postContainersAttach(srv, r, req, map[string]string{"name": container.Id}); err != nil {
- t.Fatal(err)
- }
- }()
- // Acknowledge hijack
- setTimeout(t, "hijack acknowledge timed out", 2*time.Second, func() {
- stdout.Read([]byte{})
- stdout.Read(make([]byte, 4096))
- })
- setTimeout(t, "read/write assertion timed out", 2*time.Second, func() {
- if err := assertPipe("hello\n", "hello", stdout, stdinPipe, 15); err != nil {
- t.Fatal(err)
- }
- })
- // Close pipes (client disconnects)
- if err := closeWrap(stdin, stdinPipe, stdout, stdoutPipe); err != nil {
- t.Fatal(err)
- }
- // Wait for attach to finish, the client disconnected, therefore, Attach finished his job
- setTimeout(t, "Waiting for CmdAttach timed out", 2*time.Second, func() {
- <-c1
- })
- // We closed stdin, expect /bin/cat to still be running
- // Wait a little bit to make sure container.monitor() did his thing
- err = container.WaitTimeout(500 * time.Millisecond)
- if err == nil || !container.State.Running {
- t.Fatalf("/bin/cat is not running after closing stdin")
- }
- // Try to avoid the timeoout in destroy. Best effort, don't check error
- cStdin, _ := container.StdinPipe()
- cStdin.Close()
- container.Wait()
- }
- // FIXME: Test deleting running container
- // FIXME: Test deleting container with volume
- // FIXME: Test deleting volume in use by other container
- func TestDeleteContainers(t *testing.T) {
- runtime, err := newTestRuntime()
- if err != nil {
- t.Fatal(err)
- }
- defer nuke(runtime)
- srv := &Server{runtime: runtime}
- container, err := NewBuilder(runtime).Create(&Config{
- Image: GetTestImage(runtime).Id,
- Cmd: []string{"touch", "/test"},
- })
- if err != nil {
- t.Fatal(err)
- }
- defer runtime.Destroy(container)
- if err := container.Run(); err != nil {
- t.Fatal(err)
- }
- req, err := http.NewRequest("DELETE", "/containers/"+container.Id, nil)
- if err != nil {
- t.Fatal(err)
- }
- r := httptest.NewRecorder()
- if err := deleteContainers(srv, r, req, map[string]string{"name": container.Id}); err != nil {
- t.Fatal(err)
- }
- if r.Code != http.StatusNoContent {
- t.Fatalf("%d NO CONTENT expected, received %d\n", http.StatusNoContent, r.Code)
- }
- if c := runtime.Get(container.Id); c != nil {
- t.Fatalf("The container as not been deleted")
- }
- if _, err := os.Stat(path.Join(container.rwPath(), "test")); err == nil {
- t.Fatalf("The test file has not been deleted")
- }
- }
- func TestDeleteImages(t *testing.T) {
- //FIXME: Implement this test
- t.Log("Test not implemented")
- }
- // Mocked types for tests
- type NopConn struct {
- io.ReadCloser
- io.Writer
- }
- func (c *NopConn) LocalAddr() net.Addr { return nil }
- func (c *NopConn) RemoteAddr() net.Addr { return nil }
- func (c *NopConn) SetDeadline(t time.Time) error { return nil }
- func (c *NopConn) SetReadDeadline(t time.Time) error { return nil }
- func (c *NopConn) SetWriteDeadline(t time.Time) error { return nil }
- type hijackTester struct {
- *httptest.ResponseRecorder
- in io.ReadCloser
- out io.Writer
- }
- func (t *hijackTester) Hijack() (net.Conn, *bufio.ReadWriter, error) {
- bufrw := bufio.NewReadWriter(bufio.NewReader(t.in), bufio.NewWriter(t.out))
- conn := &NopConn{
- ReadCloser: t.in,
- Writer: t.out,
- }
- return conn, bufrw, nil
- }
|