/vendor/github.com/docker/docker/integration-cli/docker_cli_history_test.go

https://bitbucket.org/gollariel/dockertool · Go · 119 lines · 98 code · 17 blank · 4 comment · 5 complexity · d99ad20d75b05c35c5373c5ccd1e350e MD5 · raw file

  1. package main
  2. import (
  3. "fmt"
  4. "regexp"
  5. "strconv"
  6. "strings"
  7. "github.com/docker/docker/integration-cli/checker"
  8. "github.com/docker/docker/integration-cli/cli/build"
  9. "github.com/go-check/check"
  10. )
  11. // This is a heisen-test. Because the created timestamp of images and the behavior of
  12. // sort is not predictable it doesn't always fail.
  13. func (s *DockerSuite) TestBuildHistory(c *check.C) {
  14. name := "testbuildhistory"
  15. buildImageSuccessfully(c, name, build.WithDockerfile(`FROM `+minimalBaseImage()+`
  16. LABEL label.A="A"
  17. LABEL label.B="B"
  18. LABEL label.C="C"
  19. LABEL label.D="D"
  20. LABEL label.E="E"
  21. LABEL label.F="F"
  22. LABEL label.G="G"
  23. LABEL label.H="H"
  24. LABEL label.I="I"
  25. LABEL label.J="J"
  26. LABEL label.K="K"
  27. LABEL label.L="L"
  28. LABEL label.M="M"
  29. LABEL label.N="N"
  30. LABEL label.O="O"
  31. LABEL label.P="P"
  32. LABEL label.Q="Q"
  33. LABEL label.R="R"
  34. LABEL label.S="S"
  35. LABEL label.T="T"
  36. LABEL label.U="U"
  37. LABEL label.V="V"
  38. LABEL label.W="W"
  39. LABEL label.X="X"
  40. LABEL label.Y="Y"
  41. LABEL label.Z="Z"`))
  42. out, _ := dockerCmd(c, "history", name)
  43. actualValues := strings.Split(out, "\n")[1:27]
  44. 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"}
  45. for i := 0; i < 26; i++ {
  46. echoValue := fmt.Sprintf("LABEL label.%s=%s", expectedValues[i], expectedValues[i])
  47. actualValue := actualValues[i]
  48. c.Assert(actualValue, checker.Contains, echoValue)
  49. }
  50. }
  51. func (s *DockerSuite) TestHistoryExistentImage(c *check.C) {
  52. dockerCmd(c, "history", "busybox")
  53. }
  54. func (s *DockerSuite) TestHistoryNonExistentImage(c *check.C) {
  55. _, _, err := dockerCmdWithError("history", "testHistoryNonExistentImage")
  56. c.Assert(err, checker.NotNil, check.Commentf("history on a non-existent image should fail."))
  57. }
  58. func (s *DockerSuite) TestHistoryImageWithComment(c *check.C) {
  59. name := "testhistoryimagewithcomment"
  60. // make an image through docker commit <container id> [ -m messages ]
  61. dockerCmd(c, "run", "--name", name, "busybox", "true")
  62. dockerCmd(c, "wait", name)
  63. comment := "This_is_a_comment"
  64. dockerCmd(c, "commit", "-m="+comment, name, name)
  65. // test docker history <image id> to check comment messages
  66. out, _ := dockerCmd(c, "history", name)
  67. outputTabs := strings.Fields(strings.Split(out, "\n")[1])
  68. actualValue := outputTabs[len(outputTabs)-1]
  69. c.Assert(actualValue, checker.Contains, comment)
  70. }
  71. func (s *DockerSuite) TestHistoryHumanOptionFalse(c *check.C) {
  72. out, _ := dockerCmd(c, "history", "--human=false", "busybox")
  73. lines := strings.Split(out, "\n")
  74. sizeColumnRegex, _ := regexp.Compile("SIZE +")
  75. indices := sizeColumnRegex.FindStringIndex(lines[0])
  76. startIndex := indices[0]
  77. endIndex := indices[1]
  78. for i := 1; i < len(lines)-1; i++ {
  79. if endIndex > len(lines[i]) {
  80. endIndex = len(lines[i])
  81. }
  82. sizeString := lines[i][startIndex:endIndex]
  83. _, err := strconv.Atoi(strings.TrimSpace(sizeString))
  84. c.Assert(err, checker.IsNil, check.Commentf("The size '%s' was not an Integer", sizeString))
  85. }
  86. }
  87. func (s *DockerSuite) TestHistoryHumanOptionTrue(c *check.C) {
  88. out, _ := dockerCmd(c, "history", "--human=true", "busybox")
  89. lines := strings.Split(out, "\n")
  90. sizeColumnRegex, _ := regexp.Compile("SIZE +")
  91. humanSizeRegexRaw := "\\d+.*B" // Matches human sizes like 10 MB, 3.2 KB, etc
  92. indices := sizeColumnRegex.FindStringIndex(lines[0])
  93. startIndex := indices[0]
  94. endIndex := indices[1]
  95. for i := 1; i < len(lines)-1; i++ {
  96. if endIndex > len(lines[i]) {
  97. endIndex = len(lines[i])
  98. }
  99. sizeString := lines[i][startIndex:endIndex]
  100. c.Assert(strings.TrimSpace(sizeString), checker.Matches, humanSizeRegexRaw, check.Commentf("The size '%s' was not in human format", sizeString))
  101. }
  102. }