mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
This constructor did not do anything other than creating an empty struct for an exported type. While we should look at initializing with a proper state, we currently do not, so let's not pretend we do some magic here, and leave it for a future exercise to create a proper constructor if we need one. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
36 lines
866 B
Go
36 lines
866 B
Go
package daemon
|
|
|
|
import (
|
|
"testing"
|
|
|
|
containertypes "github.com/moby/moby/api/types/container"
|
|
"github.com/moby/moby/v2/daemon/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.State{},
|
|
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.State.Dead = true
|
|
_, err = d.getInspectData(&cfg.Config, c)
|
|
assert.Check(t, err)
|
|
}
|