1
0
mirror of https://github.com/moby/moby.git synced 2025-07-29 07:21:35 +03:00

Extract daemon to its own package

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
Vincent Demeester
2016-12-09 10:17:53 +01:00
parent 0a072e93df
commit 48de91a33f
39 changed files with 980 additions and 737 deletions

View File

@ -7,6 +7,7 @@ import (
"regexp"
"strings"
"github.com/docker/docker/pkg/integration"
"github.com/docker/docker/pkg/integration/checker"
"github.com/go-check/check"
)
@ -34,7 +35,7 @@ RUN find /tmp/`
c.Assert(err, checker.IsNil)
c.Assert(res.StatusCode, checker.Equals, http.StatusOK)
buf, err := readBody(body)
buf, err := integration.ReadBody(body)
c.Assert(err, checker.IsNil)
// Make sure Dockerfile exists.
@ -125,7 +126,7 @@ RUN echo 'right'
c.Assert(res.StatusCode, checker.Equals, http.StatusOK)
defer body.Close()
content, err := readBody(body)
content, err := integration.ReadBody(body)
c.Assert(err, checker.IsNil)
// Build used the wrong dockerfile.
@ -144,7 +145,7 @@ RUN echo from dockerfile`,
c.Assert(err, checker.IsNil)
c.Assert(res.StatusCode, checker.Equals, http.StatusOK)
buf, err := readBody(body)
buf, err := integration.ReadBody(body)
c.Assert(err, checker.IsNil)
out := string(buf)
@ -166,7 +167,7 @@ RUN echo from Dockerfile`,
c.Assert(err, checker.IsNil)
c.Assert(res.StatusCode, checker.Equals, http.StatusOK)
buf, err := readBody(body)
buf, err := integration.ReadBody(body)
c.Assert(err, checker.IsNil)
out := string(buf)
@ -189,7 +190,7 @@ RUN echo from dockerfile`,
c.Assert(err, checker.IsNil)
c.Assert(res.StatusCode, checker.Equals, http.StatusOK)
buf, err := readBody(body)
buf, err := integration.ReadBody(body)
c.Assert(err, checker.IsNil)
out := string(buf)
@ -236,7 +237,7 @@ func (s *DockerSuite) TestBuildAPIUnnormalizedTarPaths(c *check.C) {
c.Assert(err, checker.IsNil)
c.Assert(res.StatusCode, checker.Equals, http.StatusOK)
out, err := readBody(body)
out, err := integration.ReadBody(body)
c.Assert(err, checker.IsNil)
lines := strings.Split(string(out), "\n")
c.Assert(len(lines), checker.GreaterThan, 1)