/integration-cli/docker_cli_history_test.go

https://github.com/dotcloud/docker · Go · 121 lines · 100 code · 17 blank · 4 comment · 7 complexity · a094384eb46631b8a66544347d97127c MD5 · raw file

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