mirror of
https://github.com/moby/moby.git
synced 2026-08-10 17:15:06 +00:00
These comments were added to enforce using the correct import path for
our packages ("github.com/docker/docker", not "github.com/moby/moby").
However, when working in go module mode (not GOPATH / vendor), they have
no effect, so their impact is limited.
Remove these imports in preparation of migrating our code to become an
actual go module.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
36 lines
860 B
Go
36 lines
860 B
Go
package daemon
|
|
|
|
import (
|
|
"testing"
|
|
|
|
containertypes "github.com/docker/docker/api/types/container"
|
|
"github.com/docker/docker/container"
|
|
"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(),
|
|
}
|
|
if d.UsesSnapshotter() {
|
|
t.Skip("does not apply to containerd snapshotters, which don't have RWLayer set")
|
|
}
|
|
cfg := &configStore{}
|
|
d.configStore.Store(cfg)
|
|
|
|
_, err := d.getInspectData(&cfg.Config, c)
|
|
assert.Check(t, is.ErrorContains(err, "RWLayer of container inspect-me is unexpectedly nil"))
|
|
|
|
c.Dead = true
|
|
_, err = d.getInspectData(&cfg.Config, c)
|
|
assert.Check(t, err)
|
|
}
|