2016-05-04 04:44:03 -04:00
|
|
|
// +build !windows
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
|
2016-09-06 14:18:12 -04:00
|
|
|
"github.com/docker/docker/api/types"
|
2016-12-30 12:23:00 -05:00
|
|
|
"github.com/docker/docker/integration-cli/checker"
|
2016-12-30 04:49:36 -05:00
|
|
|
"github.com/docker/docker/integration-cli/request"
|
2016-05-04 04:44:03 -04:00
|
|
|
"github.com/go-check/check"
|
|
|
|
)
|
|
|
|
|
[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) TestAPIStatsContainerGetMemoryLimit(c *check.C) {
|
2016-05-04 04:44:03 -04:00
|
|
|
testRequires(c, DaemonIsLinux, memoryLimitSupport)
|
|
|
|
|
2017-03-06 10:35:27 -05:00
|
|
|
resp, body, err := request.Get("/info", request.JSON)
|
2016-05-04 04:44:03 -04:00
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
c.Assert(resp.StatusCode, checker.Equals, http.StatusOK)
|
|
|
|
var info types.Info
|
|
|
|
err = json.NewDecoder(body).Decode(&info)
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
body.Close()
|
|
|
|
|
|
|
|
// don't set a memory limit, the memory limit should be system memory
|
|
|
|
conName := "foo"
|
|
|
|
dockerCmd(c, "run", "-d", "--name", conName, "busybox", "top")
|
|
|
|
c.Assert(waitRun(conName), checker.IsNil)
|
|
|
|
|
2017-03-06 10:35:27 -05:00
|
|
|
resp, body, err = request.Get(fmt.Sprintf("/containers/%s/stats?stream=false", conName))
|
2016-05-04 04:44:03 -04:00
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
c.Assert(resp.StatusCode, checker.Equals, http.StatusOK)
|
|
|
|
c.Assert(resp.Header.Get("Content-Type"), checker.Equals, "application/json")
|
|
|
|
|
|
|
|
var v *types.Stats
|
|
|
|
err = json.NewDecoder(body).Decode(&v)
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
body.Close()
|
|
|
|
c.Assert(fmt.Sprintf("%d", v.MemoryStats.Limit), checker.Equals, fmt.Sprintf("%d", info.MemTotal))
|
|
|
|
}
|