2015-04-10 13:26:30 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2015-04-22 14:44:54 -04:00
|
|
|
|
2015-11-18 20:15:38 -05:00
|
|
|
"github.com/docker/docker/pkg/integration/checker"
|
2015-04-22 14:44:54 -04:00
|
|
|
"github.com/go-check/check"
|
2015-04-10 13:26:30 -04:00
|
|
|
)
|
|
|
|
|
[nit] integration-cli: obey Go's naming convention
No substantial code change.
- Api --> API
- Cli --> CLI
- Http, Https --> HTTP, HTTPS
- Id --> ID
- Uid,Gid,Pid --> UID,PID,PID
- Ipam --> IPAM
- Tls --> TLS (TestDaemonNoTlsCliTlsVerifyWithEnv --> TestDaemonTLSVerifyIssue13964)
Didn't touch in this commit:
- Git: because it is officially "Git": https://git-scm.com/
- Tar: because it is officially "Tar": https://www.gnu.org/software/tar/
- Cpu, Nat, Mac, Ipc, Shm: for keeping a consistency with existing production code (not changable, for compatibility)
Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp>
2016-09-27 21:50:12 -04:00
|
|
|
func (s *DockerSuite) TestInfoAPI(c *check.C) {
|
2015-04-10 13:26:30 -04:00
|
|
|
endpoint := "/info"
|
|
|
|
|
2015-04-20 17:03:56 -04:00
|
|
|
status, body, err := sockRequest("GET", endpoint, nil)
|
2015-11-18 20:15:38 -05:00
|
|
|
c.Assert(status, checker.Equals, http.StatusOK)
|
|
|
|
c.Assert(err, checker.IsNil)
|
2015-04-10 13:26:30 -04:00
|
|
|
|
|
|
|
// always shown fields
|
|
|
|
stringsToCheck := []string{
|
|
|
|
"ID",
|
|
|
|
"Containers",
|
2015-10-27 16:12:33 -04:00
|
|
|
"ContainersRunning",
|
|
|
|
"ContainersPaused",
|
|
|
|
"ContainersStopped",
|
2015-04-10 13:26:30 -04:00
|
|
|
"Images",
|
|
|
|
"LoggingDriver",
|
|
|
|
"OperatingSystem",
|
|
|
|
"NCPU",
|
2015-06-13 03:39:19 -04:00
|
|
|
"OSType",
|
|
|
|
"Architecture",
|
2015-04-10 13:26:30 -04:00
|
|
|
"MemTotal",
|
|
|
|
"KernelVersion",
|
2015-09-21 00:23:54 -04:00
|
|
|
"Driver",
|
2016-03-29 00:10:37 -04:00
|
|
|
"ServerVersion",
|
|
|
|
"SecurityOptions"}
|
2015-04-10 13:26:30 -04:00
|
|
|
|
|
|
|
out := string(body)
|
|
|
|
for _, linePrefix := range stringsToCheck {
|
2015-11-18 20:15:38 -05:00
|
|
|
c.Assert(out, checker.Contains, linePrefix)
|
2015-04-10 13:26:30 -04:00
|
|
|
}
|
|
|
|
}
|
2016-10-21 05:43:00 -04:00
|
|
|
|
|
|
|
func (s *DockerSuite) TestInfoAPIVersioned(c *check.C) {
|
2016-10-31 13:15:43 -04:00
|
|
|
testRequires(c, DaemonIsLinux) // Windows only supports 1.25 or later
|
2016-10-21 05:43:00 -04:00
|
|
|
endpoint := "/v1.20/info"
|
|
|
|
|
|
|
|
status, body, err := sockRequest("GET", endpoint, nil)
|
|
|
|
c.Assert(status, checker.Equals, http.StatusOK)
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
|
|
|
|
out := string(body)
|
|
|
|
c.Assert(out, checker.Contains, "ExecutionDriver")
|
|
|
|
c.Assert(out, checker.Contains, "not supported")
|
|
|
|
}
|