2014-02-25 11:17:48 -05:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
2015-04-18 12:46:47 -04:00
|
|
|
|
2015-10-08 23:10:09 -04:00
|
|
|
"github.com/docker/docker/pkg/integration/checker"
|
2015-04-18 12:46:47 -04:00
|
|
|
"github.com/go-check/check"
|
2014-02-25 11:17:48 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// ensure docker version works
|
2015-04-18 12:46:47 -04:00
|
|
|
func (s *DockerSuite) TestVersionEnsureSucceeds(c *check.C) {
|
2015-07-20 02:44:22 -04:00
|
|
|
out, _ := dockerCmd(c, "version")
|
2015-06-19 13:03:13 -04:00
|
|
|
stringsToCheck := map[string]int{
|
|
|
|
"Client:": 1,
|
|
|
|
"Server:": 1,
|
|
|
|
" Version:": 2,
|
2016-11-02 13:04:39 -04:00
|
|
|
" API version:": 3,
|
2015-06-19 13:03:13 -04:00
|
|
|
" Go version:": 2,
|
|
|
|
" Git commit:": 2,
|
|
|
|
" OS/Arch:": 2,
|
|
|
|
" Built:": 2,
|
2014-04-01 20:30:02 -04:00
|
|
|
}
|
2014-02-25 11:17:48 -05:00
|
|
|
|
2015-06-19 13:03:13 -04:00
|
|
|
for k, v := range stringsToCheck {
|
2015-10-08 23:10:09 -04:00
|
|
|
c.Assert(strings.Count(out, k), checker.Equals, v, check.Commentf("The count of %v in %s does not match excepted", k, out))
|
2014-02-25 11:17:48 -05:00
|
|
|
}
|
|
|
|
}
|
2015-08-27 18:08:00 -04:00
|
|
|
|
|
|
|
// ensure the Windows daemon return the correct platform string
|
|
|
|
func (s *DockerSuite) TestVersionPlatform_w(c *check.C) {
|
|
|
|
testRequires(c, DaemonIsWindows)
|
|
|
|
testVersionPlatform(c, "windows/amd64")
|
|
|
|
}
|
|
|
|
|
|
|
|
// ensure the Linux daemon return the correct platform string
|
|
|
|
func (s *DockerSuite) TestVersionPlatform_l(c *check.C) {
|
|
|
|
testRequires(c, DaemonIsLinux)
|
2015-02-24 13:33:18 -05:00
|
|
|
testVersionPlatform(c, "linux")
|
2015-08-27 18:08:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func testVersionPlatform(c *check.C, platform string) {
|
|
|
|
out, _ := dockerCmd(c, "version")
|
2016-11-02 13:04:39 -04:00
|
|
|
expected := "OS/Arch: " + platform
|
2015-08-27 18:08:00 -04:00
|
|
|
|
|
|
|
split := strings.Split(out, "\n")
|
2015-10-08 23:10:09 -04:00
|
|
|
c.Assert(len(split) >= 14, checker.Equals, true, check.Commentf("got %d lines from version", len(split)))
|
2015-08-27 18:08:00 -04:00
|
|
|
|
|
|
|
// Verify the second 'OS/Arch' matches the platform. Experimental has
|
|
|
|
// more lines of output than 'regular'
|
|
|
|
bFound := false
|
|
|
|
for i := 14; i < len(split); i++ {
|
|
|
|
if strings.Contains(split[i], expected) {
|
|
|
|
bFound = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2015-10-08 23:10:09 -04:00
|
|
|
c.Assert(bFound, checker.Equals, true, check.Commentf("Could not find server '%s' in '%s'", expected, out))
|
2015-08-27 18:08:00 -04:00
|
|
|
}
|