mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
34 lines
733 B
Go
34 lines
733 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"
|
||
|
"github.com/docker/docker/daemon/exec"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestGetInspectData(t *testing.T) {
|
||
|
c := &container.Container{
|
||
|
ID: "inspect-me",
|
||
|
HostConfig: &containertypes.HostConfig{},
|
||
|
State: container.NewState(),
|
||
|
ExecCommands: exec.NewStore(),
|
||
|
}
|
||
|
|
||
|
d := &Daemon{
|
||
|
linkIndex: newLinkIndex(),
|
||
|
configStore: &config.Config{},
|
||
|
}
|
||
|
|
||
|
_, err := d.getInspectData(c)
|
||
|
assert.Error(t, err)
|
||
|
|
||
|
c.Dead = true
|
||
|
_, err = d.getInspectData(c)
|
||
|
assert.NoError(t, err)
|
||
|
}
|