mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
This test does not apply when running with snapshotters enabled;
go test -v -run TestGetInspectData .
=== RUN TestGetInspectData
inspect_test.go:27: RWLayer of container inspect-me is unexpectedly nil
--- FAIL: TestGetInspectData (0.00s)
FAIL
FAIL github.com/docker/docker/daemon 0.049s
FAIL
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
35 lines
905 B
Go
35 lines
905 B
Go
package daemon // import "github.com/docker/docker/daemon"
|
|
|
|
import (
|
|
"testing"
|
|
|
|
containertypes "github.com/docker/docker/api/types/container"
|
|
"github.com/docker/docker/container"
|
|
"github.com/docker/docker/daemon/config"
|
|
"gotest.tools/v3/assert"
|
|
is "gotest.tools/v3/assert/cmp"
|
|
)
|
|
|
|
func TestGetInspectData(t *testing.T) {
|
|
c := &container.Container{
|
|
ID: "inspect-me",
|
|
HostConfig: &containertypes.HostConfig{},
|
|
State: container.NewState(),
|
|
ExecCommands: container.NewExecStore(),
|
|
}
|
|
|
|
d := &Daemon{
|
|
linkIndex: newLinkIndex(),
|
|
configStore: &config.Config{},
|
|
}
|
|
if d.UsesSnapshotter() {
|
|
t.Skip("does not apply to containerd snapshotters, which don't have RWLayer set")
|
|
}
|
|
_, err := d.getInspectData(c)
|
|
assert.Check(t, is.ErrorContains(err, "RWLayer of container inspect-me is unexpectedly nil"))
|
|
|
|
c.Dead = true
|
|
_, err = d.getInspectData(c)
|
|
assert.Check(t, err)
|
|
}
|