2015-04-11 01:26:30 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2015-04-22 11:44:54 -07:00
|
|
|
|
2017-05-23 23:56:26 -04:00
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/docker/docker/client"
|
2016-12-30 18:23:00 +01:00
|
|
|
"github.com/docker/docker/integration-cli/checker"
|
2016-12-30 10:49:36 +01:00
|
|
|
"github.com/docker/docker/integration-cli/request"
|
2015-04-22 11:44:54 -07:00
|
|
|
"github.com/go-check/check"
|
2017-05-23 23:56:26 -04:00
|
|
|
"golang.org/x/net/context"
|
2015-04-11 01:26:30 +08: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-28 01:50:12 +00:00
|
|
|
func (s *DockerSuite) TestInfoAPI(c *check.C) {
|
2017-05-23 23:56:26 -04:00
|
|
|
cli, err := client.NewEnvClient()
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
defer cli.Close()
|
2015-04-11 01:26:30 +08:00
|
|
|
|
2017-05-23 23:56:26 -04:00
|
|
|
info, err := cli.Info(context.Background())
|
2015-11-19 02:15:38 +01:00
|
|
|
c.Assert(err, checker.IsNil)
|
2015-04-11 01:26:30 +08:00
|
|
|
|
|
|
|
// always shown fields
|
|
|
|
stringsToCheck := []string{
|
|
|
|
"ID",
|
|
|
|
"Containers",
|
2015-10-27 21:12:33 +01:00
|
|
|
"ContainersRunning",
|
|
|
|
"ContainersPaused",
|
|
|
|
"ContainersStopped",
|
2015-04-11 01:26:30 +08:00
|
|
|
"Images",
|
|
|
|
"LoggingDriver",
|
|
|
|
"OperatingSystem",
|
|
|
|
"NCPU",
|
2015-06-13 09:39:19 +02:00
|
|
|
"OSType",
|
|
|
|
"Architecture",
|
2015-04-11 01:26:30 +08:00
|
|
|
"MemTotal",
|
|
|
|
"KernelVersion",
|
2015-09-21 12:23:54 +08:00
|
|
|
"Driver",
|
2016-03-29 04:10:37 +00:00
|
|
|
"ServerVersion",
|
|
|
|
"SecurityOptions"}
|
2015-04-11 01:26:30 +08:00
|
|
|
|
2017-05-23 23:56:26 -04:00
|
|
|
out := fmt.Sprintf("%+v", info)
|
2015-04-11 01:26:30 +08:00
|
|
|
for _, linePrefix := range stringsToCheck {
|
2015-11-19 02:15:38 +01:00
|
|
|
c.Assert(out, checker.Contains, linePrefix)
|
2015-04-11 01:26:30 +08:00
|
|
|
}
|
|
|
|
}
|
2016-10-21 11:43:00 +02:00
|
|
|
|
|
|
|
func (s *DockerSuite) TestInfoAPIVersioned(c *check.C) {
|
2016-10-31 10:15:43 -07:00
|
|
|
testRequires(c, DaemonIsLinux) // Windows only supports 1.25 or later
|
2016-10-21 11:43:00 +02:00
|
|
|
|
2017-05-23 23:56:26 -04:00
|
|
|
res, body, err := request.Get("/v1.20/info")
|
|
|
|
c.Assert(res.StatusCode, checker.Equals, http.StatusOK)
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
|
|
|
|
b, err := request.ReadBody(body)
|
2016-10-21 11:43:00 +02:00
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
|
2017-05-23 23:56:26 -04:00
|
|
|
out := string(b)
|
2016-10-21 11:43:00 +02:00
|
|
|
c.Assert(out, checker.Contains, "ExecutionDriver")
|
|
|
|
c.Assert(out, checker.Contains, "not supported")
|
|
|
|
}
|