12345678910111213141516171819202122232425262728293031323334353637383940 |
- package main
- import (
- "net/http"
- "github.com/docker/docker/pkg/integration/checker"
- "github.com/go-check/check"
- )
- func (s *DockerSuite) TestInfoApi(c *check.C) {
- endpoint := "/info"
- status, body, err := sockRequest("GET", endpoint, nil)
- c.Assert(status, checker.Equals, http.StatusOK)
- c.Assert(err, checker.IsNil)
- // always shown fields
- stringsToCheck := []string{
- "ID",
- "Containers",
- "ContainersRunning",
- "ContainersPaused",
- "ContainersStopped",
- "Images",
- "LoggingDriver",
- "OperatingSystem",
- "NCPU",
- "OSType",
- "Architecture",
- "MemTotal",
- "KernelVersion",
- "Driver",
- "ServerVersion",
- "SecurityOptions"}
- out := string(body)
- for _, linePrefix := range stringsToCheck {
- c.Assert(out, checker.Contains, linePrefix)
- }
- }
|