mirror of
https://github.com/moby/moby.git
synced 2026-01-11 10:41:43 +00:00
Co-authored-by: Claude <noreply@anthropic.com> Signed-off-by: Austin Vazquez <austin.vazquez@docker.com> Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
61 lines
1.8 KiB
Go
61 lines
1.8 KiB
Go
package volumes
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
plugintypes "github.com/moby/moby/api/types/plugin"
|
|
"github.com/moby/moby/client"
|
|
"github.com/moby/moby/v2/internal/testutil"
|
|
"github.com/moby/moby/v2/internal/testutil/daemon"
|
|
"github.com/moby/moby/v2/internal/testutil/fixtures/plugin"
|
|
"gotest.tools/v3/assert"
|
|
"gotest.tools/v3/skip"
|
|
)
|
|
|
|
// TestPluginWithDevMounts tests very specific regression caused by mounts ordering
|
|
// (sorted in the daemon). See #36698
|
|
func TestPluginWithDevMounts(t *testing.T) {
|
|
skip.If(t, testEnv.IsRemoteDaemon, "cannot run daemon when remote daemon")
|
|
skip.If(t, testEnv.DaemonInfo.OSType == "windows")
|
|
skip.If(t, testEnv.IsRootless)
|
|
t.Parallel()
|
|
|
|
ctx := testutil.StartSpan(baseContext, t)
|
|
|
|
d := daemon.New(t)
|
|
d.Start(t, "--iptables=false", "--ip6tables=false")
|
|
defer d.Stop(t)
|
|
|
|
c := d.NewClientT(t)
|
|
|
|
testDir, err := os.MkdirTemp("", "test-dir")
|
|
assert.NilError(t, err)
|
|
defer os.RemoveAll(testDir)
|
|
|
|
createPlugin(ctx, t, c, "test", "dummy", asVolumeDriver, func(c *plugin.Config) {
|
|
root := "/"
|
|
dev := "/dev"
|
|
mounts := []plugintypes.Mount{
|
|
{Type: "bind", Source: &root, Destination: "/host", Options: []string{"rbind"}},
|
|
{Type: "bind", Source: &dev, Destination: "/dev", Options: []string{"rbind"}},
|
|
{Type: "bind", Source: &testDir, Destination: "/etc/foo", Options: []string{"rbind"}},
|
|
}
|
|
c.Config.Mounts = append(c.Config.Mounts, mounts...)
|
|
c.PropagatedMount = "/propagated"
|
|
c.Network = plugintypes.NetworkConfig{Type: "host"}
|
|
c.IpcHost = true
|
|
})
|
|
|
|
_, err = c.PluginEnable(ctx, "test", client.PluginEnableOptions{Timeout: 30})
|
|
assert.NilError(t, err)
|
|
defer func() {
|
|
_, err := c.PluginRemove(ctx, "test", client.PluginRemoveOptions{Force: true})
|
|
assert.Check(t, err)
|
|
}()
|
|
|
|
resp, err := c.PluginInspect(ctx, "test", client.PluginInspectOptions{})
|
|
assert.NilError(t, err)
|
|
assert.Assert(t, resp.Plugin.Enabled)
|
|
}
|