2018-10-23 11:05:44 -04:00
|
|
|
package container
|
2016-10-24 18:55:29 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"testing"
|
|
|
|
|
2018-10-23 11:05:44 -04:00
|
|
|
"github.com/docker/cli/cli/command/formatter"
|
2016-10-24 18:55:29 -04:00
|
|
|
"github.com/docker/docker/pkg/stringid"
|
2020-02-22 12:12:14 -05:00
|
|
|
"gotest.tools/v3/assert"
|
|
|
|
is "gotest.tools/v3/assert/cmp"
|
2016-10-24 18:55:29 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestContainerStatsContext(t *testing.T) {
|
|
|
|
containerID := stringid.GenerateRandomID()
|
|
|
|
|
2018-10-23 11:05:44 -04:00
|
|
|
var ctx statsContext
|
2016-10-24 18:55:29 -04:00
|
|
|
tt := []struct {
|
|
|
|
stats StatsEntry
|
2017-02-05 11:55:30 -05:00
|
|
|
osType string
|
2016-10-24 18:55:29 -04:00
|
|
|
expValue string
|
|
|
|
expHeader string
|
|
|
|
call func() string
|
|
|
|
}{
|
2017-02-05 11:55:30 -05:00
|
|
|
{StatsEntry{Container: containerID}, "", containerID, containerHeader, ctx.Container},
|
|
|
|
{StatsEntry{CPUPercentage: 5.5}, "", "5.50%", cpuPercHeader, ctx.CPUPerc},
|
|
|
|
{StatsEntry{CPUPercentage: 5.5, IsInvalid: true}, "", "--", cpuPercHeader, ctx.CPUPerc},
|
2017-02-07 15:58:56 -05:00
|
|
|
{StatsEntry{NetworkRx: 0.31, NetworkTx: 12.3}, "", "0.31B / 12.3B", netIOHeader, ctx.NetIO},
|
2017-02-05 11:55:30 -05:00
|
|
|
{StatsEntry{NetworkRx: 0.31, NetworkTx: 12.3, IsInvalid: true}, "", "--", netIOHeader, ctx.NetIO},
|
2017-02-07 15:58:56 -05:00
|
|
|
{StatsEntry{BlockRead: 0.1, BlockWrite: 2.3}, "", "0.1B / 2.3B", blockIOHeader, ctx.BlockIO},
|
2017-02-05 11:55:30 -05:00
|
|
|
{StatsEntry{BlockRead: 0.1, BlockWrite: 2.3, IsInvalid: true}, "", "--", blockIOHeader, ctx.BlockIO},
|
|
|
|
{StatsEntry{MemoryPercentage: 10.2}, "", "10.20%", memPercHeader, ctx.MemPerc},
|
|
|
|
{StatsEntry{MemoryPercentage: 10.2, IsInvalid: true}, "", "--", memPercHeader, ctx.MemPerc},
|
|
|
|
{StatsEntry{MemoryPercentage: 10.2}, "windows", "--", memPercHeader, ctx.MemPerc},
|
2017-02-07 15:58:56 -05:00
|
|
|
{StatsEntry{Memory: 24, MemoryLimit: 30}, "", "24B / 30B", memUseHeader, ctx.MemUsage},
|
2017-02-05 11:55:30 -05:00
|
|
|
{StatsEntry{Memory: 24, MemoryLimit: 30, IsInvalid: true}, "", "-- / --", memUseHeader, ctx.MemUsage},
|
2017-02-07 15:58:56 -05:00
|
|
|
{StatsEntry{Memory: 24, MemoryLimit: 30}, "windows", "24B", winMemUseHeader, ctx.MemUsage},
|
2017-02-05 11:55:30 -05:00
|
|
|
{StatsEntry{PidsCurrent: 10}, "", "10", pidsHeader, ctx.PIDs},
|
|
|
|
{StatsEntry{PidsCurrent: 10, IsInvalid: true}, "", "--", pidsHeader, ctx.PIDs},
|
|
|
|
{StatsEntry{PidsCurrent: 10}, "windows", "--", pidsHeader, ctx.PIDs},
|
2016-10-24 18:55:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, te := range tt {
|
2018-10-23 11:05:44 -04:00
|
|
|
ctx = statsContext{s: te.stats, os: te.osType}
|
2016-10-24 18:55:29 -04:00
|
|
|
if v := te.call(); v != te.expValue {
|
|
|
|
t.Fatalf("Expected %q, got %q", te.expValue, v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContainerStatsContextWrite(t *testing.T) {
|
|
|
|
tt := []struct {
|
2018-10-23 11:05:44 -04:00
|
|
|
context formatter.Context
|
2016-10-24 18:55:29 -04:00
|
|
|
expected string
|
|
|
|
}{
|
|
|
|
{
|
2018-10-23 11:05:44 -04:00
|
|
|
formatter.Context{Format: "{{InvalidFunction}}"},
|
linting: fix incorrectly formatted errors (revive)
cli/compose/interpolation/interpolation.go:102:4: error-strings: error strings should not be capitalized or end with punctuation or a newline (revive)
"invalid interpolation format for %s: %#v. You may need to escape any $ with another $.",
^
cli/command/stack/loader/loader.go:30:30: error-strings: error strings should not be capitalized or end with punctuation or a newline (revive)
return nil, errors.Errorf("Compose file contains unsupported options:\n\n%s\n",
^
cli/command/formatter/formatter.go:76:30: error-strings: error strings should not be capitalized or end with punctuation or a newline (revive)
return tmpl, errors.Errorf("Template parsing error: %v\n", err)
^
cli/command/formatter/formatter.go:97:24: error-strings: error strings should not be capitalized or end with punctuation or a newline (revive)
return errors.Errorf("Template parsing error: %v\n", err)
^
cli/command/image/build.go:257:25: error-strings: error strings should not be capitalized or end with punctuation or a newline (revive)
return errors.Errorf("error checking context: '%s'.", err)
^
cli/command/volume/create.go:35:27: error-strings: error strings should not be capitalized or end with punctuation or a newline (revive)
return errors.Errorf("Conflicting options: either specify --name or provide positional arg, not both\n")
^
cli/command/container/create.go:160:24: error-strings: error strings should not be capitalized or end with punctuation or a newline (revive)
return errors.Errorf("failed to remove the CID file '%s': %s \n", cid.path, err)
^
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-03-27 15:13:03 -04:00
|
|
|
`template parsing error: template: :1: function "InvalidFunction" not defined`,
|
2016-10-24 18:55:29 -04:00
|
|
|
},
|
|
|
|
{
|
2018-10-23 11:05:44 -04:00
|
|
|
formatter.Context{Format: "{{nil}}"},
|
linting: fix incorrectly formatted errors (revive)
cli/compose/interpolation/interpolation.go:102:4: error-strings: error strings should not be capitalized or end with punctuation or a newline (revive)
"invalid interpolation format for %s: %#v. You may need to escape any $ with another $.",
^
cli/command/stack/loader/loader.go:30:30: error-strings: error strings should not be capitalized or end with punctuation or a newline (revive)
return nil, errors.Errorf("Compose file contains unsupported options:\n\n%s\n",
^
cli/command/formatter/formatter.go:76:30: error-strings: error strings should not be capitalized or end with punctuation or a newline (revive)
return tmpl, errors.Errorf("Template parsing error: %v\n", err)
^
cli/command/formatter/formatter.go:97:24: error-strings: error strings should not be capitalized or end with punctuation or a newline (revive)
return errors.Errorf("Template parsing error: %v\n", err)
^
cli/command/image/build.go:257:25: error-strings: error strings should not be capitalized or end with punctuation or a newline (revive)
return errors.Errorf("error checking context: '%s'.", err)
^
cli/command/volume/create.go:35:27: error-strings: error strings should not be capitalized or end with punctuation or a newline (revive)
return errors.Errorf("Conflicting options: either specify --name or provide positional arg, not both\n")
^
cli/command/container/create.go:160:24: error-strings: error strings should not be capitalized or end with punctuation or a newline (revive)
return errors.Errorf("failed to remove the CID file '%s': %s \n", cid.path, err)
^
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-03-27 15:13:03 -04:00
|
|
|
`template parsing error: template: :1:2: executing "" at <nil>: nil is not a command`,
|
2016-10-24 18:55:29 -04:00
|
|
|
},
|
|
|
|
{
|
2018-10-23 11:05:44 -04:00
|
|
|
formatter.Context{Format: "table {{.MemUsage}}"},
|
2016-10-24 18:55:29 -04:00
|
|
|
`MEM USAGE / LIMIT
|
2017-02-07 15:58:56 -05:00
|
|
|
20B / 20B
|
2016-10-24 18:55:29 -04:00
|
|
|
-- / --
|
Fix panic of "docker stats --format {{.Name}} --all"
This commit fixes panic when execute stats command:
* use --format {{.Name}} with --all when there're exited containers.
* use --format {{.Name}} while stating exited container.
The root cause is when stating an exited container, the result from the
api didn't contain the Name and ID field, which will make format
process panic.
Panic log is like this:
```
panic: runtime error: slice bounds out of range [recovered]
panic: runtime error: slice bounds out of range
goroutine 1 [running]:
panic(0xb20f80, 0xc420014110)
/usr/local/go/src/runtime/panic.go:500 +0x1a1
text/template.errRecover(0xc4201773e8)
/usr/local/go/src/text/template/exec.go:140 +0x2ad
panic(0xb20f80, 0xc420014110)
/usr/local/go/src/runtime/panic.go:458 +0x243
github.com/docker/docker/cli/command/formatter.(*containerStatsContext).Name(0xc420430160,
0x0, 0x0)
/go/src/github.com/docker/docker/cli/command/formatter/stats.go:148
+0x86
reflect.Value.call(0xb9a3a0, 0xc420430160, 0x2213, 0xbe3657, 0x4,
0x11bc9f8, 0x0, 0x0, 0x4d75b3, 0x1198940, ...)
/usr/local/go/src/reflect/value.go:434 +0x5c8
reflect.Value.Call(0xb9a3a0, 0xc420430160, 0x2213, 0x11bc9f8, 0x0, 0x0,
0xc420424028, 0xb, 0xb)
/usr/local/go/src/reflect/value.go:302 +0xa4
text/template.(*state).evalCall(0xc420177368, 0xb9a3a0, 0xc420430160,
0x16, 0xb9a3a0, 0xc420430160, 0x2213, 0x1178fa0, 0xc4203ea330,
0xc4203de283, ...)
/usr/local/go/src/text/template/exec.go:658 +0x530
```
Signed-off-by: Zhang Wei <zhangwei555@huawei.com>
2017-02-06 21:27:40 -05:00
|
|
|
`,
|
|
|
|
},
|
|
|
|
{
|
2018-10-23 11:05:44 -04:00
|
|
|
formatter.Context{Format: "{{.Container}} {{.ID}} {{.Name}}"},
|
Fix panic of "docker stats --format {{.Name}} --all"
This commit fixes panic when execute stats command:
* use --format {{.Name}} with --all when there're exited containers.
* use --format {{.Name}} while stating exited container.
The root cause is when stating an exited container, the result from the
api didn't contain the Name and ID field, which will make format
process panic.
Panic log is like this:
```
panic: runtime error: slice bounds out of range [recovered]
panic: runtime error: slice bounds out of range
goroutine 1 [running]:
panic(0xb20f80, 0xc420014110)
/usr/local/go/src/runtime/panic.go:500 +0x1a1
text/template.errRecover(0xc4201773e8)
/usr/local/go/src/text/template/exec.go:140 +0x2ad
panic(0xb20f80, 0xc420014110)
/usr/local/go/src/runtime/panic.go:458 +0x243
github.com/docker/docker/cli/command/formatter.(*containerStatsContext).Name(0xc420430160,
0x0, 0x0)
/go/src/github.com/docker/docker/cli/command/formatter/stats.go:148
+0x86
reflect.Value.call(0xb9a3a0, 0xc420430160, 0x2213, 0xbe3657, 0x4,
0x11bc9f8, 0x0, 0x0, 0x4d75b3, 0x1198940, ...)
/usr/local/go/src/reflect/value.go:434 +0x5c8
reflect.Value.Call(0xb9a3a0, 0xc420430160, 0x2213, 0x11bc9f8, 0x0, 0x0,
0xc420424028, 0xb, 0xb)
/usr/local/go/src/reflect/value.go:302 +0xa4
text/template.(*state).evalCall(0xc420177368, 0xb9a3a0, 0xc420430160,
0x16, 0xb9a3a0, 0xc420430160, 0x2213, 0x1178fa0, 0xc4203ea330,
0xc4203de283, ...)
/usr/local/go/src/text/template/exec.go:658 +0x530
```
Signed-off-by: Zhang Wei <zhangwei555@huawei.com>
2017-02-06 21:27:40 -05:00
|
|
|
`container1 abcdef foo
|
|
|
|
container2 --
|
2016-10-24 18:55:29 -04:00
|
|
|
`,
|
|
|
|
},
|
|
|
|
{
|
2018-10-23 11:05:44 -04:00
|
|
|
formatter.Context{Format: "{{.Container}} {{.CPUPerc}}"},
|
2016-10-24 18:55:29 -04:00
|
|
|
`container1 20.00%
|
|
|
|
container2 --
|
|
|
|
`,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, te := range tt {
|
|
|
|
stats := []StatsEntry{
|
|
|
|
{
|
2016-11-03 02:20:46 -04:00
|
|
|
Container: "container1",
|
Fix panic of "docker stats --format {{.Name}} --all"
This commit fixes panic when execute stats command:
* use --format {{.Name}} with --all when there're exited containers.
* use --format {{.Name}} while stating exited container.
The root cause is when stating an exited container, the result from the
api didn't contain the Name and ID field, which will make format
process panic.
Panic log is like this:
```
panic: runtime error: slice bounds out of range [recovered]
panic: runtime error: slice bounds out of range
goroutine 1 [running]:
panic(0xb20f80, 0xc420014110)
/usr/local/go/src/runtime/panic.go:500 +0x1a1
text/template.errRecover(0xc4201773e8)
/usr/local/go/src/text/template/exec.go:140 +0x2ad
panic(0xb20f80, 0xc420014110)
/usr/local/go/src/runtime/panic.go:458 +0x243
github.com/docker/docker/cli/command/formatter.(*containerStatsContext).Name(0xc420430160,
0x0, 0x0)
/go/src/github.com/docker/docker/cli/command/formatter/stats.go:148
+0x86
reflect.Value.call(0xb9a3a0, 0xc420430160, 0x2213, 0xbe3657, 0x4,
0x11bc9f8, 0x0, 0x0, 0x4d75b3, 0x1198940, ...)
/usr/local/go/src/reflect/value.go:434 +0x5c8
reflect.Value.Call(0xb9a3a0, 0xc420430160, 0x2213, 0x11bc9f8, 0x0, 0x0,
0xc420424028, 0xb, 0xb)
/usr/local/go/src/reflect/value.go:302 +0xa4
text/template.(*state).evalCall(0xc420177368, 0xb9a3a0, 0xc420430160,
0x16, 0xb9a3a0, 0xc420430160, 0x2213, 0x1178fa0, 0xc4203ea330,
0xc4203de283, ...)
/usr/local/go/src/text/template/exec.go:658 +0x530
```
Signed-off-by: Zhang Wei <zhangwei555@huawei.com>
2017-02-06 21:27:40 -05:00
|
|
|
ID: "abcdef",
|
|
|
|
Name: "/foo",
|
2016-10-24 18:55:29 -04:00
|
|
|
CPUPercentage: 20,
|
|
|
|
Memory: 20,
|
|
|
|
MemoryLimit: 20,
|
|
|
|
MemoryPercentage: 20,
|
|
|
|
NetworkRx: 20,
|
|
|
|
NetworkTx: 20,
|
|
|
|
BlockRead: 20,
|
|
|
|
BlockWrite: 20,
|
|
|
|
PidsCurrent: 2,
|
|
|
|
IsInvalid: false,
|
|
|
|
},
|
|
|
|
{
|
2016-11-03 02:20:46 -04:00
|
|
|
Container: "container2",
|
2016-10-24 18:55:29 -04:00
|
|
|
CPUPercentage: 30,
|
|
|
|
Memory: 30,
|
|
|
|
MemoryLimit: 30,
|
|
|
|
MemoryPercentage: 30,
|
|
|
|
NetworkRx: 30,
|
|
|
|
NetworkTx: 30,
|
|
|
|
BlockRead: 30,
|
|
|
|
BlockWrite: 30,
|
|
|
|
PidsCurrent: 3,
|
|
|
|
IsInvalid: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
var out bytes.Buffer
|
|
|
|
te.context.Output = &out
|
2018-10-23 11:05:44 -04:00
|
|
|
err := statsFormatWrite(te.context, stats, "linux", false)
|
2016-10-24 18:55:29 -04:00
|
|
|
if err != nil {
|
2018-03-06 15:54:24 -05:00
|
|
|
assert.Error(t, err, te.expected)
|
2016-10-24 18:55:29 -04:00
|
|
|
} else {
|
2018-03-05 18:53:52 -05:00
|
|
|
assert.Check(t, is.Equal(te.expected, out.String()))
|
2016-10-24 18:55:29 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContainerStatsContextWriteWindows(t *testing.T) {
|
2020-08-28 17:00:21 -04:00
|
|
|
cases := []struct {
|
2018-10-23 11:05:44 -04:00
|
|
|
context formatter.Context
|
2016-10-24 18:55:29 -04:00
|
|
|
expected string
|
|
|
|
}{
|
|
|
|
{
|
2018-10-23 11:05:44 -04:00
|
|
|
formatter.Context{Format: "table {{.MemUsage}}"},
|
2016-10-24 18:55:29 -04:00
|
|
|
`PRIV WORKING SET
|
2017-02-07 15:58:56 -05:00
|
|
|
20B
|
2016-10-24 18:55:29 -04:00
|
|
|
-- / --
|
|
|
|
`,
|
|
|
|
},
|
|
|
|
{
|
2018-10-23 11:05:44 -04:00
|
|
|
formatter.Context{Format: "{{.Container}} {{.CPUPerc}}"},
|
2016-10-24 18:55:29 -04:00
|
|
|
`container1 20.00%
|
|
|
|
container2 --
|
|
|
|
`,
|
|
|
|
},
|
|
|
|
{
|
2018-10-23 11:05:44 -04:00
|
|
|
formatter.Context{Format: "{{.Container}} {{.MemPerc}} {{.PIDs}}"},
|
2016-10-24 18:55:29 -04:00
|
|
|
`container1 -- --
|
|
|
|
container2 -- --
|
|
|
|
`,
|
|
|
|
},
|
|
|
|
}
|
2020-08-28 17:00:21 -04:00
|
|
|
stats := []StatsEntry{
|
|
|
|
{
|
|
|
|
Container: "container1",
|
|
|
|
CPUPercentage: 20,
|
|
|
|
Memory: 20,
|
|
|
|
MemoryLimit: 20,
|
|
|
|
MemoryPercentage: 20,
|
|
|
|
NetworkRx: 20,
|
|
|
|
NetworkTx: 20,
|
|
|
|
BlockRead: 20,
|
|
|
|
BlockWrite: 20,
|
|
|
|
PidsCurrent: 2,
|
|
|
|
IsInvalid: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Container: "container2",
|
|
|
|
CPUPercentage: 30,
|
|
|
|
Memory: 30,
|
|
|
|
MemoryLimit: 30,
|
|
|
|
MemoryPercentage: 30,
|
|
|
|
NetworkRx: 30,
|
|
|
|
NetworkTx: 30,
|
|
|
|
BlockRead: 30,
|
|
|
|
BlockWrite: 30,
|
|
|
|
PidsCurrent: 3,
|
|
|
|
IsInvalid: true,
|
|
|
|
},
|
|
|
|
}
|
2016-10-24 18:55:29 -04:00
|
|
|
|
2020-08-28 17:00:21 -04:00
|
|
|
for _, tc := range cases {
|
|
|
|
t.Run(string(tc.context.Format), func(t *testing.T) {
|
|
|
|
var out bytes.Buffer
|
|
|
|
tc.context.Output = &out
|
|
|
|
err := statsFormatWrite(tc.context, stats, "windows", false)
|
|
|
|
if err != nil {
|
|
|
|
assert.Error(t, err, tc.expected)
|
|
|
|
} else {
|
|
|
|
assert.Equal(t, out.String(), tc.expected)
|
|
|
|
}
|
|
|
|
})
|
2016-10-24 18:55:29 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContainerStatsContextWriteWithNoStats(t *testing.T) {
|
|
|
|
var out bytes.Buffer
|
|
|
|
|
2020-08-28 17:00:21 -04:00
|
|
|
cases := []struct {
|
2018-10-23 11:05:44 -04:00
|
|
|
context formatter.Context
|
2016-10-24 18:55:29 -04:00
|
|
|
expected string
|
|
|
|
}{
|
|
|
|
{
|
2018-10-23 11:05:44 -04:00
|
|
|
formatter.Context{
|
2016-10-24 18:55:29 -04:00
|
|
|
Format: "{{.Container}}",
|
|
|
|
Output: &out,
|
|
|
|
},
|
|
|
|
"",
|
|
|
|
},
|
|
|
|
{
|
2018-10-23 11:05:44 -04:00
|
|
|
formatter.Context{
|
2016-10-24 18:55:29 -04:00
|
|
|
Format: "table {{.Container}}",
|
|
|
|
Output: &out,
|
|
|
|
},
|
|
|
|
"CONTAINER\n",
|
|
|
|
},
|
|
|
|
{
|
2018-10-23 11:05:44 -04:00
|
|
|
formatter.Context{
|
2016-10-24 18:55:29 -04:00
|
|
|
Format: "table {{.Container}}\t{{.CPUPerc}}",
|
|
|
|
Output: &out,
|
|
|
|
},
|
2020-08-28 17:00:21 -04:00
|
|
|
"CONTAINER CPU %\n",
|
2016-10-24 18:55:29 -04:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2020-08-28 17:00:21 -04:00
|
|
|
for _, tc := range cases {
|
|
|
|
t.Run(string(tc.context.Format), func(t *testing.T) {
|
|
|
|
err := statsFormatWrite(tc.context, []StatsEntry{}, "linux", false)
|
|
|
|
assert.NilError(t, err)
|
|
|
|
assert.Equal(t, out.String(), tc.expected)
|
|
|
|
// Clean buffer
|
|
|
|
out.Reset()
|
|
|
|
})
|
2016-10-24 18:55:29 -04:00
|
|
|
}
|
|
|
|
}
|
2017-02-05 11:55:30 -05:00
|
|
|
|
|
|
|
func TestContainerStatsContextWriteWithNoStatsWindows(t *testing.T) {
|
|
|
|
var out bytes.Buffer
|
|
|
|
|
2020-08-28 17:00:21 -04:00
|
|
|
cases := []struct {
|
2018-10-23 11:05:44 -04:00
|
|
|
context formatter.Context
|
2017-02-05 11:55:30 -05:00
|
|
|
expected string
|
|
|
|
}{
|
|
|
|
{
|
2018-10-23 11:05:44 -04:00
|
|
|
formatter.Context{
|
2017-02-05 11:55:30 -05:00
|
|
|
Format: "{{.Container}}",
|
|
|
|
Output: &out,
|
|
|
|
},
|
|
|
|
"",
|
|
|
|
},
|
|
|
|
{
|
2018-10-23 11:05:44 -04:00
|
|
|
formatter.Context{
|
2017-02-05 11:55:30 -05:00
|
|
|
Format: "table {{.Container}}\t{{.MemUsage}}",
|
|
|
|
Output: &out,
|
|
|
|
},
|
2020-08-28 17:00:21 -04:00
|
|
|
"CONTAINER PRIV WORKING SET\n",
|
2017-02-05 11:55:30 -05:00
|
|
|
},
|
|
|
|
{
|
2018-10-23 11:05:44 -04:00
|
|
|
formatter.Context{
|
2017-02-05 11:55:30 -05:00
|
|
|
Format: "table {{.Container}}\t{{.CPUPerc}}\t{{.MemUsage}}",
|
|
|
|
Output: &out,
|
|
|
|
},
|
2020-08-28 17:00:21 -04:00
|
|
|
"CONTAINER CPU % PRIV WORKING SET\n",
|
2017-02-05 11:55:30 -05:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2020-08-28 17:00:21 -04:00
|
|
|
for _, tc := range cases {
|
|
|
|
t.Run(string(tc.context.Format), func(t *testing.T) {
|
|
|
|
err := statsFormatWrite(tc.context, []StatsEntry{}, "windows", false)
|
|
|
|
assert.NilError(t, err)
|
|
|
|
assert.Equal(t, out.String(), tc.expected)
|
|
|
|
out.Reset()
|
|
|
|
})
|
2017-09-27 12:24:26 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContainerStatsContextWriteTrunc(t *testing.T) {
|
|
|
|
var out bytes.Buffer
|
|
|
|
|
|
|
|
contexts := []struct {
|
2018-10-23 11:05:44 -04:00
|
|
|
context formatter.Context
|
2017-09-27 12:24:26 -04:00
|
|
|
trunc bool
|
|
|
|
expected string
|
|
|
|
}{
|
|
|
|
{
|
2018-10-23 11:05:44 -04:00
|
|
|
formatter.Context{
|
2017-09-27 12:24:26 -04:00
|
|
|
Format: "{{.ID}}",
|
|
|
|
Output: &out,
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
"b95a83497c9161c9b444e3d70e1a9dfba0c1840d41720e146a95a08ebf938afc\n",
|
|
|
|
},
|
|
|
|
{
|
2018-10-23 11:05:44 -04:00
|
|
|
formatter.Context{
|
2017-09-27 12:24:26 -04:00
|
|
|
Format: "{{.ID}}",
|
|
|
|
Output: &out,
|
|
|
|
},
|
|
|
|
true,
|
|
|
|
"b95a83497c91\n",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, context := range contexts {
|
2018-10-23 11:05:44 -04:00
|
|
|
statsFormatWrite(context.context, []StatsEntry{{ID: "b95a83497c9161c9b444e3d70e1a9dfba0c1840d41720e146a95a08ebf938afc"}}, "linux", context.trunc)
|
2018-03-05 18:53:52 -05:00
|
|
|
assert.Check(t, is.Equal(context.expected, out.String()))
|
2017-02-05 11:55:30 -05:00
|
|
|
// Clean buffer
|
|
|
|
out.Reset()
|
|
|
|
}
|
|
|
|
}
|
2022-03-28 05:00:29 -04:00
|
|
|
|
|
|
|
func BenchmarkStatsFormat(b *testing.B) {
|
|
|
|
b.ReportAllocs()
|
|
|
|
stats := genStats()
|
|
|
|
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
for _, s := range stats {
|
|
|
|
_ = s.CPUPerc()
|
|
|
|
_ = s.MemUsage()
|
|
|
|
_ = s.MemPerc()
|
|
|
|
_ = s.NetIO()
|
|
|
|
_ = s.BlockIO()
|
|
|
|
_ = s.PIDs()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func genStats() []statsContext {
|
|
|
|
entry := statsContext{s: StatsEntry{
|
|
|
|
CPUPercentage: 12.3456789,
|
|
|
|
Memory: 123.456789,
|
|
|
|
MemoryLimit: 987.654321,
|
|
|
|
MemoryPercentage: 12.3456789,
|
|
|
|
BlockRead: 123.456789,
|
|
|
|
BlockWrite: 987.654321,
|
|
|
|
NetworkRx: 123.456789,
|
|
|
|
NetworkTx: 987.654321,
|
|
|
|
PidsCurrent: 123456789,
|
|
|
|
}}
|
|
|
|
stats := make([]statsContext, 100)
|
|
|
|
for i := 0; i < 100; i++ {
|
|
|
|
stats = append(stats, entry)
|
|
|
|
}
|
|
|
|
return stats
|
|
|
|
}
|