2014-05-02 15:16:46 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2015-04-21 00:47:56 -04:00
|
|
|
"regexp"
|
|
|
|
"strconv"
|
2014-05-02 15:16:46 -04:00
|
|
|
"strings"
|
2015-04-18 12:46:47 -04:00
|
|
|
|
2015-10-22 14:50:58 -04:00
|
|
|
"github.com/docker/docker/pkg/integration/checker"
|
2015-04-18 12:46:47 -04:00
|
|
|
"github.com/go-check/check"
|
2014-05-02 15:16:46 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// This is a heisen-test. Because the created timestamp of images and the behavior of
|
|
|
|
// sort is not predictable it doesn't always fail.
|
2015-04-18 12:46:47 -04:00
|
|
|
func (s *DockerSuite) TestBuildHistory(c *check.C) {
|
2015-08-28 13:36:42 -04:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2014-09-24 04:38:48 -04:00
|
|
|
name := "testbuildhistory"
|
|
|
|
_, err := buildImage(name, `FROM busybox
|
|
|
|
RUN echo "A"
|
|
|
|
RUN echo "B"
|
|
|
|
RUN echo "C"
|
|
|
|
RUN echo "D"
|
|
|
|
RUN echo "E"
|
|
|
|
RUN echo "F"
|
|
|
|
RUN echo "G"
|
|
|
|
RUN echo "H"
|
|
|
|
RUN echo "I"
|
|
|
|
RUN echo "J"
|
|
|
|
RUN echo "K"
|
|
|
|
RUN echo "L"
|
|
|
|
RUN echo "M"
|
|
|
|
RUN echo "N"
|
|
|
|
RUN echo "O"
|
|
|
|
RUN echo "P"
|
|
|
|
RUN echo "Q"
|
|
|
|
RUN echo "R"
|
|
|
|
RUN echo "S"
|
|
|
|
RUN echo "T"
|
|
|
|
RUN echo "U"
|
|
|
|
RUN echo "V"
|
|
|
|
RUN echo "W"
|
|
|
|
RUN echo "X"
|
|
|
|
RUN echo "Y"
|
|
|
|
RUN echo "Z"`,
|
|
|
|
true)
|
2014-05-02 15:16:46 -04:00
|
|
|
|
2015-10-22 14:50:58 -04:00
|
|
|
c.Assert(err, checker.IsNil)
|
2014-05-02 15:16:46 -04:00
|
|
|
|
2015-07-20 02:55:40 -04:00
|
|
|
out, _ := dockerCmd(c, "history", "testbuildhistory")
|
2014-10-06 10:26:55 -04:00
|
|
|
actualValues := strings.Split(out, "\n")[1:27]
|
|
|
|
expectedValues := [26]string{"Z", "Y", "X", "W", "V", "U", "T", "S", "R", "Q", "P", "O", "N", "M", "L", "K", "J", "I", "H", "G", "F", "E", "D", "C", "B", "A"}
|
2014-05-02 15:16:46 -04:00
|
|
|
|
|
|
|
for i := 0; i < 26; i++ {
|
2014-10-06 10:26:55 -04:00
|
|
|
echoValue := fmt.Sprintf("echo \"%s\"", expectedValues[i])
|
|
|
|
actualValue := actualValues[i]
|
2015-10-22 14:50:58 -04:00
|
|
|
c.Assert(actualValue, checker.Contains, echoValue)
|
2014-05-02 15:16:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2014-06-29 19:31:16 -04:00
|
|
|
|
2015-04-18 12:46:47 -04:00
|
|
|
func (s *DockerSuite) TestHistoryExistentImage(c *check.C) {
|
2015-08-28 13:36:42 -04:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2015-07-20 02:55:40 -04:00
|
|
|
dockerCmd(c, "history", "busybox")
|
2014-06-29 19:31:16 -04:00
|
|
|
}
|
|
|
|
|
2015-04-18 12:46:47 -04:00
|
|
|
func (s *DockerSuite) TestHistoryNonExistentImage(c *check.C) {
|
2015-07-27 14:13:25 -04:00
|
|
|
_, _, err := dockerCmdWithError("history", "testHistoryNonExistentImage")
|
2015-10-22 14:50:58 -04:00
|
|
|
c.Assert(err, checker.NotNil, check.Commentf("history on a non-existent image should fail."))
|
2014-06-29 19:31:16 -04:00
|
|
|
}
|
2015-01-04 01:47:01 -05:00
|
|
|
|
2015-04-18 12:46:47 -04:00
|
|
|
func (s *DockerSuite) TestHistoryImageWithComment(c *check.C) {
|
2015-08-28 13:36:42 -04:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2015-04-08 19:43:25 -04:00
|
|
|
name := "testhistoryimagewithcomment"
|
2015-01-04 01:47:01 -05:00
|
|
|
|
|
|
|
// make a image through docker commit <container id> [ -m messages ]
|
|
|
|
|
2015-07-20 02:55:40 -04:00
|
|
|
dockerCmd(c, "run", "--name", name, "busybox", "true")
|
|
|
|
dockerCmd(c, "wait", name)
|
2015-01-04 01:47:01 -05:00
|
|
|
|
2015-04-08 19:43:25 -04:00
|
|
|
comment := "This_is_a_comment"
|
2015-07-20 02:55:40 -04:00
|
|
|
dockerCmd(c, "commit", "-m="+comment, name, name)
|
2015-01-04 01:47:01 -05:00
|
|
|
|
|
|
|
// test docker history <image id> to check comment messages
|
|
|
|
|
2015-07-20 02:55:40 -04:00
|
|
|
out, _ := dockerCmd(c, "history", name)
|
2015-04-08 19:43:25 -04:00
|
|
|
outputTabs := strings.Fields(strings.Split(out, "\n")[1])
|
2015-01-04 01:47:01 -05:00
|
|
|
actualValue := outputTabs[len(outputTabs)-1]
|
2015-10-22 14:50:58 -04:00
|
|
|
c.Assert(actualValue, checker.Contains, comment)
|
2015-01-04 01:47:01 -05:00
|
|
|
}
|
2015-04-21 00:47:56 -04:00
|
|
|
|
|
|
|
func (s *DockerSuite) TestHistoryHumanOptionFalse(c *check.C) {
|
2015-08-28 13:36:42 -04:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2015-07-20 02:55:40 -04:00
|
|
|
out, _ := dockerCmd(c, "history", "--human=false", "busybox")
|
2015-04-21 00:47:56 -04:00
|
|
|
lines := strings.Split(out, "\n")
|
|
|
|
sizeColumnRegex, _ := regexp.Compile("SIZE +")
|
|
|
|
indices := sizeColumnRegex.FindStringIndex(lines[0])
|
|
|
|
startIndex := indices[0]
|
|
|
|
endIndex := indices[1]
|
|
|
|
for i := 1; i < len(lines)-1; i++ {
|
|
|
|
if endIndex > len(lines[i]) {
|
|
|
|
endIndex = len(lines[i])
|
|
|
|
}
|
|
|
|
sizeString := lines[i][startIndex:endIndex]
|
2015-10-22 14:50:58 -04:00
|
|
|
|
|
|
|
_, err := strconv.Atoi(strings.TrimSpace(sizeString))
|
|
|
|
c.Assert(err, checker.IsNil, check.Commentf("The size '%s' was not an Integer", sizeString))
|
2015-04-21 00:47:56 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *DockerSuite) TestHistoryHumanOptionTrue(c *check.C) {
|
2015-08-28 13:36:42 -04:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2015-07-20 02:55:40 -04:00
|
|
|
out, _ := dockerCmd(c, "history", "--human=true", "busybox")
|
2015-04-21 00:47:56 -04:00
|
|
|
lines := strings.Split(out, "\n")
|
|
|
|
sizeColumnRegex, _ := regexp.Compile("SIZE +")
|
2015-10-22 14:50:58 -04:00
|
|
|
humanSizeRegexRaw := "\\d+.*B" // Matches human sizes like 10 MB, 3.2 KB, etc
|
2015-04-21 00:47:56 -04:00
|
|
|
indices := sizeColumnRegex.FindStringIndex(lines[0])
|
|
|
|
startIndex := indices[0]
|
|
|
|
endIndex := indices[1]
|
|
|
|
for i := 1; i < len(lines)-1; i++ {
|
|
|
|
if endIndex > len(lines[i]) {
|
|
|
|
endIndex = len(lines[i])
|
|
|
|
}
|
|
|
|
sizeString := lines[i][startIndex:endIndex]
|
2015-10-22 14:50:58 -04:00
|
|
|
c.Assert(strings.TrimSpace(sizeString), checker.Matches, humanSizeRegexRaw, check.Commentf("The size '%s' was not in human format", sizeString))
|
2015-04-21 00:47:56 -04:00
|
|
|
}
|
|
|
|
}
|